diff options
author | jsing <> | 2019-11-02 13:52:31 +0000 |
---|---|---|
committer | jsing <> | 2019-11-02 13:52:31 +0000 |
commit | 5e1331d85653f9494962ba1fe8958f991123ce9c (patch) | |
tree | 42871f1bc95bcdc489b0b74d84f1a9431f4332a7 /src/lib/libcrypto/rsa/rsa.h | |
parent | a1469fa8c12bfdc4903287f9aeb13ff9f42c1884 (diff) | |
download | openbsd-5e1331d85653f9494962ba1fe8958f991123ce9c.tar.gz openbsd-5e1331d85653f9494962ba1fe8958f991123ce9c.tar.bz2 openbsd-5e1331d85653f9494962ba1fe8958f991123ce9c.zip |
Provide RSA_PKCS1_OpenSSL().
Prompted by inoguchi@
Diffstat (limited to 'src/lib/libcrypto/rsa/rsa.h')
-rw-r--r-- | src/lib/libcrypto/rsa/rsa.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/rsa/rsa.h b/src/lib/libcrypto/rsa/rsa.h index 9dd840006f..9859c5f420 100644 --- a/src/lib/libcrypto/rsa/rsa.h +++ b/src/lib/libcrypto/rsa/rsa.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: rsa.h,v 1.49 2019/11/02 13:47:41 jsing Exp $ */ | 1 | /* $OpenBSD: rsa.h,v 1.50 2019/11/02 13:52:31 jsing Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -331,7 +331,7 @@ const RSA_METHOD *RSA_get_default_method(void); | |||
331 | const RSA_METHOD *RSA_get_method(const RSA *rsa); | 331 | const RSA_METHOD *RSA_get_method(const RSA *rsa); |
332 | int RSA_set_method(RSA *rsa, const RSA_METHOD *meth); | 332 | int RSA_set_method(RSA *rsa, const RSA_METHOD *meth); |
333 | 333 | ||
334 | /* these are the actual SSLeay RSA functions */ | 334 | const RSA_METHOD *RSA_PKCS1_OpenSSL(void); |
335 | const RSA_METHOD *RSA_PKCS1_SSLeay(void); | 335 | const RSA_METHOD *RSA_PKCS1_SSLeay(void); |
336 | 336 | ||
337 | const RSA_METHOD *RSA_null_method(void); | 337 | const RSA_METHOD *RSA_null_method(void); |