Home
last modified time | relevance | path

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

/dragonfly/crypto/libressl/crypto/pem/
H A Dpem_lib.c146 strlcat(buf, str, PEM_BUFSIZE); in PEM_proc_type()
147 strlcat(buf, "\n", PEM_BUFSIZE); in PEM_proc_type()
158 strlcat(buf, type, PEM_BUFSIZE); in PEM_dek_info()
159 strlcat(buf, ",", PEM_BUFSIZE); in PEM_dek_info()
161 if (j + (len * 2) + 1 > PEM_BUFSIZE) in PEM_dek_info()
353 char buf[PEM_BUFSIZE]; in PEM_ASN1_write_bio()
437 explicit_bzero(buf, PEM_BUFSIZE); in PEM_ASN1_write_bio()
450 char buf[PEM_BUFSIZE]; in PEM_do_header()
625 n = (int)((len > (PEM_BUFSIZE * 5)) ? (PEM_BUFSIZE * 5) : len); in PEM_write_bio()
637 freezero(buf, PEM_BUFSIZE * 8); in PEM_write_bio()
[all …]
H A Dpem_pk8.c115 char buf[PEM_BUFSIZE]; in do_pk8pkey()
125 klen = PEM_def_callback(buf, PEM_BUFSIZE, 1, u); in do_pk8pkey()
127 klen = cb(buf, PEM_BUFSIZE, 1, u); in do_pk8pkey()
163 char psbuf[PEM_BUFSIZE]; in d2i_PKCS8PrivateKey_bio()
169 klen = cb(psbuf, PEM_BUFSIZE, 0, u); in d2i_PKCS8PrivateKey_bio()
171 klen = PEM_def_callback(psbuf, PEM_BUFSIZE, 0, u); in d2i_PKCS8PrivateKey_bio()
H A Dpem_pkey.c111 char psbuf[PEM_BUFSIZE]; in PEM_read_bio_PrivateKey()
116 klen = cb(psbuf, PEM_BUFSIZE, 0, u); in PEM_read_bio_PrivateKey()
118 klen = PEM_def_callback(psbuf, PEM_BUFSIZE, 0, u); in PEM_read_bio_PrivateKey()
H A Dpvkfmt.c736 char psbuf[PEM_BUFSIZE]; in do_PVK_body()
741 inlen = cb(psbuf, PEM_BUFSIZE, 0, u); in do_PVK_body()
743 inlen = PEM_def_callback(psbuf, PEM_BUFSIZE, 0, u); in do_PVK_body()
881 char psbuf[PEM_BUFSIZE]; in i2b_PVK()
885 inlen = cb(psbuf, PEM_BUFSIZE, 1, u); in i2b_PVK()
887 inlen = PEM_def_callback(psbuf, PEM_BUFSIZE, 1, u); in i2b_PVK()
H A Dpem_info.c302 char buf[PEM_BUFSIZE]; in PEM_X509_INFO_write_bio()
382 explicit_bzero(buf, PEM_BUFSIZE); in PEM_X509_INFO_write_bio()
/dragonfly/crypto/libressl/apps/openssl/
H A Dapps.c545 char tpass[PEM_BUFSIZE]; in load_pkcs12()
560 len = pem_cb(tpass, PEM_BUFSIZE, 0, cb_data); in load_pkcs12()
566 if (len < PEM_BUFSIZE) in load_pkcs12()
/dragonfly/crypto/libressl/include/openssl/
H A Dpem.h78 #define PEM_BUFSIZE 1024 macro