SSL_CTX_set_tmp_rsa_callback.pod revision 277195
1=pod
2
3=head1 NAME
4
5SSL_CTX_set_tmp_rsa_callback, SSL_CTX_set_tmp_rsa, SSL_CTX_need_tmp_rsa, SSL_set_tmp_rsa_callback, SSL_set_tmp_rsa, SSL_need_tmp_rsa - handle RSA keys for ephemeral key exchange
6
7=head1 SYNOPSIS
8
9 #include <openssl/ssl.h>
10
11 void SSL_CTX_set_tmp_rsa_callback(SSL_CTX *ctx,
12            RSA *(*tmp_rsa_callback)(SSL *ssl, int is_export, int keylength));
13 long SSL_CTX_set_tmp_rsa(SSL_CTX *ctx, RSA *rsa);
14 long SSL_CTX_need_tmp_rsa(SSL_CTX *ctx);
15
16 void SSL_set_tmp_rsa_callback(SSL_CTX *ctx,
17            RSA *(*tmp_rsa_callback)(SSL *ssl, int is_export, int keylength));
18 long SSL_set_tmp_rsa(SSL *ssl, RSA *rsa)
19 long SSL_need_tmp_rsa(SSL *ssl)
20
21 RSA *(*tmp_rsa_callback)(SSL *ssl, int is_export, int keylength);
22
23=head1 DESCRIPTION
24
25SSL_CTX_set_tmp_rsa_callback() sets the callback function for B<ctx> to be
26used when a temporary/ephemeral RSA key is required to B<tmp_rsa_callback>.
27The callback is inherited by all SSL objects newly created from B<ctx>
28with <SSL_new(3)|SSL_new(3)>. Already created SSL objects are not affected.
29
30SSL_CTX_set_tmp_rsa() sets the temporary/ephemeral RSA key to be used to be
31B<rsa>. The key is inherited by all SSL objects newly created from B<ctx>
32with <SSL_new(3)|SSL_new(3)>. Already created SSL objects are not affected.
33
34SSL_CTX_need_tmp_rsa() returns 1, if a temporary/ephemeral RSA key is needed
35for RSA-based strength-limited 'exportable' ciphersuites because a RSA key
36with a keysize larger than 512 bits is installed.
37
38SSL_set_tmp_rsa_callback() sets the callback only for B<ssl>.
39
40SSL_set_tmp_rsa() sets the key only for B<ssl>.
41
42SSL_need_tmp_rsa() returns 1, if a temporary/ephemeral RSA key is needed,
43for RSA-based strength-limited 'exportable' ciphersuites because a RSA key
44with a keysize larger than 512 bits is installed.
45
46These functions apply to SSL/TLS servers only.
47
48=head1 NOTES
49
50When using a cipher with RSA authentication, an ephemeral RSA key exchange
51can take place. In this case the session data are negotiated using the
52ephemeral/temporary RSA key and the RSA key supplied and certified
53by the certificate chain is only used for signing.
54
55Under previous export restrictions, ciphers with RSA keys shorter (512 bits)
56than the usual key length of 1024 bits were created. To use these ciphers
57with RSA keys of usual length, an ephemeral key exchange must be performed,
58as the normal (certified) key cannot be directly used.
59
60Using ephemeral RSA key exchange yields forward secrecy, as the connection
61can only be decrypted, when the RSA key is known. By generating a temporary
62RSA key inside the server application that is lost when the application
63is left, it becomes impossible for an attacker to decrypt past sessions,
64even if he gets hold of the normal (certified) RSA key, as this key was
65used for signing only. The downside is that creating a RSA key is
66computationally expensive.
67
68Additionally, the use of ephemeral RSA key exchange is only allowed in
69the TLS standard, when the RSA key can be used for signing only, that is
70for export ciphers. Using ephemeral RSA key exchange for other purposes
71violates the standard and can break interoperability with clients.
72It is therefore strongly recommended to not use ephemeral RSA key
73exchange and use EDH (Ephemeral Diffie-Hellman) key exchange instead
74in order to achieve forward secrecy (see
75L<SSL_CTX_set_tmp_dh_callback(3)|SSL_CTX_set_tmp_dh_callback(3)>).
76
77An application may either directly specify the key or can supply the key via a
78callback function. The callback approach has the advantage, that the callback
79may generate the key only in case it is actually needed. As the generation of a
80RSA key is however costly, it will lead to a significant delay in the handshake
81procedure.  Another advantage of the callback function is that it can supply
82keys of different size while the explicit setting of the key is only useful for
83key size of 512 bits to satisfy the export restricted ciphers and does give
84away key length if a longer key would be allowed.
85
86The B<tmp_rsa_callback> is called with the B<keylength> needed and
87the B<is_export> information. The B<is_export> flag is set, when the
88ephemeral RSA key exchange is performed with an export cipher.
89
90=head1 EXAMPLES
91
92Generate temporary RSA keys to prepare ephemeral RSA key exchange. As the
93generation of a RSA key costs a lot of computer time, they saved for later
94reuse. For demonstration purposes, two keys for 512 bits and 1024 bits
95respectively are generated.
96
97 ...
98 /* Set up ephemeral RSA stuff */
99 RSA *rsa_512 = NULL;
100 RSA *rsa_1024 = NULL;
101
102 rsa_512 = RSA_generate_key(512,RSA_F4,NULL,NULL);
103 if (rsa_512 == NULL)
104     evaluate_error_queue();
105
106 rsa_1024 = RSA_generate_key(1024,RSA_F4,NULL,NULL);
107 if (rsa_1024 == NULL)
108   evaluate_error_queue();
109
110 ...
111
112 RSA *tmp_rsa_callback(SSL *s, int is_export, int keylength)
113 {
114    RSA *rsa_tmp=NULL;
115
116    switch (keylength) {
117    case 512:
118      if (rsa_512)
119        rsa_tmp = rsa_512;
120      else { /* generate on the fly, should not happen in this example */
121        rsa_tmp = RSA_generate_key(keylength,RSA_F4,NULL,NULL);
122        rsa_512 = rsa_tmp; /* Remember for later reuse */
123      }
124      break;
125    case 1024:
126      if (rsa_1024)
127        rsa_tmp=rsa_1024;
128      else
129        should_not_happen_in_this_example();
130      break;
131    default:
132      /* Generating a key on the fly is very costly, so use what is there */
133      if (rsa_1024)
134        rsa_tmp=rsa_1024;
135      else
136        rsa_tmp=rsa_512; /* Use at least a shorter key */
137    }
138    return(rsa_tmp);
139 }
140
141=head1 RETURN VALUES
142
143SSL_CTX_set_tmp_rsa_callback() and SSL_set_tmp_rsa_callback() do not return
144diagnostic output.
145
146SSL_CTX_set_tmp_rsa() and SSL_set_tmp_rsa() do return 1 on success and 0
147on failure. Check the error queue to find out the reason of failure.
148
149SSL_CTX_need_tmp_rsa() and SSL_need_tmp_rsa() return 1 if a temporary
150RSA key is needed and 0 otherwise.
151
152=head1 SEE ALSO
153
154L<ssl(3)|ssl(3)>, L<SSL_CTX_set_cipher_list(3)|SSL_CTX_set_cipher_list(3)>,
155L<SSL_CTX_set_options(3)|SSL_CTX_set_options(3)>,
156L<SSL_CTX_set_tmp_dh_callback(3)|SSL_CTX_set_tmp_dh_callback(3)>,
157L<SSL_new(3)|SSL_new(3)>, L<ciphers(1)|ciphers(1)>
158
159=cut
160