diff options
author | Ingela Anderton Andin <[email protected]> | 2013-09-10 17:43:40 +0200 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2013-12-02 09:44:49 +0100 |
commit | 810c34a7991f2b6edd5e9f41e3c667958a5b2bc8 (patch) | |
tree | 650dfd13ab00533b8a1cc8f3f63986c672558667 /lib/ssl/src/ssl_cipher.erl | |
parent | 2bc1b1c962adf7849abb5a8399706aad708c5969 (diff) | |
download | otp-810c34a7991f2b6edd5e9f41e3c667958a5b2bc8.tar.gz otp-810c34a7991f2b6edd5e9f41e3c667958a5b2bc8.tar.bz2 otp-810c34a7991f2b6edd5e9f41e3c667958a5b2bc8.zip |
ssl: Refactor handshake and record handling
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 e6ed0d8626..b2077c662a 100644 --- a/lib/ssl/src/ssl_cipher.erl +++ b/lib/ssl/src/ssl_cipher.erl @@ -72,7 +72,7 @@ security_parameters(Version, CipherSuite, SecParams) -> hash_size = hash_size(Hash)}. %%-------------------------------------------------------------------- --spec cipher(cipher_enum(), #cipher_state{}, binary(), binary(), tls_version()) -> +-spec cipher(cipher_enum(), #cipher_state{}, binary(), iolist(), tls_version()) -> {binary(), #cipher_state{}}. %% %% Description: Encrypts the data and the MAC using chipher described |