Symbol: BN_bin2bn
lib/libcrypto/asn1/a_enum.c
222
if ((ret = BN_bin2bn(ai->data, ai->length, bn)) == NULL)
lib/libcrypto/asn1/a_int.c
389
if ((ret = BN_bin2bn(ai->data, ai->length, bn)) == NULL)
lib/libcrypto/bn/bn.h
296
BIGNUM *BN_bin2bn(const unsigned char *s, int len, BIGNUM *ret);
lib/libcrypto/bn/bn_const.c
134
return BN_bin2bn(RFC3526_PRIME_2048, sizeof(RFC3526_PRIME_2048), bn);
lib/libcrypto/bn/bn_const.c
184
return BN_bin2bn(RFC3526_PRIME_3072, sizeof(RFC3526_PRIME_3072), bn);
lib/libcrypto/bn/bn_const.c
245
return BN_bin2bn(RFC3526_PRIME_4096, sizeof(RFC3526_PRIME_4096), bn);
lib/libcrypto/bn/bn_const.c
29
return BN_bin2bn(RFC2409_PRIME_768, sizeof(RFC2409_PRIME_768), bn);
lib/libcrypto/bn/bn_const.c
327
return BN_bin2bn(RFC3526_PRIME_6144, sizeof(RFC3526_PRIME_6144), bn);
lib/libcrypto/bn/bn_const.c
431
return BN_bin2bn(RFC3526_PRIME_8192, sizeof(RFC3526_PRIME_8192), bn);
lib/libcrypto/bn/bn_const.c
463
return BN_bin2bn(RFC7919_PRIME_2048, sizeof(RFC7919_PRIME_2048), bn);
lib/libcrypto/bn/bn_const.c
504
return BN_bin2bn(RFC7919_PRIME_3072, sizeof(RFC7919_PRIME_3072), bn);
lib/libcrypto/bn/bn_const.c
556
return BN_bin2bn(RFC7919_PRIME_4096, sizeof(RFC7919_PRIME_4096), bn);
lib/libcrypto/bn/bn_const.c
59
return BN_bin2bn(RFC2409_PRIME_1024, sizeof(RFC2409_PRIME_1024), bn);
lib/libcrypto/bn/bn_const.c
629
return BN_bin2bn(RFC7919_PRIME_6144, sizeof(RFC7919_PRIME_6144), bn);
lib/libcrypto/bn/bn_const.c
724
return BN_bin2bn(RFC7919_PRIME_8192, sizeof(RFC7919_PRIME_8192), bn);
lib/libcrypto/bn/bn_const.c
94
return BN_bin2bn(RFC3526_PRIME_1536, sizeof(RFC3526_PRIME_1536), bn);
lib/libcrypto/bn/bn_convert.c
219
LCRYPTO_ALIAS(BN_bin2bn);
lib/libcrypto/bn/bn_rand.c
191
if (BN_bin2bn(buf, bytes, rnd) == NULL)
lib/libcrypto/dsa/dsa_gen.c
211
if (!BN_bin2bn(md, qsize, q))
lib/libcrypto/dsa/dsa_gen.c
257
if (!BN_bin2bn(md, qsize, r0))
lib/libcrypto/dsa/dsa_ossl.c
124
if (BN_bin2bn(dgst, dlen, m) == NULL)
lib/libcrypto/dsa/dsa_ossl.c
350
if (BN_bin2bn(dgst, dgst_len, u1) == NULL)
lib/libcrypto/ec/ec_asn1.c
1183
if ((priv_key = BN_bin2bn(aos->data, aos->length, NULL)) == NULL)
lib/libcrypto/ec/ec_asn1.c
924
if ((a = BN_bin2bn(curve->a->data, curve->a->length, NULL)) == NULL)
lib/libcrypto/ec/ec_asn1.c
926
if ((b = BN_bin2bn(curve->b->data, curve->b->length, NULL)) == NULL)
lib/libcrypto/ec/ec_convert.c
209
if (!BN_bin2bn(CBS_data(&field_element), CBS_len(&field_element), bn)) {
lib/libcrypto/ec/ec_convert.c
505
if ((bn = BN_bin2bn(buf, buf_len, in_bn)) == NULL)
lib/libcrypto/ec/ec_curve.c
1210
if (BN_bin2bn(curve->p, curve->param_len, p) == NULL) {
lib/libcrypto/ec/ec_curve.c
1214
if (BN_bin2bn(curve->a, curve->param_len, a) == NULL) {
lib/libcrypto/ec/ec_curve.c
1218
if (BN_bin2bn(curve->b, curve->param_len, b) == NULL) {
lib/libcrypto/ec/ec_curve.c
1232
if (BN_bin2bn(curve->x, curve->param_len, x) == NULL) {
lib/libcrypto/ec/ec_curve.c
1236
if (BN_bin2bn(curve->y, curve->param_len, y) == NULL) {
lib/libcrypto/ec/ec_curve.c
1244
if (BN_bin2bn(curve->order, curve->param_len, order) == NULL) {
lib/libcrypto/ecdsa/ecdsa.c
207
if (BN_bin2bn(digest, digest_len, e) == NULL) {
lib/libcrypto/hidden/openssl/bn.h
60
LCRYPTO_USED(BN_bin2bn);
lib/libcrypto/pem/pvkfmt.c
117
*r = BN_bin2bn(tmpbuf, nbyte, NULL);
lib/libcrypto/rsa/rsa_eay.c
184
if (BN_bin2bn(buf, num, f) == NULL)
lib/libcrypto/rsa/rsa_eay.c
352
if (BN_bin2bn(buf, num, f) == NULL)
lib/libcrypto/rsa/rsa_eay.c
472
if (BN_bin2bn(from, (int)flen, f) == NULL)
lib/libcrypto/rsa/rsa_eay.c
606
if (BN_bin2bn(from, flen, f) == NULL)
lib/libcrypto/sm2/sm2_sign.c
400
if ((e = BN_bin2bn(dgst, dgstlen, NULL)) == NULL) {
lib/libcrypto/sm2/sm2_sign.c
451
if ((e = BN_bin2bn(dgst, dgstlen, NULL)) == NULL) {
lib/libcrypto/sm2/sm2_sign.c
80
e = BN_bin2bn(za, md_size, NULL);
lib/libfido2/src/es256.c
288
if (BN_bin2bn(k->x, sizeof(k->x), x) == NULL ||
lib/libfido2/src/es256.c
289
BN_bin2bn(k->y, sizeof(k->y), y) == NULL) {
lib/libfido2/src/es256.c
422
BN_bin2bn(k->d, sizeof(k->d), d) == NULL) {
lib/libfido2/src/es256.c
468
if ((d = BN_bin2bn(sk->d, (int)sizeof(sk->d), NULL)) == NULL ||
lib/libfido2/src/rs256.c
128
if (BN_bin2bn(k->n, sizeof(k->n), n) == NULL ||
lib/libfido2/src/rs256.c
129
BN_bin2bn(k->e, sizeof(k->e), e) == NULL) {
lib/libssl/ssl_kex.c
177
if ((p = BN_bin2bn(CBS_data(&dh_p), CBS_len(&dh_p), NULL)) == NULL)
lib/libssl/ssl_kex.c
179
if ((g = BN_bin2bn(CBS_data(&dh_g), CBS_len(&dh_g), NULL)) == NULL)
lib/libssl/ssl_kex.c
218
if ((pub_key = BN_bin2bn(CBS_data(&dh_y), CBS_len(&dh_y),
regress/lib/libcrypto/bn/bn_convert.c
468
if ((bn = BN_bin2bn(bct->bin, bct->bin_len, NULL)) == NULL) {
regress/lib/libcrypto/bn/bn_convert.c
781
if ((bn = BN_bin2bn(bct->bin, bct->bin_len, NULL)) == NULL) {
regress/lib/libcrypto/bn/bn_mont.c
53
priv_key = BN_bin2bn(r, privsz, NULL);
regress/lib/libcrypto/ec/ec_asn1_test.c
2510
if (BN_bin2bn(md, sizeof(md), out) == NULL)
regress/lib/libcrypto/ec/ec_asn1_test.c
2570
if (BN_bin2bn(seed, seed_len, seed_bn) == NULL)
regress/lib/libcrypto/ecdsa/ecdsatest.c
243
if ((r = BN_bin2bn(raw_buf, bn_len, NULL)) == NULL ||
regress/lib/libcrypto/ecdsa/ecdsatest.c
244
(s = BN_bin2bn(raw_buf + bn_len, bn_len, NULL)) == NULL)
regress/lib/libcrypto/ecdsa/ecdsatest.c
265
if ((r = BN_bin2bn(raw_buf, bn_len, NULL)) == NULL ||
regress/lib/libcrypto/ecdsa/ecdsatest.c
266
(s = BN_bin2bn(raw_buf + bn_len, bn_len, NULL)) == NULL)
regress/lib/libcrypto/rsa/rsa_test.c
101
bn_dmp1 = BN_bin2bn(dmp1, sizeof(dmp1) - 1, NULL);
regress/lib/libcrypto/rsa/rsa_test.c
102
bn_dmq1 = BN_bin2bn(dmq1, sizeof(dmq1) - 1, NULL);
regress/lib/libcrypto/rsa/rsa_test.c
103
bn_iqmp = BN_bin2bn(iqmp, sizeof(iqmp) - 1, NULL);
regress/lib/libcrypto/rsa/rsa_test.c
175
bn_n = BN_bin2bn(n, sizeof(n) - 1, NULL);
regress/lib/libcrypto/rsa/rsa_test.c
176
bn_e = BN_bin2bn(e, sizeof(e) - 1, NULL);
regress/lib/libcrypto/rsa/rsa_test.c
177
bn_d = BN_bin2bn(d, sizeof(d) - 1, NULL);
regress/lib/libcrypto/rsa/rsa_test.c
186
bn_p = BN_bin2bn(p, sizeof(p) - 1, NULL);
regress/lib/libcrypto/rsa/rsa_test.c
187
bn_q = BN_bin2bn(q, sizeof(q) - 1, NULL);
regress/lib/libcrypto/rsa/rsa_test.c
195
bn_dmp1 = BN_bin2bn(dmp1, sizeof(dmp1) - 1, NULL);
regress/lib/libcrypto/rsa/rsa_test.c
196
bn_dmq1 = BN_bin2bn(dmq1, sizeof(dmq1) - 1, NULL);
regress/lib/libcrypto/rsa/rsa_test.c
197
bn_iqmp = BN_bin2bn(iqmp, sizeof(iqmp) - 1, NULL);
regress/lib/libcrypto/rsa/rsa_test.c
296
bn_n = BN_bin2bn(n, sizeof(n) - 1, NULL);
regress/lib/libcrypto/rsa/rsa_test.c
297
bn_e = BN_bin2bn(e, sizeof(e) - 1, NULL);
regress/lib/libcrypto/rsa/rsa_test.c
298
bn_d = BN_bin2bn(d, sizeof(d) - 1, NULL);
regress/lib/libcrypto/rsa/rsa_test.c
307
bn_p = BN_bin2bn(p, sizeof(p) - 1, NULL);
regress/lib/libcrypto/rsa/rsa_test.c
308
bn_q = BN_bin2bn(q, sizeof(q) - 1, NULL);
regress/lib/libcrypto/rsa/rsa_test.c
316
bn_dmp1 = BN_bin2bn(dmp1, sizeof(dmp1) - 1, NULL);
regress/lib/libcrypto/rsa/rsa_test.c
317
bn_dmq1 = BN_bin2bn(dmq1, sizeof(dmq1) - 1, NULL);
regress/lib/libcrypto/rsa/rsa_test.c
318
bn_iqmp = BN_bin2bn(iqmp, sizeof(iqmp) - 1, NULL);
regress/lib/libcrypto/rsa/rsa_test.c
81
bn_n = BN_bin2bn(n, sizeof(n) - 1, NULL);
regress/lib/libcrypto/rsa/rsa_test.c
82
bn_e = BN_bin2bn(e, sizeof(e) - 1, NULL);
regress/lib/libcrypto/rsa/rsa_test.c
83
bn_d = BN_bin2bn(d, sizeof(d) - 1, NULL);
regress/lib/libcrypto/rsa/rsa_test.c
92
bn_p = BN_bin2bn(p, sizeof(p) - 1, NULL);
regress/lib/libcrypto/rsa/rsa_test.c
93
bn_q = BN_bin2bn(q, sizeof(q) - 1, NULL);
regress/lib/libssl/ssl/ssltest.c
1459
dh_p = BN_bin2bn(dh1024_p, sizeof(dh1024_p), NULL);
regress/lib/libssl/ssl/ssltest.c
1460
dh_g = BN_bin2bn(dh1024_g, sizeof(dh1024_g), NULL);
regress/lib/libssl/ssl/ssltest.c
1511
dh_p = BN_bin2bn(dh1024_p, sizeof(dh1024_p), NULL);
regress/lib/libssl/ssl/ssltest.c
1512
dh_g = BN_bin2bn(dh1024_g, sizeof(dh1024_g), NULL);
regress/usr.bin/ssh/misc/ssh-verify-attestation/ssh-verify-attestation.c
160
if (BN_bin2bn(ptr, 32, x) == NULL ||
regress/usr.bin/ssh/misc/ssh-verify-attestation/ssh-verify-attestation.c
161
BN_bin2bn(ptr + 32, 32, y) == NULL) {
sbin/iked/crypto.c
1157
(r = BN_bin2bn(*sigp, bnlen, NULL)) == NULL ||
sbin/iked/crypto.c
1158
(s = BN_bin2bn(*sigp+bnlen, bnlen, NULL)) == NULL ||
sbin/iked/dh.c
491
if ((ex = BN_bin2bn(exchange, len, NULL)) == NULL)
sbin/iked/dh.c
689
if ((x = BN_bin2bn(buf, xlen, x)) == NULL ||
sbin/iked/dh.c
690
(y = BN_bin2bn(buf + xlen, ylen, y)) == NULL)
sbin/isakmpd/dh.c
402
if ((ex = BN_bin2bn(exchange, len, NULL)) == NULL)
sbin/isakmpd/dh.c
600
if ((x = BN_bin2bn(buf, xlen, x)) == NULL ||
sbin/isakmpd/dh.c
601
(y = BN_bin2bn(buf + xlen, ylen, y)) == NULL)
sbin/isakmpd/dnssec.c
270
rsa->e = BN_bin2bn(key + key_offset, e_len, NULL);
sbin/isakmpd/dnssec.c
275
rsa->n = BN_bin2bn(key + key_offset, keylen - key_offset, NULL);
sbin/unwind/libunbound/sldns/keyraw.c
220
*q = BN_bin2bn(key+offset, SHA_DIGEST_LENGTH, NULL);
sbin/unwind/libunbound/sldns/keyraw.c
223
*p = BN_bin2bn(key+offset, (int)length, NULL);
sbin/unwind/libunbound/sldns/keyraw.c
226
*g = BN_bin2bn(key+offset, (int)length, NULL);
sbin/unwind/libunbound/sldns/keyraw.c
229
*y = BN_bin2bn(key+offset, (int)length, NULL);
sbin/unwind/libunbound/sldns/keyraw.c
405
(void) BN_bin2bn(key+offset, (int)exp, *e);
sbin/unwind/libunbound/sldns/keyraw.c
415
(void) BN_bin2bn(key+offset, (int)(len - offset), *n);
sbin/unwind/libunbound/validator/val_secalgo.c
418
(void) BN_bin2bn(orig + 1, SHA_DIGEST_LENGTH, R);
sbin/unwind/libunbound/validator/val_secalgo.c
421
(void) BN_bin2bn(orig + 21, SHA_DIGEST_LENGTH, S);
usr.bin/openssl/speed.c
270
priv_key = BN_bin2bn(priv, priv_size, NULL);
usr.bin/openssl/speed.c
271
pub_key = BN_bin2bn(pub, pub_size, NULL);
usr.bin/openssl/speed.c
280
p = BN_bin2bn(p_char, p_size, NULL);
usr.bin/openssl/speed.c
281
q = BN_bin2bn(q_char, q_size, NULL);
usr.bin/openssl/speed.c
282
g = BN_bin2bn(g_char, g_size, NULL);
usr.bin/ssh/kexdh.c
93
BN_bin2bn(kbuf, kout, shared_secret) == NULL) {
usr.bin/ssh/kexecdh.c
175
BN_bin2bn(kbuf, klen, shared_secret) == NULL) {
usr.bin/ssh/sk-usbhid.c
506
if (BN_bin2bn(ptr, 32, x) == NULL ||
usr.bin/ssh/sk-usbhid.c
507
BN_bin2bn(ptr + 32, 32, y) == NULL) {
usr.bin/ssh/ssh-keygen.c
426
if (BN_bin2bn(sshbuf_ptr(b), bytes, value) == NULL)
usr.bin/ssh/ssh-pkcs11.c
1038
rsa_n = BN_bin2bn(key_attr[1].pValue, key_attr[1].ulValueLen, NULL);
usr.bin/ssh/ssh-pkcs11.c
1039
rsa_e = BN_bin2bn(key_attr[2].pValue, key_attr[2].ulValueLen, NULL);
usr.bin/ssh/ssh-pkcs11.c
686
if ((sig_r = BN_bin2bn(sig, bnlen, NULL)) == NULL ||
usr.bin/ssh/ssh-pkcs11.c
687
(sig_s = BN_bin2bn(sig+bnlen, bnlen, NULL)) == NULL) {
usr.bin/ssh/sshbuf-getput-crypto.c
44
BN_bin2bn(d, len, v) == NULL) {
usr.sbin/unbound/sldns/keyraw.c
220
*q = BN_bin2bn(key+offset, SHA_DIGEST_LENGTH, NULL);
usr.sbin/unbound/sldns/keyraw.c
223
*p = BN_bin2bn(key+offset, (int)length, NULL);
usr.sbin/unbound/sldns/keyraw.c
226
*g = BN_bin2bn(key+offset, (int)length, NULL);
usr.sbin/unbound/sldns/keyraw.c
229
*y = BN_bin2bn(key+offset, (int)length, NULL);
usr.sbin/unbound/sldns/keyraw.c
405
(void) BN_bin2bn(key+offset, (int)exp, *e);
usr.sbin/unbound/sldns/keyraw.c
415
(void) BN_bin2bn(key+offset, (int)(len - offset), *n);
usr.sbin/unbound/validator/val_secalgo.c
418
(void) BN_bin2bn(orig + 1, SHA_DIGEST_LENGTH, R);
usr.sbin/unbound/validator/val_secalgo.c
421
(void) BN_bin2bn(orig + 21, SHA_DIGEST_LENGTH, S);