From the Trenches: Updates to mTLS with OAuth for DocuSign Connect

When you have a webhook listener on the internet, it is very important to secure access to your listener and any resources to which it grants access. This makes sure that information is only flowing in from authenticated sources and thus prevents unwanted and potentially malicious data from entering your system. DocuSign offers five different mechanisms to authenticate DocuSign Connect Event messages; that is, to make sure that the Event messages are coming only from DocuSign and not from someone else. 

  1. OAuth authentication
  2. HMAC message signing and authentication
  3. HTTP Basic authentication
  4. Mutual TLS authentication
  5. Digital signature (SOAP only, deprecated)

OAuth for DocuSign Connect allows administrators to grant scope-based access to resources to DocuSign Connect while ensuring integrity and authenticity. DocuSign Connect specifically uses the Client Credentials authentication grant type, which is a server-to-server communication protocol. For an example of how to set up an Authorization Server on Azure, how to obtain an access token, and then how the Access Token is being supplied in the Connect Event message, see Andy Singh’s blog post. In this post, I’m going to cover using Mutual TLS (mTLS) with OAuth to authenticate DocuSign Connect notifications.

What is Mutual TLS (mTLS)?

Mutual TLS is a mechanism that enables a server to authenticate the identity of the client that is connecting to it. Larry Kluger’s Mutual TLS blog post has more information on the TLS protocol, plus a few examples of how you can set it up and debug it. Mutual TLS enables  your server to confirm that the Connect event being received is in fact provided by DocuSign and has not been sent by a third party. 

Using mTLS with OAuth

OAuth and mTLS are both mechanisms that offer security for your infrastructure. The benefit of enabling both is that both operate on different layers of the network infrastructure so they are able to complement each other. mTLS ensures that the connection is from DocuSign, and adding OAuth adds authentication at the application level . This extra security makes a connection less vulnerable to forged message attacks. 

Previously, if you had mTLS enabled on your Connect configuration, your listener could request and validate DocuSign’s x.509 certificate even when an access token is supplied. However, the authorization server wasn’t able to request the certificate before granting a token.

What is new?

With the addition of  mTLS with OAuth, your authorization server will now be able to request DocuSign Connect’s x.509 certificate to verify its identity before the OAuth grant flow starts. Refer to the figure below for what the changes look like.

Message flow between DocuSign, your authentication server, and your listener server

As an additional security option, access token integrity (“Mutual-TLS Client Certificate-Bound Access Tokens'') is now available. To support this, your Authorization Server can associate the access token it issues with DocuSign Connect’s x.509 certificate. Then, the Connect message’s access token can be both checked for validity and further checked that the message’s origin (DocuSign Connect) is the same client (same certificate) that requested the access token.

Implementing mTLS, OAuth for Connect, and mTLS Client Certificate-Bound Access Tokens are the responsibility of the customer, since all of these features are implemented, configured, and controlled by the customer’s server hardware and software.

DocuSign recommends that customers decide which level of Connect message authenticity checks are appropriate for their business case and networking environment. Often a combination of Basic Authentication (implemented by the web server) and HMAC checks (implemented by the application software) are the right answer. 

DocuSign Professional Services can assist customers in configuring mTLS and mTLS Client Certificate-Bound Access Tokens.

We recommend testing this out in your demo account to ensure everything works as expected.  

Additional resources

Karan Kaushik
Author
Karan Kaushik
Developer Support Engineer
Published