Home
last modified time | relevance | path

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

/freebsd/crypto/openssl/crypto/pem/
H A Dpem_lib.c90 int j = PEM_BUFSIZE - (size_t)(p - buf), n; in PEM_dek_info()
321 char buf[PEM_BUFSIZE]; in PEM_ASN1_write_bio()
360 klen = (*callback) (buf, PEM_BUFSIZE, 1, u); in PEM_ASN1_write_bio()
382 OPENSSL_cleanse(buf, PEM_BUFSIZE); in PEM_ASN1_write_bio()
409 OPENSSL_cleanse(buf, PEM_BUFSIZE); in PEM_ASN1_write_bio()
423 char buf[PEM_BUFSIZE]; in PEM_do_header()
436 keylen = PEM_def_callback(buf, PEM_BUFSIZE, 0, u); in PEM_do_header()
438 keylen = callback(buf, PEM_BUFSIZE, 0, u); in PEM_do_header()
636 buf = OPENSSL_malloc(PEM_BUFSIZE * 8); in PEM_write_bio()
644 n = (int)((len > (PEM_BUFSIZE * 5)) ? (PEM_BUFSIZE * 5) : len); in PEM_write_bio()
[all …]
H A Dpem_pk8.c129 char buf[PEM_BUFSIZE]; in do_pk8pkey()
138 klen = cb(buf, PEM_BUFSIZE, 1, u); in do_pk8pkey()
176 char psbuf[PEM_BUFSIZE]; in d2i_PKCS8PrivateKey_bio()
182 klen = cb(psbuf, PEM_BUFSIZE, 0, u); in d2i_PKCS8PrivateKey_bio()
184 klen = PEM_def_callback(psbuf, PEM_BUFSIZE, 0, u); in d2i_PKCS8PrivateKey_bio()
H A Dpvkfmt.c843 char psbuf[PEM_BUFSIZE]; in do_PVK_body_key()
848 inlen = cb(psbuf, PEM_BUFSIZE, 0, u); in do_PVK_body_key()
850 inlen = PEM_def_callback(psbuf, PEM_BUFSIZE, 0, u); in do_PVK_body_key()
1055 char psbuf[PEM_BUFSIZE]; in i2b_PVK()
1059 inlen = cb(psbuf, PEM_BUFSIZE, 1, u); in i2b_PVK()
1061 inlen = PEM_def_callback(psbuf, PEM_BUFSIZE, 1, u); in i2b_PVK()
H A Dpem_pkey.c150 char psbuf[PEM_BUFSIZE]; in pem_read_bio_key_legacy()
155 klen = cb(psbuf, PEM_BUFSIZE, 0, u); in pem_read_bio_key_legacy()
157 klen = PEM_def_callback(psbuf, PEM_BUFSIZE, 0, u); in pem_read_bio_key_legacy()
H A Dpem_info.c231 char buf[PEM_BUFSIZE]; in PEM_X509_INFO_write_bio()
309 OPENSSL_cleanse(buf, PEM_BUFSIZE); in PEM_X509_INFO_write_bio()
/freebsd/crypto/openssl/crypto/ui/
H A Dui_util.c108 char result[PEM_BUFSIZE + 1]; in ui_read()
113 maxsize > PEM_BUFSIZE ? PEM_BUFSIZE : maxsize, in ui_read()
/freebsd/crypto/openssl/crypto/store/
H A Dstore_result.c337 char pbuf[PEM_BUFSIZE]; in try_key_value_legacy()
546 char tpass[PEM_BUFSIZE + 1]; in try_pkcs12()
/freebsd/crypto/openssl/engines/
H A De_loader_attic.c319 char tpass[PEM_BUFSIZE]; in try_decode_PKCS12()
331 if ((pass = file_get_pass(ui_method, tpass, PEM_BUFSIZE, in try_decode_PKCS12()
443 char kbuf[PEM_BUFSIZE]; in try_decode_PKCS8Encrypted()
468 if ((pass = file_get_pass(ui_method, kbuf, PEM_BUFSIZE, in try_decode_PKCS8Encrypted()
/freebsd/crypto/openssl/include/openssl/
H A Dpem.h30 # define PEM_BUFSIZE 1024 macro
/freebsd/crypto/openssl/providers/implementations/encode_decode/
H A Dencode_key2any.c107 char kstr[PEM_BUFSIZE]; in p8info_to_encp8()
/freebsd/crypto/openssl/test/
H A Dsslapitest.c676 if (!TEST_int_eq(size, PEM_BUFSIZE)) in get_password_cb()