Add copyright to manpages
[openssl.git] / doc / ssl / SSL_CTX_set_default_passwd_cb.pod
1 =pod
2
3 =head1 NAME
4
5 SSL_CTX_set_default_passwd_cb, SSL_CTX_set_default_passwd_cb_userdata,
6 SSL_CTX_get_default_passwd_cb, SSL_CTX_get_default_passwd_cb_userdata,
7 SSL_set_default_passwd_cb, SSL_set_default_passwd_cb_userdata,
8 SSL_get_default_passwd_cb, SSL_get_default_passwd_cb_userdata - set or
9 get passwd callback for encrypted PEM file handling
10
11 =head1 SYNOPSIS
12
13  #include <openssl/ssl.h>
14
15  void SSL_CTX_set_default_passwd_cb(SSL_CTX *ctx, pem_password_cb *cb);
16  void SSL_CTX_set_default_passwd_cb_userdata(SSL_CTX *ctx, void *u);
17  pem_password_cb *SSL_CTX_get_default_passwd_cb(SSL_CTX *ctx);
18  void *SSL_CTX_get_default_passwd_cb_userdata(SSL_CTX *ctx);
19
20  void SSL_set_default_passwd_cb(SSL *s, pem_password_cb *cb);
21  void SSL_set_default_passwd_cb_userdata(SSL *s, void *u);
22  pem_password_cb *SSL_get_default_passwd_cb(SSL *s);
23  void *SSL_get_default_passwd_cb_userdata(SSL *s);
24
25  int pem_passwd_cb(char *buf, int size, int rwflag, void *userdata);
26
27 =head1 DESCRIPTION
28
29 SSL_CTX_set_default_passwd_cb() sets the default password callback called
30 when loading/storing a PEM certificate with encryption.
31
32 SSL_CTX_set_default_passwd_cb_userdata() sets a pointer to B<userdata> which
33 will be provided to the password callback on invocation.
34
35 SSL_CTX_get_default_passwd_cb() returns a function pointer to the password
36 callback currently set in B<ctx>. If no callback was explicitly set, the
37 NULL pointer is returned.
38
39 SSL_CTX_get_default_passwd_cb_userdata() returns a pointer to B<userdata>
40 currently set in B<ctx>. If no userdata was explicitly set, the NULL pointer
41 is returned.
42
43 SSL_set_default_passwd_cb(), SSL_set_default_passwd_cb_userdata(),
44 SSL_get_default_passwd_cb() and SSL_get_default_passwd_cb_userdata() perform
45 the same function as their SSL_CTX counterparts, but using an SSL object.
46
47 The pem_passwd_cb(), which must be provided by the application, hands back the
48 password to be used during decryption. On invocation a pointer to B<userdata>
49 is provided. The pem_passwd_cb must write the password into the provided buffer
50 B<buf> which is of size B<size>. The actual length of the password must
51 be returned to the calling function. B<rwflag> indicates whether the
52 callback is used for reading/decryption (rwflag=0) or writing/encryption
53 (rwflag=1).
54
55 =head1 NOTES
56
57 When loading or storing private keys, a password might be supplied to
58 protect the private key. The way this password can be supplied may depend
59 on the application. If only one private key is handled, it can be practical
60 to have pem_passwd_cb() handle the password dialog interactively. If several
61 keys have to be handled, it can be practical to ask for the password once,
62 then keep it in memory and use it several times. In the last case, the
63 password could be stored into the B<userdata> storage and the
64 pem_passwd_cb() only returns the password already stored.
65
66 When asking for the password interactively, pem_passwd_cb() can use
67 B<rwflag> to check, whether an item shall be encrypted (rwflag=1).
68 In this case the password dialog may ask for the same password twice
69 for comparison in order to catch typos, that would make decryption
70 impossible.
71
72 Other items in PEM formatting (certificates) can also be encrypted, it is
73 however not usual, as certificate information is considered public.
74
75 =head1 RETURN VALUES
76
77 These functions do not provide diagnostic information.
78
79 =head1 EXAMPLES
80
81 The following example returns the password provided as B<userdata> to the
82 calling function. The password is considered to be a '\0' terminated
83 string. If the password does not fit into the buffer, the password is
84 truncated.
85
86  int pem_passwd_cb(char *buf, int size, int rwflag, void *password)
87  {
88   strncpy(buf, (char *)(password), size);
89   buf[size - 1] = '\0';
90   return(strlen(buf));
91  }
92
93 =head1 HISTORY
94
95 SSL_CTX_get_default_passwd_cb(), SSL_CTX_get_default_passwd_cb_userdata(),
96 SSL_set_default_passwd_cb() and SSL_set_default_passwd_cb_userdata() were
97 first added to OpenSSL 1.1.0
98
99 =head1 SEE ALSO
100
101 L<ssl(3)>,
102 L<SSL_CTX_use_certificate(3)>
103
104 =cut
105
106 =head1 COPYRIGHT
107
108 Copyright 2000-2016 The OpenSSL Project Authors. All Rights Reserved.
109
110 Licensed under the OpenSSL license (the "License").  You may not use
111 this file except in compliance with the License.  You can obtain a copy
112 in the file LICENSE in the source distribution or at
113 L<https://www.openssl.org/source/license.html>.
114
115 =cut