summaryrefslogtreecommitdiffstats
path: root/crypto/rsa/rsa_null.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_null.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_null.c')
-rw-r--r--crypto/rsa/rsa_null.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/crypto/rsa/rsa_null.c b/crypto/rsa/rsa_null.c
index 64057fbdcf..1bf70ca2a9 100644
--- a/crypto/rsa/rsa_null.c
+++ b/crypto/rsa/rsa_null.c
@@ -94,6 +94,9 @@ static RSA_METHOD rsa_null_meth={
RSA_null_finish,
0,
NULL,
+ NULL,
+ NULL,
+ NULL
};
const RSA_METHOD *RSA_null_method(void)