rsa.pod 3.6 KB
Newer Older
U
Ulf Möller 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
=pod

=head1 NAME

rsa - RSA public key cryptosystem

=head1 SYNOPSIS

 #include <openssl/rsa.h>

 RSA * RSA_new(void);
 void RSA_free(RSA *rsa);

 int RSA_public_encrypt(int flen, unsigned char *from,
    unsigned char *to, RSA *rsa, int padding);
 int RSA_private_decrypt(int flen, unsigned char *from,
    unsigned char *to, RSA *rsa, int padding);
18 19
 int RSA_private_encrypt(int flen, unsigned char *from,
    unsigned char *to, RSA *rsa,int padding);
R
Rich Salz 已提交
20
 int RSA_public_decrypt(int flen, unsigned char *from,
21
    unsigned char *to, RSA *rsa,int padding);
U
Ulf Möller 已提交
22 23 24 25 26 27 28 29 30 31 32 33 34 35

 int RSA_sign(int type, unsigned char *m, unsigned int m_len,
    unsigned char *sigret, unsigned int *siglen, RSA *rsa);
 int RSA_verify(int type, unsigned char *m, unsigned int m_len,
    unsigned char *sigbuf, unsigned int siglen, RSA *rsa);

 RSA *RSA_generate_key(int num, unsigned long e,
    void (*callback)(int,int,void *), void *cb_arg);

 int RSA_check_key(RSA *rsa);

 int RSA_blinding_on(RSA *rsa, BN_CTX *ctx);
 void RSA_blinding_off(RSA *rsa);

36 37 38 39
 void RSA_set_default_method(const RSA_METHOD *meth);
 const RSA_METHOD *RSA_get_default_method(void);
 int RSA_set_method(RSA *rsa, const RSA_METHOD *meth);
 const RSA_METHOD *RSA_get_method(const RSA *rsa);
R
Rich Salz 已提交
40
 RSA_METHOD *RSA_PKCS1_OpenSSL(void);
U
Ulf Möller 已提交
41
 RSA_METHOD *RSA_null_method(void);
42
 int RSA_flags(const RSA *rsa);
43
 RSA *RSA_new_method(ENGINE *engine);
U
Ulf Möller 已提交
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59

 int RSA_print(BIO *bp, RSA *x, int offset);
 int RSA_print_fp(FILE *fp, RSA *x, int offset);

 int RSA_sign_ASN1_OCTET_STRING(int dummy, unsigned char *m,
    unsigned int m_len, unsigned char *sigret, unsigned int *siglen,
    RSA *rsa);
 int RSA_verify_ASN1_OCTET_STRING(int dummy, unsigned char *m,
    unsigned int m_len, unsigned char *sigbuf, unsigned int siglen,
    RSA *rsa);

=head1 DESCRIPTION

These functions implement RSA public key encryption and signatures
as defined in PKCS #1 v2.0 [RFC 2437].

R
Richard Levitte 已提交
60 61 62 63 64 65
The B<RSA> structure consists of the BIGNUM components B<n>, B<e>,
B<d>, B<p>, B<q>, B<dmp1>, B<dmq1> and B<iqmp>, which represent public
as well as private RSA keys.

In public keys, the private exponent B<d> and the related secret
values B<p>, B<q>, B<dmp1>, B<dmq1> and B<iqmp> are B<NULL>.
U
Ulf Möller 已提交
66

U
Ulf Möller 已提交
67 68 69
B<p>, B<q>, B<dmp1>, B<dmq1> and B<iqmp> may be B<NULL> in private
keys, but the RSA operations are much faster when these values are
available.
U
Ulf Möller 已提交
70

71 72 73 74 75 76 77 78
Note that RSA keys may use non-standard B<RSA_METHOD> implementations,
either directly or by the use of B<ENGINE> modules. In some cases (eg. an
ENGINE providing support for hardware-embedded keys), these BIGNUM values
will not be used by the implementation or may be used for alternative data
storage. For this reason, applications should generally avoid using RSA
structure elements directly and instead use API functions to query or
modify keys.

U
Ulf Möller 已提交
79 80 81 82
=head1 CONFORMING TO

SSL, PKCS #1 v2.0

U
Ulf Möller 已提交
83 84
=head1 PATENTS

85
RSA was covered by a US patent which expired in September 2000.
U
Ulf Möller 已提交
86 87 88

=head1 SEE ALSO

R
Rich Salz 已提交
89
L<rsa(1)>, L<bn(3)>, L<dsa(3)>, L<dh(3)>,
R
Richard Levitte 已提交
90
L<rand(3)>, L<engine(3)>, L<RSA_new(3)>, L<RSA_set0_key(3)>
R
Rich Salz 已提交
91 92 93 94 95 96 97 98 99
L<RSA_public_encrypt(3)>,
L<RSA_sign(3)>, L<RSA_size(3)>,
L<RSA_generate_key(3)>,
L<RSA_check_key(3)>,
L<RSA_blinding_on(3)>,
L<RSA_set_method(3)>, L<RSA_print(3)>,
L<RSA_get_ex_new_index(3)>,
L<RSA_private_encrypt(3)>,
L<RSA_sign_ASN1_OCTET_STRING(3)>,
R
Rich Salz 已提交
100
L<RSA_padding_add_PKCS1_type_1(3)>
U
Ulf Möller 已提交
101

R
Rich Salz 已提交
102 103 104 105 106 107 108 109 110 111
=head1 COPYRIGHT

Copyright 2000-2016 The OpenSSL Project Authors. All Rights Reserved.

Licensed under the OpenSSL license (the "License").  You may not use
this file except in compliance with the License.  You can obtain a copy
in the file LICENSE in the source distribution or at
L<https://www.openssl.org/source/license.html>.

=cut