diff options
author | lloyd <[email protected]> | 2012-03-22 18:20:26 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2012-03-22 18:20:26 +0000 |
commit | 4004e38a00f6bf5743af68d47e44f7adf3872d2b (patch) | |
tree | 605a6ec635f74221f65fbdfec00467a72f21e975 /src/tls/tls_session.cpp | |
parent | 544171d3e20d65f17a1d3955388a8db4f04cfe44 (diff) |
Server side handling of session tickets, though currently with a
hard-coded key.
Diffstat (limited to 'src/tls/tls_session.cpp')
-rw-r--r-- | src/tls/tls_session.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tls/tls_session.cpp b/src/tls/tls_session.cpp index a9eb8f95c..a41112bf4 100644 --- a/src/tls/tls_session.cpp +++ b/src/tls/tls_session.cpp @@ -147,7 +147,7 @@ Session::encrypt(const SymmetricKey& master_key, "tls.session.cipher-key"); SymmetricKey hmac_key = kdf->derive_key(32, master_key.bits_of(), - "tls.session.hmac-key"); + "tls.session.mac-key"); InitializationVector aes_iv(rng, 16); |