mirror of
https://git.FreeBSD.org/src.git
synced 2025-02-05 18:05:16 +00:00
Fix for missing symbol in -DRSAref case.
This commit is contained in:
parent
c5da4b13a5
commit
d9d4eec9ea
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=56082
@ -54,6 +54,8 @@
|
||||
* derivative of this code cannot be changed. i.e. this code cannot simply be
|
||||
* copied and put under another distribution licence
|
||||
* [including the GNU Public Licence.]
|
||||
*
|
||||
* $FreeBSD$
|
||||
*/
|
||||
|
||||
/* most of this code has been pilfered from my libdes speed.c program */
|
||||
@ -437,7 +439,11 @@ int MAIN(int argc, char **argv)
|
||||
#endif
|
||||
if (strcmp(*argv,"openssl") == 0)
|
||||
{
|
||||
#ifdef RSAref
|
||||
RSA_set_default_method(RSA_PKCS1_RSAref());
|
||||
#else
|
||||
RSA_set_default_method(RSA_PKCS1_SSLeay());
|
||||
#endif
|
||||
j--;
|
||||
}
|
||||
else
|
||||
|
Loading…
x
Reference in New Issue
Block a user