Symbol: BN_bn2bin
crypto/libressl/apps/openssl/dh.c
244
l = BN_bn2bin(DH_get0_p(dh), data);
crypto/libressl/apps/openssl/dh.c
253
l = BN_bn2bin(DH_get0_g(dh), data);
crypto/libressl/apps/openssl/dhparam.c
426
l = BN_bn2bin(DH_get0_p(dh), data);
crypto/libressl/apps/openssl/dhparam.c
435
l = BN_bn2bin(DH_get0_g(dh), data);
crypto/libressl/apps/openssl/dsaparam.c
269
l = BN_bn2bin(DSA_get0_p(dsa), data);
crypto/libressl/apps/openssl/dsaparam.c
278
l = BN_bn2bin(DSA_get0_q(dsa), data);
crypto/libressl/apps/openssl/dsaparam.c
287
l = BN_bn2bin(DSA_get0_g(dsa), data);
crypto/libressl/apps/openssl/ecparam.c
595
l = BN_bn2bin(in, buffer);
crypto/libressl/crypto/asn1/a_enum.c
194
ret->length = BN_bn2bin(bn, ret->data);
crypto/libressl/crypto/asn1/a_int.c
354
ret->length = BN_bn2bin(bn, ret->data);
crypto/libressl/crypto/asn1/t_pkey.c
95
n = BN_bn2bin(num, &buf[1]);
crypto/libressl/crypto/dh/dh_key.c
220
ret = BN_bn2bin(tmp, key);
crypto/libressl/crypto/ec/ec2_oct.c
249
skip = BN_bn2bin(x, buf + i);
crypto/libressl/crypto/ec/ec2_oct.c
266
skip = BN_bn2bin(y, buf + i);
crypto/libressl/crypto/ec/ec_asn1.c
1448
if (!BN_bn2bin(a->priv_key, buffer)) {
crypto/libressl/crypto/ec/ec_asn1.c
836
if ((len_1 = BN_bn2bin(tmp_1, buffer_1)) == 0) {
crypto/libressl/crypto/ec/ec_asn1.c
852
if ((len_2 = BN_bn2bin(tmp_2, buffer_2)) == 0) {
crypto/libressl/crypto/ec/ec_print.c
99
if (!BN_bn2bin(bn, buf)) {
crypto/libressl/crypto/ec/ecp_oct.c
268
skip = BN_bn2bin(x, buf + i);
crypto/libressl/crypto/ec/ecp_oct.c
284
skip = BN_bn2bin(y, buf + i);
crypto/libressl/crypto/ecdh/ech_key.c
166
if (len != (size_t)BN_bn2bin(x, buf + buflen - len)) {
crypto/libressl/crypto/gost/gostr341001.c
92
BN_bn2bin(bn, temp);
crypto/libressl/crypto/gost/gostr341001_pmeth.c
97
BN_bn2bin(s->s, sig + order - s_len);
crypto/libressl/crypto/gost/gostr341001_pmeth.c
98
BN_bn2bin(s->r, sig + 2 * order - r_len);
crypto/libressl/crypto/pem/pvkfmt.c
455
BN_bn2bin(bn, p);
crypto/libressl/crypto/rsa/rsa_eay.c
241
i = BN_bn2bin(ret, &(to[num - j]));
crypto/libressl/crypto/rsa/rsa_eay.c
462
i = BN_bn2bin(res, &(to[num - j]));
crypto/libressl/crypto/rsa/rsa_eay.c
569
j = BN_bn2bin(ret, p); /* j is only used with no-padding mode */
crypto/libressl/crypto/rsa/rsa_eay.c
671
i = BN_bn2bin(ret, p);
crypto/libressl/include/openssl/bn.h
376
int BN_bn2bin(const BIGNUM *a, unsigned char *to);
crypto/libressl/ssl/ssl_kex.c
119
if (BN_bn2bin(DH_get0_p(dh), data) != dh_p_len)
crypto/libressl/ssl/ssl_kex.c
126
if (BN_bn2bin(DH_get0_g(dh), data) != dh_g_len)
crypto/libressl/ssl/ssl_kex.c
149
if (BN_bn2bin(DH_get0_pub_key(dh), data) != dh_y_len)
crypto/openssh/ssh-dss.c
299
BN_bn2bin(sig_r, sigblob + SIGBLOB_LEN - INTBLOB_LEN - rlen);
crypto/openssh/ssh-dss.c
300
BN_bn2bin(sig_s, sigblob + SIGBLOB_LEN - slen);
crypto/openssh/sshbuf-getput-crypto.c
139
if (BN_bn2bin(v, d + 1) != len)