提交 e2045161 编写于 作者: R Richard Levitte

Remove reference to RSA_PKCS1_RSAref, since it doesn't exist any more.

This correction was originally introduced in OpenBSD's tracking of OpenSSL.
上级 153aecf9
...@@ -3,13 +3,12 @@ ...@@ -3,13 +3,12 @@
=head1 NAME =head1 NAME
RSA_set_default_method, RSA_get_default_method, RSA_set_method, RSA_set_default_method, RSA_get_default_method, RSA_set_method,
RSA_get_method, RSA_PKCS1_SSLeay, RSA_get_method, RSA_PKCS1_SSLeay, RSA_null_method, RSA_flags,
RSA_null_method, RSA_flags, RSA_new_method - select RSA method RSA_new_method - select RSA method
=head1 SYNOPSIS =head1 SYNOPSIS
#include <openssl/rsa.h> #include <openssl/rsa.h>
#include <openssl/engine.h>
void RSA_set_default_method(const RSA_METHOD *meth); void RSA_set_default_method(const RSA_METHOD *meth);
...@@ -21,11 +20,13 @@ RSA_null_method, RSA_flags, RSA_new_method - select RSA method ...@@ -21,11 +20,13 @@ RSA_null_method, RSA_flags, RSA_new_method - select RSA method
RSA_METHOD *RSA_PKCS1_SSLeay(void); RSA_METHOD *RSA_PKCS1_SSLeay(void);
RSA_METHOD *RSA_PKCS1_RSAref(void);
RSA_METHOD *RSA_null_method(void); RSA_METHOD *RSA_null_method(void);
int RSA_flags(const RSA *rsa); int RSA_flags(const RSA *rsa);
RSA *RSA_new_method(ENGINE *engine); RSA *RSA_new_method(RSA_METHOD *method);
=head1 DESCRIPTION =head1 DESCRIPTION
...@@ -70,6 +71,12 @@ B<engine> will be used for the RSA operations. If B<engine> is NULL, the ...@@ -70,6 +71,12 @@ B<engine> will be used for the RSA operations. If B<engine> is NULL, the
default ENGINE for RSA operations is used, and if no default ENGINE is set, default ENGINE for RSA operations is used, and if no default ENGINE is set,
the RSA_METHOD controlled by RSA_set_default_method() is used. the RSA_METHOD controlled by RSA_set_default_method() is used.
RSA_flags() returns the B<flags> that are set for B<rsa>'s current method.
RSA_new_method() allocates and initializes an B<RSA> structure so that
B<method> will be used for the RSA operations. If B<method> is B<NULL>,
the default method is used.
=head1 THE RSA_METHOD STRUCTURE =head1 THE RSA_METHOD STRUCTURE
typedef struct rsa_meth_st typedef struct rsa_meth_st
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册