]> git.ipfire.org Git - thirdparty/openssl.git/blame - doc/man3/RSA_get0_key.pod
Support public key and param check in EVP interface
[thirdparty/openssl.git] / doc / man3 / RSA_get0_key.pod
CommitLineData
b879882a
RL
1=pod
2
3=head1 NAME
4
5RSA_set0_key, RSA_set0_factors, RSA_set0_crt_params, RSA_get0_key,
6RSA_get0_factors, RSA_get0_crt_params, RSA_clear_flags,
7RSA_test_flags, RSA_set_flags, RSA_get0_engine - Routines for getting
8and setting data in an RSA object
9
10=head1 SYNOPSIS
11
12 #include <openssl/rsa.h>
13
14 int RSA_set0_key(RSA *r, BIGNUM *n, BIGNUM *e, BIGNUM *d);
15 int RSA_set0_factors(RSA *r, BIGNUM *p, BIGNUM *q);
aebb9aac 16 int RSA_set0_crt_params(RSA *r, BIGNUM *dmp1, BIGNUM *dmq1, BIGNUM *iqmp);
fd809cfd
RL
17 void RSA_get0_key(const RSA *r,
18 const BIGNUM **n, const BIGNUM **e, const BIGNUM **d);
19 void RSA_get0_factors(const RSA *r, const BIGNUM **p, const BIGNUM **q);
b879882a 20 void RSA_get0_crt_params(const RSA *r,
fd809cfd
RL
21 const BIGNUM **dmp1, const BIGNUM **dmq1,
22 const BIGNUM **iqmp);
b879882a
RL
23 void RSA_clear_flags(RSA *r, int flags);
24 int RSA_test_flags(const RSA *r, int flags);
25 void RSA_set_flags(RSA *r, int flags);
26 ENGINE *RSA_get0_engine(RSA *r);
27
28=head1 DESCRIPTION
29
30An RSA object contains the components for the public and private key,
31B<n>, B<e>, B<d>, B<p>, B<q>, B<dmp1>, B<dmq1> and B<iqmp>. B<n> is
32the modulus common to both public and private key, B<e> is the public
33exponent and B<d> is the private exponent. B<p>, B<q>, B<dmp1>,
34B<dmq1> and B<iqmp> are the factors for the second representation of a
35private key (see PKCS#1 section 3 Key Types), where B<p> and B<q> are
36the first and second factor of B<n> and B<dmp1>, B<dmq1> and B<iqmp>
37are the exponents and coefficient for CRT calculations.
38
39The B<n>, B<e> and B<d> parameters can be obtained by calling
40RSA_get0_key(). If they have not been set yet, then B<*n>, B<*e> and
41B<*d> will be set to NULL. Otherwise, they are set to pointers to
42their respective values. These point directly to the internal
43representations of the values and therefore should not be freed
44by the caller.
45
46The B<n>, B<e> and B<d> parameter values can be set by calling
47RSA_set0_key() and passing the new values for B<n>, B<e> and B<d> as
4c5e6b2c
RL
48parameters to the function. The values B<n> and B<e> must be non-NULL
49the first time this function is called on a given RSA object. The
50value B<d> may be NULL. On subsequent calls any of these values may be
51NULL which means the corresponding RSA field is left untouched.
52Calling this function transfers the memory management of the values to
53the RSA object, and therefore the values that have been passed in
54should not be freed by the caller after this function has been called.
b879882a
RL
55
56In a similar fashion, the B<p> and B<q> parameters can be obtained and
57set with RSA_get0_factors() and RSA_set0_factors(), and the B<dmp1>,
58B<dmq1> and B<iqmp> parameters can be obtained and set with
59RSA_get0_crt_params() and RSA_set0_crt_params().
60
07c54e59
KG
61For RSA_get0_key(), RSA_get0_factors(), and RSA_get0_crt_params(),
62NULL value BIGNUM ** output parameters are permitted. The functions
63ignore NULL parameters but return values for other, non-NULL, parameters.
64
b879882a
RL
65RSA_set_flags() sets the flags in the B<flags> parameter on the RSA
66object. Multiple flags can be passed in one go (bitwise ORed together).
67Any flags that are already set are left set. RSA_test_flags() tests to
68see whether the flags passed in the B<flags> parameter are currently
69set in the RSA object. Multiple flags can be tested in one go. All
70flags that are currently set are returned, or zero if none of the
71flags are set. RSA_clear_flags() clears the specified flags within the
72RSA object.
73
74RSA_get0_engine() returns a handle to the ENGINE that has been set for
75this RSA object, or NULL if no such ENGINE has been set.
76
4c5e6b2c
RL
77=head1 NOTES
78
79Values retrieved with RSA_get0_key() are owned by the RSA object used
80in the call and may therefore I<not> be passed to RSA_set0_key(). If
81needed, duplicate the received value using BN_dup() and pass the
82duplicate. The same applies to RSA_get0_factors() and RSA_set0_factors()
83as well as RSA_get0_crt_params() and RSA_set0_crt_params().
84
b879882a
RL
85=head1 RETURN VALUES
86
87RSA_set0_key(), RSA_set0_factors and RSA_set0_crt_params() return 1 on
88success or 0 on failure.
89
90RSA_test_flags() returns the current state of the flags in the RSA object.
91
92RSA_get0_engine() returns the ENGINE set for the RSA object or NULL if no
93ENGINE has been set.
94
95=head1 SEE ALSO
96
b97fdb57 97L<RSA_new(3)>, L<RSA_size(3)>
b879882a
RL
98
99=head1 HISTORY
100
e90fc053 101The functions described here were added in OpenSSL 1.1.0.
b879882a 102
e2f92610
RS
103=head1 COPYRIGHT
104
105Copyright 2016 The OpenSSL Project Authors. All Rights Reserved.
106
107Licensed under the OpenSSL license (the "License"). You may not use
108this file except in compliance with the License. You can obtain a copy
109in the file LICENSE in the source distribution or at
110L<https://www.openssl.org/source/license.html>.
111
112=cut