Searched refs:BUFSIZ (Results 1 – 6 of 6) sorted by relevance
/openssl-master/crypto/evp/ |
A D | evp_key.c | 17 #ifndef BUFSIZ 18 # define BUFSIZ 256 macro 56 char buff[BUFSIZ]; in EVP_read_pw_string_min() 65 (len >= BUFSIZ) ? BUFSIZ - 1 : len) < 0 in EVP_read_pw_string_min() 68 (len >= BUFSIZ) ? BUFSIZ - 1 : len, in EVP_read_pw_string_min() 72 OPENSSL_cleanse(buff, BUFSIZ); in EVP_read_pw_string_min()
|
/openssl-master/crypto/ui/ |
A D | ui_util.c | 15 #ifndef BUFSIZ 16 #define BUFSIZ 256 macro 22 char buff[BUFSIZ]; in UI_UTIL_read_pw_string() 26 UI_UTIL_read_pw(buf, buff, (length > BUFSIZ) ? BUFSIZ : length, in UI_UTIL_read_pw_string() 28 OPENSSL_cleanse(buff, BUFSIZ); in UI_UTIL_read_pw_string()
|
A D | ui_openssl.c | 280 char result[BUFSIZ]; in read_string_inner() 281 int maxsize = BUFSIZ - 1; in read_string_inner() 303 WCHAR wresult[BUFSIZ]; in read_string_inner() 368 OPENSSL_cleanse(result, BUFSIZ); in read_string_inner()
|
/openssl-master/apps/ |
A D | asn1parse.c | 191 if (!BUF_MEM_grow(buf, BUFSIZ * 8)) in asn1parse_main() 215 if (!BUF_MEM_grow(buf, num + BUFSIZ)) in asn1parse_main() 217 i = BIO_read(in, &(buf->data[num]), BUFSIZ); in asn1parse_main()
|
A D | passwd.c | 279 char trash[BUFSIZ]; in passwd_main()
|
A D | s_server.c | 2899 char buf[BUFSIZ]; in print_connection_info()
|
Completed in 14 milliseconds