HomeSort by relevance Sort by last modified time
    Searched refs:BN_bin2bn (Results 1 - 25 of 44) sorted by null

1 2

  /external/openssl/crypto/rsa/
rsa_test.c 22 key->n = BN_bin2bn(n, sizeof(n)-1, key->n); \
23 key->e = BN_bin2bn(e, sizeof(e)-1, key->e); \
24 key->d = BN_bin2bn(d, sizeof(d)-1, key->d); \
25 key->p = BN_bin2bn(p, sizeof(p)-1, key->p); \
26 key->q = BN_bin2bn(q, sizeof(q)-1, key->q); \
27 key->dmp1 = BN_bin2bn(dmp1, sizeof(dmp1)-1, key->dmp1); \
28 key->dmq1 = BN_bin2bn(dmq1, sizeof(dmq1)-1, key->dmq1); \
29 key->iqmp = BN_bin2bn(iqmp, sizeof(iqmp)-1, key->iqmp); \
rsa_eay.c 217 if (BN_bin2bn(buf,num,f) == NULL) goto err;
389 if (BN_bin2bn(buf,num,f) == NULL) goto err;
513 if (BN_bin2bn(from,(int)flen,f) == NULL) goto err;
662 if (BN_bin2bn(from,flen,f) == NULL) goto err;
  /external/openssl/crypto/dh/
p192.c 76 dh->p=BN_bin2bn(data,sizeof(data),NULL);
p512.c 81 dh->p=BN_bin2bn(data,sizeof(data),NULL);
p1024.c 88 dh->p=BN_bin2bn(data,sizeof(data),NULL);
  /external/openssl/crypto/bn/
bn_mpi.c 120 if (BN_bin2bn(d,(int)len,a) == NULL)
bn_rand.c 199 if (!BN_bin2bn(buf,bytes,rnd)) goto err;
bn_const.c 26 return BN_bin2bn(RFC2409_PRIME_768,sizeof(RFC2409_PRIME_768),bn);
52 return BN_bin2bn(RFC2409_PRIME_1024,sizeof(RFC2409_PRIME_1024),bn);
83 return BN_bin2bn(RFC3526_PRIME_1536,sizeof(RFC3526_PRIME_1536),bn);
119 return BN_bin2bn(RFC3526_PRIME_2048,sizeof(RFC3526_PRIME_2048),bn);
165 return BN_bin2bn(RFC3526_PRIME_3072,sizeof(RFC3526_PRIME_3072),bn);
222 return BN_bin2bn(RFC3526_PRIME_4096,sizeof(RFC3526_PRIME_4096),bn);
300 return BN_bin2bn(RFC3526_PRIME_6144,sizeof(RFC3526_PRIME_6144),bn);
400 return BN_bin2bn(RFC3526_PRIME_8192,sizeof(RFC3526_PRIME_8192),bn);
  /external/openssl/apps/
testdsa.h 44 dsa->priv_key=BN_bin2bn(dsa512_priv,sizeof(dsa512_priv),NULL);
45 dsa->pub_key=BN_bin2bn(dsa512_pub,sizeof(dsa512_pub),NULL);
46 dsa->p=BN_bin2bn(dsa512_p,sizeof(dsa512_p),NULL);
47 dsa->q=BN_bin2bn(dsa512_q,sizeof(dsa512_q),NULL);
48 dsa->g=BN_bin2bn(dsa512_g,sizeof(dsa512_g),NULL);
108 dsa->priv_key=BN_bin2bn(dsa1024_priv,sizeof(dsa1024_priv),NULL);
109 dsa->pub_key=BN_bin2bn(dsa1024_pub,sizeof(dsa1024_pub),NULL);
110 dsa->p=BN_bin2bn(dsa1024_p,sizeof(dsa1024_p),NULL);
111 dsa->q=BN_bin2bn(dsa1024_q,sizeof(dsa1024_q),NULL);
112 dsa->g=BN_bin2bn(dsa1024_g,sizeof(dsa1024_g),NULL)
    [all...]
  /external/openssl/crypto/asn1/
x_bignum.c 132 if(!BN_bin2bn(cont, len, bn)) {
a_enum.c 178 if ((ret=BN_bin2bn(ai->data,ai->length,bn)) == NULL)
a_int.c 450 if ((ret=BN_bin2bn(ai->data,ai->length,bn)) == NULL)
  /libcore/luni/src/main/java/java/math/
NativeBN.java 53 public static native boolean BN_bin2bn(byte[] s, int len, boolean neg, int ret);
55 // BIGNUM * BN_bin2bn(const unsigned char *s, int len, BIGNUM *ret);
BigInt.java 208 Check(NativeBN.BN_bin2bn(a, a.length, neg, this.bignum));
  /external/wpa_supplicant_6/wpa_supplicant/src/crypto/
crypto_openssl.c 225 bn_base = BN_bin2bn(base, base_len, NULL);
226 bn_exp = BN_bin2bn(power, power_len, NULL);
227 bn_modulus = BN_bin2bn(modulus, modulus_len, NULL);
  /external/openssl/crypto/ec/
ec_print.c 82 ret = BN_bin2bn(buf, buf_len, ret);
  /external/openssl/crypto/dsa/
dsa_gen.c 212 if (!BN_bin2bn(md, qsize, q))
257 if (!BN_bin2bn(md, qsize, r0))
dsa_ossl.c 172 if (BN_bin2bn(dgst,dlen,&m) == NULL)
348 if (BN_bin2bn(dgst,dgst_len,&u1) == NULL) goto err;
  /external/openssl/crypto/pkcs12/
p12_key.c 177 if (!BN_bin2bn (B, v, Bpl1)) goto err;
180 if (!BN_bin2bn (I + j, v, Ij)) goto err;
  /external/wpa_supplicant_8/src/eap_common/
eap_pwd_common.c 184 BN_bin2bn(pwe_digest, SHA256_DIGEST_LENGTH, rnd);
191 BN_bin2bn(prfbuf, primebytelen, x_candidate);
  /external/wpa_supplicant_8/src/crypto/
crypto_openssl.c 58 return BN_bin2bn(RFC3526_PRIME_1536, sizeof(RFC3526_PRIME_1536), NULL);
275 bn_base = BN_bin2bn(base, base_len, NULL);
276 bn_exp = BN_bin2bn(power, power_len, NULL);
277 bn_modulus = BN_bin2bn(modulus, modulus_len, NULL);
473 pub_key = BN_bin2bn(wpabuf_head(peer_public), wpabuf_len(peer_public),
  /external/openssl/crypto/ecdsa/
ecs_ossl.c 268 if (!BN_bin2bn(dgst, dgst_len, m))
414 if (!BN_bin2bn(dgst, dgst_len, m))
  /external/openssl/ssl/
ssltest.c     [all...]
  /external/wpa_supplicant_8/src/eap_peer/
eap_pwd.c 325 BN_bin2bn(ptr, BN_num_bytes(data->grp->prime), x);
327 BN_bin2bn(ptr, BN_num_bytes(data->grp->prime), y);
329 BN_bin2bn(ptr, BN_num_bytes(data->grp->order), data->server_scalar);
  /external/wpa_supplicant_8/src/eap_server/
eap_server_pwd.c 535 BN_bin2bn(ptr, BN_num_bytes(data->grp->prime), x);
537 BN_bin2bn(ptr, BN_num_bytes(data->grp->prime), y);
539 BN_bin2bn(ptr, BN_num_bytes(data->grp->order), data->peer_scalar);

Completed in 570 milliseconds

1 2