/openssl/doc/man3/ |
H A D | SSL_CTX_set_default_passwd_cb.pod | 30 SSL_CTX_set_default_passwd_cb_userdata() sets a pointer to userdata, B<u>, 37 SSL_CTX_get_default_passwd_cb_userdata() returns a pointer to the userdata 38 currently set in B<ctx>. If no userdata was explicitly set, the NULL pointer 47 On invocation a pointer to userdata 63 password could be stored into the userdata storage and the 81 The following example returns the password provided as userdata to the
|
H A D | ERR_print_errors.pod | 27 B<cb>, is called for each error line with the string, length, and userdata
|
/openssl/crypto/ |
H A D | passphrase.c | 309 void *userdata, const char *info) in ossl_pw_get_password() argument 319 rwflag, userdata)) in ossl_pw_get_password() 324 int ossl_pw_pem_password(char *buf, int size, int rwflag, void *userdata) in ossl_pw_pem_password() argument 326 return ossl_pw_get_password(buf, size, rwflag, userdata, "PEM"); in ossl_pw_pem_password() 329 int ossl_pw_pvk_password(char *buf, int size, int rwflag, void *userdata) in ossl_pw_pvk_password() argument 331 return ossl_pw_get_password(buf, size, rwflag, userdata, "PVK"); in ossl_pw_pvk_password()
|
/openssl/test/ |
H A D | uitest.c | 21 static int test_pem_password_cb(char *buf, int size, int rwflag, void *userdata) in test_pem_password_cb() argument 23 OPENSSL_strlcpy(buf, (char *)userdata, (size_t)size); in test_pem_password_cb()
|
H A D | decoder_propq_test.c | 42 static int passcb(char *buf, int size, int rwflag, void *userdata) in passcb() argument
|
H A D | endecode_test.c | 437 static int pass_pw(char *buf, int size, int rwflag, void *userdata) in pass_pw() argument 439 OPENSSL_strlcpy(buf, userdata, size); in pass_pw() 440 return strlen(userdata); in pass_pw()
|
H A D | sslapitest.c | 672 static int get_password_cb(char *buf, int size, int rw_flag, void *userdata) in get_password_cb() argument
|
/openssl/crypto/pem/ |
H A D | pem_lib.c | 34 int PEM_def_callback(char *buf, int num, int rwflag, void *userdata) in PEM_def_callback() argument 40 if (userdata) { in PEM_def_callback() 41 i = strlen(userdata); in PEM_def_callback() 43 memcpy(buf, userdata, i); in PEM_def_callback()
|
H A D | pem_pkey.c | 369 static int no_password_cb(char *buf, int num, int rwflag, void *userdata) in no_password_cb() argument
|
/openssl/include/openssl/ |
H A D | types.h | 232 typedef int pem_password_cb (char *buf, int size, int rwflag, void *userdata); typedef
|
H A D | pem.h | 435 int PEM_def_callback(char *buf, int num, int rwflag, void *userdata);
|
H A D | ssl.h.in | 2551 * |arg| is arbitrary userdata that will be passed to the callback whenever it
|
/openssl/apps/lib/ |
H A D | apps.c | 204 int wrap_password_callback(char *buf, int bufsiz, int verify, void *userdata) in wrap_password_callback() argument 206 return password_callback(buf, bufsiz, verify, (PW_CB_DATA *)userdata); in wrap_password_callback()
|
/openssl/ |
H A D | CHANGES.md | 19053 ....(char *buf, int size, int rwflag, void *userdata);
|