Searched refs:rwflag (Results 1 – 12 of 12) sorted by relevance
/openssl-master/crypto/ui/ |
A D | ui_util.c | 61 int rwflag; member 113 data->rwflag, UI_get0_user_data(ui)); in ui_read() 141 UI_METHOD *UI_UTIL_wrap_read_pem_callback(pem_password_cb *cb, int rwflag) in UI_UTIL_wrap_read_pem_callback() argument 158 data->rwflag = rwflag; in UI_UTIL_wrap_read_pem_callback()
|
/openssl-master/doc/man3/ |
A D | SSL_CTX_set_default_passwd_cb.pod | 50 be returned to the calling function. B<rwflag> indicates whether the 51 callback is used for reading/decryption (rwflag=0) or writing/encryption 52 (rwflag=1). 67 B<rwflag> to check, whether an item shall be encrypted (rwflag=1). 86 int my_cb(char *buf, int size, int rwflag, void *u)
|
A D | UI_UTIL_read_pw.pod | 16 UI_METHOD *UI_UTIL_wrap_read_pem_callback(pem_password_cb *cb, int rwflag); 32 B<rwflag> is used to specify if this method will be used for
|
A D | PEM_read_bio_PrivateKey.pod | 40 typedef int pem_password_cb(char *buf, int size, int rwflag, void *u); 340 int cb(char *buf, int size, int rwflag, void *u); 343 length of the passphrase (i.e. the size of buf). I<rwflag> is a flag 346 for it twice) if I<rwflag> is 1. The I<u> parameter has the same 516 int pass_cb(char *buf, int size, int rwflag, void *u) 519 /* We'd probably do something else if 'rwflag' is 1 */
|
/openssl-master/test/ |
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
|
A D | endecode_test.c | 408 static int pass_pw(char *buf, int size, int rwflag, void *userdata) in pass_pw() argument
|
/openssl-master/crypto/ |
A D | passphrase.c | 299 int ossl_pw_pem_password(char *buf, int size, int rwflag, void *userdata) in ossl_pw_pem_password() argument 309 rwflag, userdata)) in ossl_pw_pem_password()
|
/openssl-master/include/openssl/ |
A D | types.h | 223 typedef int pem_password_cb (char *buf, int size, int rwflag, void *userdata);
|
A D | pem.h | 430 int PEM_def_callback(char *buf, int num, int rwflag, void *userdata);
|
A D | ui.h.in | 378 UI_METHOD *UI_UTIL_wrap_read_pem_callback(pem_password_cb *cb, int rwflag);
|
/openssl-master/crypto/pem/ |
A D | pem_lib.c | 34 int PEM_def_callback(char *buf, int num, int rwflag, void *userdata) in PEM_def_callback() argument 58 min_len = rwflag ? MIN_LENGTH : 0; in PEM_def_callback() 60 i = EVP_read_pw_string_min(buf, min_len, num, prompt, rwflag); in PEM_def_callback()
|
/openssl-master/ |
A D | CHANGES.md | 17112 typedef int pem_password_cb(char *buf, int size, int rwflag); 17114 ....(char *buf, int size, int rwflag, void *userdata);
|
Completed in 38 milliseconds