diff options
author | Wil Tan <[email protected]> | 2010-01-06 04:10:10 +1100 |
---|---|---|
committer | Dan Gudmundsson <[email protected]> | 2010-01-12 12:40:49 +0100 |
commit | fbe15664033aecd247aa3ee7446562639c10a0f4 (patch) | |
tree | 56c34d1a9c6d2813aa084b8a3dd6b9fb23079d0f /lib/public_key | |
parent | e447b437a74b1ba58567026923104b6b2922dafc (diff) | |
download | otp-fbe15664033aecd247aa3ee7446562639c10a0f4.tar.gz otp-fbe15664033aecd247aa3ee7446562639c10a0f4.tar.bz2 otp-fbe15664033aecd247aa3ee7446562639c10a0f4.zip |
Send CA list during Certificate Request in new_ssl
When requesting for client certificate, an SSL/TLS server may send a
list of the distinguished names of acceptable certificate authorities.
OpenSSL does this by default.
Diffstat (limited to 'lib/public_key')
-rw-r--r-- | lib/public_key/src/pubkey_cert_records.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/public_key/src/pubkey_cert_records.erl b/lib/public_key/src/pubkey_cert_records.erl index 36b7c47a9c..7f9f3c84f4 100644 --- a/lib/public_key/src/pubkey_cert_records.erl +++ b/lib/public_key/src/pubkey_cert_records.erl @@ -23,7 +23,7 @@ -include("public_key.hrl"). --export([decode_cert/2, encode_cert/1, encode_tbs_cert/1]). +-export([decode_cert/2, encode_cert/1, encode_tbs_cert/1, transform/2]). -export([old_decode_cert/2, old_encode_cert/1]). %% Debugging and testing new code. |