Lines Matching refs:password
27 SSL_CTX_set_default_passwd_cb() sets the default password callback called
31 which will be provided to the password callback on invocation.
33 SSL_CTX_get_default_passwd_cb() returns a function pointer to the password
45 The password callback, which must be provided by the application, hands back the
46 password to be used during decryption.
48 is provided. The function must store the password into the provided buffer
49 B<buf> which is of size B<size>. The actual length of the password must
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
60 to have the callback handle the password dialog interactively. If several
61 keys have to be handled, it can be practical to ask for the password once,
63 password could be stored into the userdata storage and the
64 callback only returns the password already stored.
66 When asking for the password interactively, the callback can use
68 In this case the password dialog may ask for the same password twice
81 The following example returns the password provided as 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