Symbol: BN_bin2bn
crypto/libressl/apps/openssl/testdsa.h
225
priv_key = BN_bin2bn(priv, priv_size, NULL);
crypto/libressl/apps/openssl/testdsa.h
226
pub_key = BN_bin2bn(pub, pub_size, NULL);
crypto/libressl/apps/openssl/testdsa.h
235
p = BN_bin2bn(p_char, p_size, NULL);
crypto/libressl/apps/openssl/testdsa.h
236
q = BN_bin2bn(q_char, q_size, NULL);
crypto/libressl/apps/openssl/testdsa.h
237
g = BN_bin2bn(g_char, g_size, NULL);
crypto/libressl/crypto/asn1/a_enum.c
214
if ((ret = BN_bin2bn(ai->data, ai->length, bn)) == NULL)
crypto/libressl/crypto/asn1/a_int.c
377
if ((ret = BN_bin2bn(ai->data, ai->length, bn)) == NULL)
crypto/libressl/crypto/bn/bn_const.c
141
return BN_bin2bn(RFC3526_PRIME_2048, sizeof(RFC3526_PRIME_2048), bn);
crypto/libressl/crypto/bn/bn_const.c
194
return BN_bin2bn(RFC3526_PRIME_3072, sizeof(RFC3526_PRIME_3072), bn);
crypto/libressl/crypto/bn/bn_const.c
258
return BN_bin2bn(RFC3526_PRIME_4096, sizeof(RFC3526_PRIME_4096), bn);
crypto/libressl/crypto/bn/bn_const.c
27
return BN_bin2bn(RFC2409_PRIME_768, sizeof(RFC2409_PRIME_768), bn);
crypto/libressl/crypto/bn/bn_const.c
343
return BN_bin2bn(RFC3526_PRIME_6144, sizeof(RFC3526_PRIME_6144), bn);
crypto/libressl/crypto/bn/bn_const.c
450
return BN_bin2bn(RFC3526_PRIME_8192, sizeof(RFC3526_PRIME_8192), bn);
crypto/libressl/crypto/bn/bn_const.c
60
return BN_bin2bn(RFC2409_PRIME_1024, sizeof(RFC2409_PRIME_1024), bn);
crypto/libressl/crypto/bn/bn_const.c
98
return BN_bin2bn(RFC3526_PRIME_1536, sizeof(RFC3526_PRIME_1536), bn);
crypto/libressl/crypto/bn/bn_rand.c
187
if (BN_bin2bn(buf, bytes, rnd) == NULL)
crypto/libressl/crypto/dsa/dsa_gen.c
209
if (!BN_bin2bn(md, qsize, q))
crypto/libressl/crypto/dsa/dsa_gen.c
255
if (!BN_bin2bn(md, qsize, r0))
crypto/libressl/crypto/dsa/dsa_ossl.c
129
if (BN_bin2bn(dgst, dlen, &m) == NULL)
crypto/libressl/crypto/dsa/dsa_ossl.c
367
if (BN_bin2bn(dgst, dgst_len, &u1) == NULL)
crypto/libressl/crypto/ec/ec2_oct.c
365
if (!BN_bin2bn(buf + 1, field_len, x))
crypto/libressl/crypto/ec/ec2_oct.c
379
if (!BN_bin2bn(buf + 1 + field_len, field_len, y))
crypto/libressl/crypto/ec/ec_asn1.c
1058
a = BN_bin2bn(params->curve->a->data, params->curve->a->length, NULL);
crypto/libressl/crypto/ec/ec_asn1.c
1063
b = BN_bin2bn(params->curve->b->data, params->curve->b->length, NULL);
crypto/libressl/crypto/ec/ec_asn1.c
1360
ret->priv_key = BN_bin2bn(
crypto/libressl/crypto/ec/ec_curve.c
3339
if (!(p = BN_bin2bn(params + 0 * param_len, param_len, NULL)) ||
crypto/libressl/crypto/ec/ec_curve.c
3340
!(a = BN_bin2bn(params + 1 * param_len, param_len, NULL)) ||
crypto/libressl/crypto/ec/ec_curve.c
3341
!(b = BN_bin2bn(params + 2 * param_len, param_len, NULL))) {
crypto/libressl/crypto/ec/ec_curve.c
3372
if (!(x = BN_bin2bn(params + 3 * param_len, param_len, NULL))
crypto/libressl/crypto/ec/ec_curve.c
3373
|| !(y = BN_bin2bn(params + 4 * param_len, param_len, NULL))) {
crypto/libressl/crypto/ec/ec_curve.c
3381
if (!(order = BN_bin2bn(params + 5 * param_len, param_len, NULL))
crypto/libressl/crypto/ec/ec_print.c
78
ret = BN_bin2bn(buf, buf_len, ret);
crypto/libressl/crypto/ec/ecp_oct.c
358
if (!BN_bin2bn(buf + 1, field_len, x))
crypto/libressl/crypto/ec/ecp_oct.c
372
if (!BN_bin2bn(buf + 1 + field_len, field_len, y))
crypto/libressl/crypto/ecdsa/ecs_ossl.c
98
if (!BN_bin2bn(dgst, dgst_len, ret)) {
crypto/libressl/crypto/gost/gostr341001.c
79
return BN_bin2bn(temp, len, bn);
crypto/libressl/crypto/gost/gostr341001_pmeth.c
80
BN_bin2bn(sig, siglen / 2, s->s);
crypto/libressl/crypto/gost/gostr341001_pmeth.c
81
BN_bin2bn(sig + siglen / 2, siglen / 2, s->r);
crypto/libressl/crypto/pem/pvkfmt.c
117
*r = BN_bin2bn(tmpbuf, nbyte, NULL);
crypto/libressl/crypto/rsa/rsa_eay.c
220
if (BN_bin2bn(buf, num, f) == NULL)
crypto/libressl/crypto/rsa/rsa_eay.c
397
if (BN_bin2bn(buf, num, f) == NULL)
crypto/libressl/crypto/rsa/rsa_eay.c
516
if (BN_bin2bn(from, (int)flen, f) == NULL)
crypto/libressl/crypto/rsa/rsa_eay.c
649
if (BN_bin2bn(from, flen, f) == NULL)
crypto/libressl/include/openssl/bn.h
375
BIGNUM *BN_bin2bn(const unsigned char *s, int len, BIGNUM *ret);
crypto/libressl/ssl/ssl_kex.c
178
if ((p = BN_bin2bn(CBS_data(&dh_p), CBS_len(&dh_p), NULL)) == NULL)
crypto/libressl/ssl/ssl_kex.c
180
if ((g = BN_bin2bn(CBS_data(&dh_g), CBS_len(&dh_g), NULL)) == NULL)
crypto/libressl/ssl/ssl_kex.c
219
if ((pub_key = BN_bin2bn(CBS_data(&dh_y), CBS_len(&dh_y),
crypto/openssh/kexdh.c
100
BN_bin2bn(kbuf, kout, shared_secret) == NULL) {
crypto/openssh/kexecdh.c
180
BN_bin2bn(kbuf, klen, shared_secret) == NULL) {
crypto/openssh/ssh-dss.c
378
if ((BN_bin2bn(sigblob, INTBLOB_LEN, sig_r) == NULL) ||
crypto/openssh/ssh-dss.c
379
(BN_bin2bn(sigblob + INTBLOB_LEN, INTBLOB_LEN, sig_s) == NULL)) {
crypto/openssh/ssh-keygen.c
470
if (BN_bin2bn(sshbuf_ptr(b), bytes, value) == NULL)
crypto/openssh/ssh-pkcs11.c
556
if ((r = BN_bin2bn(sig, bnlen, NULL)) == NULL ||
crypto/openssh/ssh-pkcs11.c
557
(s = BN_bin2bn(sig+bnlen, bnlen, NULL)) == NULL) {
crypto/openssh/ssh-pkcs11.c
883
rsa_n = BN_bin2bn(key_attr[1].pValue, key_attr[1].ulValueLen, NULL);
crypto/openssh/ssh-pkcs11.c
884
rsa_e = BN_bin2bn(key_attr[2].pValue, key_attr[2].ulValueLen, NULL);
crypto/openssh/sshbuf-getput-crypto.c
49
BN_bin2bn(d, len, v) == NULL) {