summaryrefslogtreecommitdiffstats
path: root/crypto/rsa/rsa_eay.c
diff options
context:
space:
mode:
authorGeoff Thorpe <geoff@openssl.org>2003-01-07 05:51:39 +0000
committerGeoff Thorpe <geoff@openssl.org>2003-01-07 05:51:39 +0000
commit2814c629154a2ef9f7371808738eb70c92a1d1b1 (patch)
tree3806a3b2cd04ba5fac003b962250a31e7c194ddf /crypto/rsa/rsa_eay.c
parent876e96fdbf0030c48f9d1ceb7a0c371375dd71d6 (diff)
This is the first step in allowing RSA_METHODs to implement their own key
generation. This prototype matches the new API function RSA_generate_key_ex(), though both may be subject to change during development before 0.9.8.
Diffstat (limited to 'crypto/rsa/rsa_eay.c')
-rw-r--r--crypto/rsa/rsa_eay.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/crypto/rsa/rsa_eay.c b/crypto/rsa/rsa_eay.c
index c4e6d1e22a..cab34847df 100644
--- a/crypto/rsa/rsa_eay.c
+++ b/crypto/rsa/rsa_eay.c
@@ -89,7 +89,8 @@ static RSA_METHOD rsa_pkcs1_eay_meth={
0, /* flags */
NULL,
0, /* rsa_sign */
- 0 /* rsa_verify */
+ 0, /* rsa_verify */
+ NULL /* rsa_keygen */
};
const RSA_METHOD *RSA_PKCS1_SSLeay(void)