aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/rsa
diff options
context:
space:
mode:
authorRalf S. Engelschall <rse@openssl.org>1998-12-22 15:04:48 +0000
committerRalf S. Engelschall <rse@openssl.org>1998-12-22 15:04:48 +0000
commit651d0aff98d28e2db146afa1790e9e22f3ef22db (patch)
tree064b04a2d7eddda845048c0278df8bbb068622f5 /crypto/rsa
parent31b8d8684441e6cd5138832bb1b2ddb10acd6ba6 (diff)
downloadopenssl-651d0aff98d28e2db146afa1790e9e22f3ef22db.tar.gz
Various cleanups and fixed by Marc and Ralf to start the OpenTLS project
Diffstat (limited to 'crypto/rsa')
-rw-r--r--crypto/rsa/.cvsignore1
-rw-r--r--crypto/rsa/f6
-rw-r--r--crypto/rsa/rsa_lib.c2
3 files changed, 2 insertions, 7 deletions
diff --git a/crypto/rsa/.cvsignore b/crypto/rsa/.cvsignore
new file mode 100644
index 0000000000..a65b41774a
--- /dev/null
+++ b/crypto/rsa/.cvsignore
@@ -0,0 +1 @@
+lib
diff --git a/crypto/rsa/f b/crypto/rsa/f
deleted file mode 100644
index 57528ef93e..0000000000
--- a/crypto/rsa/f
+++ /dev/null
@@ -1,6 +0,0 @@
- if ((rsa->method_mod_n == NULL) && (rsa->flags & RSA_FLAG_CACHE_PUBLIC))
- {
- if ((rsa->method_mod_n=(char *)BN_MONT_CTX_new()) != NULL)
- if (!BN_MONT_CTX_set((BN_MONT_CTX *)rsa->method_mod_n,
- rsa->n,ctx)) goto err;
- }
diff --git a/crypto/rsa/rsa_lib.c b/crypto/rsa/rsa_lib.c
index 5ce51f9f56..68c1d24ca0 100644
--- a/crypto/rsa/rsa_lib.c
+++ b/crypto/rsa/rsa_lib.c
@@ -63,7 +63,7 @@
#include "bn.h"
#include "rsa.h"
-char *RSA_version="RSA part of SSLeay 0.9.1a 06-Jul-1998";
+char *RSA_version="RSA part of SSLeay 0.9.1c 22-Dec-1998";
static RSA_METHOD *default_RSA_meth=NULL;
static int rsa_meth_num=0;