From 26c79d5641dcc85c666e0594c11663c00ec6c195 Mon Sep 17 00:00:00 2001 From: Kurt Roeckx Date: Sat, 18 Apr 2015 12:23:12 +0200 Subject: Properly check certificate in case of export ciphers. Reviewed-by: Matt Caswell MR #588 --- crypto/dh/dh_lib.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'crypto/dh/dh_lib.c') diff --git a/crypto/dh/dh_lib.c b/crypto/dh/dh_lib.c index 4a37adc9f8..cce2514bbf 100644 --- a/crypto/dh/dh_lib.c +++ b/crypto/dh/dh_lib.c @@ -237,6 +237,11 @@ void *DH_get_ex_data(DH *d, int idx) return (CRYPTO_get_ex_data(&d->ex_data, idx)); } +int DH_bits(const DH *dh) +{ + return BN_num_bits(dh->p); +} + int DH_size(const DH *dh) { return (BN_num_bytes(dh->p)); -- cgit v1.2.3