diff options
author | Peter Wemm <peter@FreeBSD.org> | 2000-02-26 13:13:03 +0000 |
---|---|---|
committer | Peter Wemm <peter@FreeBSD.org> | 2000-02-26 13:13:03 +0000 |
commit | 9fa5f5fd96e61991c4cb06bb4ab5c0e4bc9a7a99 (patch) | |
tree | 59bca2a02db0c68bb48d64cc97294d6ee84c42cd /crypto/openssl/crypto/rsa/rsa.h | |
parent | b70ab85b2bb5d6a7b2f18ed4ac5d2a861f565c67 (diff) | |
download | src-9fa5f5fd96e61991c4cb06bb4ab5c0e4bc9a7a99.tar.gz src-9fa5f5fd96e61991c4cb06bb4ab5c0e4bc9a7a99.zip |
Merge from internat.freebsd.org repo, minus change to rsa_eay.c (missing)
Reorganize and unify libcrypto's interface so that the RSA implementation
is chosen at runtime via dlopen().
This is a checkpoint and may require more tweaks still.
Notes
Notes:
svn path=/head/; revision=57511
Diffstat (limited to 'crypto/openssl/crypto/rsa/rsa.h')
-rw-r--r-- | crypto/openssl/crypto/rsa/rsa.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/crypto/openssl/crypto/rsa/rsa.h b/crypto/openssl/crypto/rsa/rsa.h index 9230b2fcc9b4..6c17cccdef6b 100644 --- a/crypto/openssl/crypto/rsa/rsa.h +++ b/crypto/openssl/crypto/rsa/rsa.h @@ -1,4 +1,5 @@ /* crypto/rsa/rsa.h */ +/* $FreeBSD$ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -175,11 +176,8 @@ RSA_METHOD *RSA_set_method(RSA *rsa, RSA_METHOD *meth); /* This function needs the memory locking malloc callbacks to be installed */ int RSA_memory_lock(RSA *r); -/* If you have RSAref compiled in. */ -RSA_METHOD *RSA_PKCS1_RSAref(void); - /* these are the actual SSLeay RSA functions */ -RSA_METHOD *RSA_PKCS1_SSLeay(void); +RSA_METHOD *RSA_PKCS1(void); void ERR_load_RSA_strings(void ); |