diff options
author | Juraj Somorovsky <[email protected]> | 2016-11-19 21:58:18 +0100 |
---|---|---|
committer | Juraj Somorovsky <[email protected]> | 2016-11-19 21:58:18 +0100 |
commit | acf1999cb85fc6bca83ac828b66593a6767174f7 (patch) | |
tree | fa41669cd94ffde178c3dbd0b838c377ea8ec2a4 /src/lib/tls/tls_cbc | |
parent | 1e21b64bb96815ebadfab892a73094c758db142d (diff) |
TLS CBC functionality now exposed to the library developer. Useful for direct TLS CBC testing.
CLI TLS server now catches an exception if an invalid connection is received (Otherwise, the server always stopped working)
Diffstat (limited to 'src/lib/tls/tls_cbc')
-rw-r--r-- | src/lib/tls/tls_cbc/tls_cbc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/tls/tls_cbc/tls_cbc.h b/src/lib/tls/tls_cbc/tls_cbc.h index c448879fb..97c3387e8 100644 --- a/src/lib/tls/tls_cbc/tls_cbc.h +++ b/src/lib/tls/tls_cbc/tls_cbc.h @@ -21,7 +21,7 @@ namespace TLS { * TLS CBC+HMAC AEAD base class (GenericBlockCipher in TLS spec) * This is the weird TLS-specific mode, not for general consumption. */ -class TLS_CBC_HMAC_AEAD_Mode : public AEAD_Mode +class BOTAN_DLL TLS_CBC_HMAC_AEAD_Mode : public AEAD_Mode { public: size_t process(uint8_t buf[], size_t sz) override final; |