diff options
author | lloyd <[email protected]> | 2011-12-30 15:37:36 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2011-12-30 15:37:36 +0000 |
commit | fc626d62f464a7dee5e62134781f5a6ccdfafc72 (patch) | |
tree | 6658020f1836b2faacffabca03897ca871b2880d /src/tls/tls_policy.h | |
parent | ca850112360e48a3a140f08fa07f02806d61393b (diff) |
Many renegotiation fixes. Add support for the secure renegotiation
extension (client side only at the moment). Add an interface that
allows applications to request renegotiation.
Diffstat (limited to 'src/tls/tls_policy.h')
-rw-r--r-- | src/tls/tls_policy.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/tls/tls_policy.h b/src/tls/tls_policy.h index 461164d2f..dd38f3574 100644 --- a/src/tls/tls_policy.h +++ b/src/tls/tls_policy.h @@ -36,6 +36,8 @@ class BOTAN_DLL TLS_Policy virtual bool allow_edh_dsa() const { return true; } virtual bool require_client_auth() const { return false; } + virtual bool require_secure_renegotiation() const { return true; } + virtual DL_Group dh_group() const; virtual size_t rsa_export_keysize() const { return 512; } |