aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ssl/src
diff options
context:
space:
mode:
authorIngela Anderton Andin <[email protected]>2016-10-05 09:09:09 +0200
committerIngela Anderton Andin <[email protected]>2016-10-05 09:09:09 +0200
commit510e1a43f2d540c234a3d3672d80b07216c0eb0a (patch)
tree57d5c6c777d9c38443e61a36c5c1dbb900d7351a /lib/ssl/src
parentf98390d5100bf340bce2ede86be02955419f2c0a (diff)
downloadotp-510e1a43f2d540c234a3d3672d80b07216c0eb0a.tar.gz
otp-510e1a43f2d540c234a3d3672d80b07216c0eb0a.tar.bz2
otp-510e1a43f2d540c234a3d3672d80b07216c0eb0a.zip
ssl: Adjust cipher type to conform to implementation
Diffstat (limited to 'lib/ssl/src')
-rw-r--r--lib/ssl/src/ssl_cipher.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ssl/src/ssl_cipher.erl b/lib/ssl/src/ssl_cipher.erl
index 19e1517194..16f7dc54c3 100644
--- a/lib/ssl/src/ssl_cipher.erl
+++ b/lib/ssl/src/ssl_cipher.erl
@@ -46,9 +46,9 @@
erl_cipher_suite/0, openssl_cipher_suite/0,
hash/0, key_algo/0, sign_algo/0]).
--type cipher() :: null |rc4_128 | idea_cbc | des40_cbc | des_cbc | '3des_ede_cbc'
+-type cipher() :: null |rc4_128 | des_cbc | '3des_ede_cbc'
| aes_128_cbc | aes_256_cbc | aes_128_gcm | aes_256_gcm | chacha20_poly1305.
--type hash() :: null | sha | md5 | sha224 | sha256 | sha384 | sha512.
+-type hash() :: null | md5 | sha | sha224 | sha256 | sha384 | sha512.
-type sign_algo() :: rsa | dsa | ecdsa.
-type key_algo() :: null | rsa | dhe_rsa | dhe_dss | ecdhe_ecdsa| ecdh_ecdsa | ecdh_rsa| srp_rsa| srp_dss |
psk | dhe_psk | rsa_psk | dh_anon | ecdh_anon | srp_anon.