Home
last modified time | relevance | path

Searched refs:PEM_BUFSIZE (Results 1 – 9 of 9) sorted by relevance

/third_party/openssl/crypto/pem/
Dpem_pk8.c69 char buf[PEM_BUFSIZE]; in do_pk8pkey()
79 klen = PEM_def_callback(buf, PEM_BUFSIZE, 1, u); in do_pk8pkey()
81 klen = cb(buf, PEM_BUFSIZE, 1, u); in do_pk8pkey()
119 char psbuf[PEM_BUFSIZE]; in d2i_PKCS8PrivateKey_bio()
124 klen = cb(psbuf, PEM_BUFSIZE, 0, u); in d2i_PKCS8PrivateKey_bio()
126 klen = PEM_def_callback(psbuf, PEM_BUFSIZE, 0, u); in d2i_PKCS8PrivateKey_bio()
Dpem_lib.c80 BIO_snprintf(p, PEM_BUFSIZE - (size_t)(p - buf), "Proc-Type: 4,%s\n", str); in PEM_proc_type()
87 int j = PEM_BUFSIZE - (size_t)(p - buf), n; in PEM_dek_info()
316 char buf[PEM_BUFSIZE]; in PEM_ASN1_write_bio()
353 klen = PEM_def_callback(buf, PEM_BUFSIZE, 1, u); in PEM_ASN1_write_bio()
355 klen = (*callback) (buf, PEM_BUFSIZE, 1, u); in PEM_ASN1_write_bio()
376 OPENSSL_cleanse(buf, PEM_BUFSIZE); in PEM_ASN1_write_bio()
403 OPENSSL_cleanse(buf, PEM_BUFSIZE); in PEM_ASN1_write_bio()
417 char buf[PEM_BUFSIZE]; in PEM_do_header()
430 keylen = PEM_def_callback(buf, PEM_BUFSIZE, 0, u); in PEM_do_header()
432 keylen = callback(buf, PEM_BUFSIZE, 0, u); in PEM_do_header()
[all …]
Dpem_pkey.c55 char psbuf[PEM_BUFSIZE]; in PEM_read_bio_PrivateKey()
60 klen = cb(psbuf, PEM_BUFSIZE, 0, u); in PEM_read_bio_PrivateKey()
62 klen = PEM_def_callback(psbuf, PEM_BUFSIZE, 0, u); in PEM_read_bio_PrivateKey()
Dpvkfmt.c686 char psbuf[PEM_BUFSIZE]; in do_PVK_body()
689 inlen = cb(psbuf, PEM_BUFSIZE, 0, u); in do_PVK_body()
691 inlen = PEM_def_callback(psbuf, PEM_BUFSIZE, 0, u); in do_PVK_body()
827 char psbuf[PEM_BUFSIZE]; in i2b_PVK()
831 inlen = cb(psbuf, PEM_BUFSIZE, 1, u); in i2b_PVK()
833 inlen = PEM_def_callback(psbuf, PEM_BUFSIZE, 1, u); in i2b_PVK()
Dpem_info.c254 char buf[PEM_BUFSIZE]; in PEM_X509_INFO_write_bio()
335 OPENSSL_cleanse(buf, PEM_BUFSIZE); in PEM_X509_INFO_write_bio()
/third_party/openssl/crypto/ui/
Dui_util.c108 char result[PEM_BUFSIZE + 1]; in ui_read()
113 maxsize > PEM_BUFSIZE ? PEM_BUFSIZE : maxsize, in ui_read()
/third_party/openssl/crypto/store/
Dloader_file.c217 char tpass[PEM_BUFSIZE]; in try_decode_PKCS12()
228 if ((pass = file_get_pass(ui_method, tpass, PEM_BUFSIZE, in try_decode_PKCS12()
332 char kbuf[PEM_BUFSIZE]; in try_decode_PKCS8Encrypted()
358 if ((pass = file_get_pass(ui_method, kbuf, PEM_BUFSIZE, in try_decode_PKCS8Encrypted()
/third_party/openssl/include/openssl/
Dpem.h24 # define PEM_BUFSIZE 1024 macro
/third_party/openssl/apps/
Dapps.c560 char tpass[PEM_BUFSIZE]; in load_pkcs12()
574 len = pem_cb(tpass, PEM_BUFSIZE, 0, cb_data); in load_pkcs12()
579 if (len < PEM_BUFSIZE) in load_pkcs12()