diff options
author | Hans Bolinder <[email protected]> | 2018-02-26 15:29:33 +0100 |
---|---|---|
committer | Hans Bolinder <[email protected]> | 2018-03-13 10:25:11 +0100 |
commit | b4d1aa182b211083c2982a700aa3e35eddecb6fc (patch) | |
tree | 2b6630053f3307275fcf114497dd9d95a94bec7a /lib/ssl/src/ssl_cipher.erl | |
parent | 5e13322caacc0a92294c68eea1759d0a63d149d3 (diff) | |
download | otp-b4d1aa182b211083c2982a700aa3e35eddecb6fc.tar.gz otp-b4d1aa182b211083c2982a700aa3e35eddecb6fc.tar.bz2 otp-b4d1aa182b211083c2982a700aa3e35eddecb6fc.zip |
ssl: Correct some specs
Diffstat (limited to 'lib/ssl/src/ssl_cipher.erl')
-rw-r--r-- | lib/ssl/src/ssl_cipher.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ssl/src/ssl_cipher.erl b/lib/ssl/src/ssl_cipher.erl index 1d645e5782..120055c84c 100644 --- a/lib/ssl/src/ssl_cipher.erl +++ b/lib/ssl/src/ssl_cipher.erl @@ -239,7 +239,7 @@ decipher(?AES_CBC, HashSz, CipherState, Fragment, Version, PaddingCheck) -> %%-------------------------------------------------------------------- -spec decipher_aead(cipher_enum(), #cipher_state{}, integer(), binary(), binary(), ssl_record:ssl_version()) -> - {binary(), binary(), #cipher_state{}} | #alert{}. + {binary(), #cipher_state{}} | #alert{}. %% %% Description: Decrypts the data and checks the associated data (AAD) MAC using %% cipher described by cipher_enum() and updating the cipher state. |