aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ssl/src/ssl_internal.hrl
diff options
context:
space:
mode:
authorIngela Anderton Andin <[email protected]>2010-11-10 17:49:47 +0100
committerIngela Anderton Andin <[email protected]>2010-11-10 17:49:47 +0100
commit7400f4e990c0e33c0b1f1638f055a2a7c76b4fa3 (patch)
tree77e796bf05541cd2e117f8f7d4d392b7cf7fa807 /lib/ssl/src/ssl_internal.hrl
parenta77d2b315600bbc851d3ab6d8d70c62715d5ce7c (diff)
downloadotp-7400f4e990c0e33c0b1f1638f055a2a7c76b4fa3.tar.gz
otp-7400f4e990c0e33c0b1f1638f055a2a7c76b4fa3.tar.bz2
otp-7400f4e990c0e33c0b1f1638f055a2a7c76b4fa3.zip
Added "DECRYPTION_FAILED ALERT" for block decipher failure.
Also fixed incorrect dialyzer spec.
Diffstat (limited to 'lib/ssl/src/ssl_internal.hrl')
-rw-r--r--lib/ssl/src/ssl_internal.hrl4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ssl/src/ssl_internal.hrl b/lib/ssl/src/ssl_internal.hrl
index d2dee4d861..4148032cb7 100644
--- a/lib/ssl/src/ssl_internal.hrl
+++ b/lib/ssl/src/ssl_internal.hrl
@@ -105,10 +105,10 @@
-type cache_ref() :: term().
-type certdb_ref() :: term().
-type key_algo() :: null | rsa | dhe_rsa | dhe_dss | dh_anon.
--type enum_algo() :: integer().
+-type oid() :: tuple().
-type public_key() :: #'RSAPublicKey'{} | integer().
-type public_key_params() :: #'Dss-Parms'{} | term().
--type public_key_info() :: {enum_algo(), public_key(), public_key_params()}.
+-type public_key_info() :: {oid(), public_key(), public_key_params()}.
-type der_cert() :: binary().
-type private_key() :: #'RSAPrivateKey'{} | #'DSAPrivateKey'{}.
-type issuer() :: tuple().