diff options
author | Ingela Anderton Andin <[email protected]> | 2013-05-03 12:28:39 +0200 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2013-05-08 10:39:22 +0200 |
commit | 01f5de8764b200bdd0d5e4ff69fba4523b3c2c7c (patch) | |
tree | 3af15623a00b5d1bab96f039120ce2b67de2b5e1 /lib/ssl/src | |
parent | cb1305212e71855890bbfb0a509a007543529d24 (diff) | |
download | otp-01f5de8764b200bdd0d5e4ff69fba4523b3c2c7c.tar.gz otp-01f5de8764b200bdd0d5e4ff69fba4523b3c2c7c.tar.bz2 otp-01f5de8764b200bdd0d5e4ff69fba4523b3c2c7c.zip |
ssl & public_key: Use standard name
Diffstat (limited to 'lib/ssl/src')
-rw-r--r-- | lib/ssl/src/ssl_handshake.hrl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ssl/src/ssl_handshake.hrl b/lib/ssl/src/ssl_handshake.hrl index 2519fba4e1..b2387a0ee7 100644 --- a/lib/ssl/src/ssl_handshake.hrl +++ b/lib/ssl/src/ssl_handshake.hrl @@ -29,7 +29,7 @@ -include_lib("public_key/include/public_key.hrl"). -type oid() :: tuple(). --type public_key_params() :: #'Dss-Parms'{} | {namedCurve, oid()} | #'OTPECParameters'{} | term(). +-type public_key_params() :: #'Dss-Parms'{} | {namedCurve, oid()} | #'ECParameters'{} | term(). -type public_key_info() :: {oid(), #'RSAPublicKey'{} | integer() | #'ECPoint'{}, public_key_params()}. -type tls_handshake_history() :: {[binary()], [binary()]}. |