diff options
author | Jack Lloyd <[email protected]> | 2016-02-07 05:10:18 -0500 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2016-02-07 05:10:18 -0500 |
commit | 62a03ea81ab7a2fe8ff79275427f3353a75e3a4f (patch) | |
tree | 22134859fa408e5d1ea6d8d1d4a5198c665e48aa /src/lib/tls/tls_messages.h | |
parent | 0ed7333721b8205c2b4b281b6cd5c762754fbe7d (diff) |
Make SRP6 support optional in TLS
Remove SRP_SHA from the default policy, since normal applications do
not need it.
Removes nullptr initializers of unique_ptrs in the Server_Key_Exchange
constructor, that's the default unique_ptr already.
Diffstat (limited to 'src/lib/tls/tls_messages.h')
-rw-r--r-- | src/lib/tls/tls_messages.h | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/src/lib/tls/tls_messages.h b/src/lib/tls/tls_messages.h index 739eca23e..c648df720 100644 --- a/src/lib/tls/tls_messages.h +++ b/src/lib/tls/tls_messages.h @@ -22,7 +22,10 @@ namespace Botan { class Credentials_Manager; + +#if defined(BOTAN_HAS_SRP6) class SRP6_Server_Session; +#endif namespace TLS { @@ -95,12 +98,14 @@ class Client_Hello final : public Handshake_Message return ""; } +#if defined(BOTAN_HAS_SRP6) std::string srp_identifier() const { if(SRP_Identifier* srp = m_extensions.get<SRP_Identifier>()) return srp->identifier(); return ""; } +#endif bool secure_renegotiation() const { @@ -463,8 +468,14 @@ class Server_Key_Exchange final : public Handshake_Message // Only valid for certain kex types const Private_Key& server_kex_key() const; +#if defined(BOTAN_HAS_SRP6) // Only valid for SRP negotiation - SRP6_Server_Session& server_srp_params() const; + SRP6_Server_Session& server_srp_params() const + { + BOTAN_ASSERT_NONNULL(m_srp_params); + return *m_srp_params; + } +#endif Server_Key_Exchange(Handshake_IO& io, Handshake_State& state, @@ -482,8 +493,10 @@ class Server_Key_Exchange final : public Handshake_Message private: std::vector<byte> serialize() const override; - std::unique_ptr<Private_Key> m_kex_key; +#if defined(BOTAN_HAS_SRP6) std::unique_ptr<SRP6_Server_Session> m_srp_params; +#endif + std::unique_ptr<Private_Key> m_kex_key; std::vector<byte> m_params; |