aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorKurt Roeckx <kurt@roeckx.be>2015-04-18 12:23:12 +0200
committerKurt Roeckx <kurt@roeckx.be>2015-06-09 00:46:59 +0200
commit26c79d5641dcc85c666e0594c11663c00ec6c195 (patch)
tree1b7c783623b0607d4138947c0b6aa6f2d54f2a49 /include
parent0fb9990480919163cc375a2b6c0df1d8d901a77b (diff)
downloadopenssl-26c79d5641dcc85c666e0594c11663c00ec6c195.tar.gz
Properly check certificate in case of export ciphers.
Reviewed-by: Matt Caswell <matt@openssl.org> MR #588
Diffstat (limited to 'include')
-rw-r--r--include/openssl/dh.h1
-rw-r--r--include/openssl/rsa.h1
2 files changed, 2 insertions, 0 deletions
diff --git a/include/openssl/dh.h b/include/openssl/dh.h
index 2d7c739eca..e0f4b57349 100644
--- a/include/openssl/dh.h
+++ b/include/openssl/dh.h
@@ -200,6 +200,7 @@ DH *DH_new_method(ENGINE *engine);
DH *DH_new(void);
void DH_free(DH *dh);
int DH_up_ref(DH *dh);
+int DH_bits(const DH *dh);
int DH_size(const DH *dh);
int DH_security_bits(const DH *dh);
int DH_get_ex_new_index(long argl, void *argp, CRYPTO_EX_new *new_func,
diff --git a/include/openssl/rsa.h b/include/openssl/rsa.h
index 9ba64970b6..727b9df4c4 100644
--- a/include/openssl/rsa.h
+++ b/include/openssl/rsa.h
@@ -319,6 +319,7 @@ struct rsa_st {
RSA *RSA_new(void);
RSA *RSA_new_method(ENGINE *engine);
+int RSA_bits(const RSA *rsa);
int RSA_size(const RSA *rsa);
int RSA_security_bits(const RSA *rsa);