What is mTLS?
Mutual TLS (mTLS) is a security protocol that enhances the standard TLS protocol by requiring both the client and the server to authenticate each other using digital certificates.Key Features of mTLS
- Two-Way Authentication: Both client and server present certificates to verify identities.
- Secure Data Transmission: All communication is encrypted, protecting sensitive data from unauthorized access or tampering.
- Trusted Certificates: Certificates issued by trusted Certificate Authorities establish trust between parties.
Why Use mTLS?
mTLS provides a higher level of security by combining encryption with mutual authentication, making it ideal for securing APIs, webhooks, and sensitive data exchanges.How mTLS Works
- Certificate Exchange: Both the client and server exchange certificates to verify their identities.
- TLS Handshake: A secure handshake is performed, generating session keys for encrypted communication.
- Encrypted Communication: All data exchanged is encrypted, ensuring privacy and integrity.
mTLS for Public APIs
To ensure secure access to Transcrypts’s public APIs, mTLS is implemented for the following endpoints:| Environment | Endpoint |
|---|---|
| Production | api-mtls.transcrypts.com |
Steps to Connect
1. Generate a Private Key and CSR
Use supported formats (X.509v3, RSA/ECDSA keys, SHA256). Include details like common name, organization, and location. Example CSR format:2. Submit CSR to Transcrypts
Transcrypts will issue a signed certificate valid for one year.3. Connect to API
Use the signed certificate and private key to authenticate.4. Work with Transcrypts Support
Complete setup and enable for your account.5. Use Transcrypts’s Client ID and Access Key
Reference the API Keys documentation for details.mTLS for Webhooks
Transcrypts supports mTLS for webhook communication, ensuring secure and trusted data exchange between Transcrypts and its clients.Webhook Authentication Options
Using Transcrypts’s Signed Certificate
Transcrypts provides a public certificate (domain:mtls-prod.transcrypts.com) that clients can configure on their server to establish an mTLS connection.