Home
last modified time | relevance | path

Searched refs:der_buf (Results 1 – 2 of 2) sorted by relevance

/freebsd/crypto/openssl/crypto/asn1/
H A Da_strex.c264 unsigned char *der_buf, *p; in do_dump() local
281 if ((der_buf = OPENSSL_malloc(der_len)) == NULL) in do_dump()
283 p = der_buf; in do_dump()
285 outlen = do_hex_dump(io_ch, arg, der_buf, der_len); in do_dump()
286 OPENSSL_free(der_buf); in do_dump()
/freebsd/crypto/openssl/providers/implementations/kdfs/
H A Dx942kdf.c211 unsigned char *pcounter = NULL, *der_buf = NULL; in x942_encode_otherinfo() local
231 der_buf = OPENSSL_zalloc(der_buflen); in x942_encode_otherinfo()
232 if (der_buf == NULL) in x942_encode_otherinfo()
235 if (!der_encode_sharedinfo(&pkt, der_buf, der_buflen, cek_oid, cek_oid_len, in x942_encode_otherinfo()
245 if (WPACKET_get_curr(&pkt) != der_buf) in x942_encode_otherinfo()
259 *der = der_buf; in x942_encode_otherinfo()