HomeSort by relevance Sort by last modified time
    Searched refs:BN_dup (Results 1 - 23 of 23) sorted by null

  /external/openssl/crypto/bn/
bn_blind.c 151 if ((ret->A = BN_dup(A)) == NULL) goto err;
155 if ((ret->Ai = BN_dup(Ai)) == NULL) goto err;
159 if ((ret->mod = BN_dup(mod)) == NULL) goto err;
323 ret->e = BN_dup(e);
bn_mod.c 240 abs_m = BN_dup(m);
bn_print.c 125 if ((t=BN_dup(a)) == NULL) goto err;
bn_lib.c 387 * The reason to use this instead of a BN_dup() followed by a bn_expand2()
388 * is memory allocation overhead. A BN_dup() followed by a bn_expand2()
402 * because BN_dup() does not preserve 'dmax'!
431 r = BN_dup(b);
479 BIGNUM *BN_dup(const BIGNUM *a)
bn.h 525 BIGNUM *BN_dup(const BIGNUM *a);
    [all...]
  /external/openssl/crypto/dsa/
dsa_lib.c 290 if ((ret->p = BN_dup(r->p)) == NULL)
295 if ((ret->g = BN_dup(r->g)) == NULL)
298 if ((ret->pub_key = BN_dup(r->pub_key)) == NULL)
301 if ((ret->priv_key = BN_dup(r->priv_key)) == NULL)
dsa_gen.c 325 ret->p=BN_dup(p);
326 ret->q=BN_dup(q);
327 ret->g=BN_dup(g);
dsa_ameth.c 378 if ((a=BN_dup(from->pkey.dsa->p)) == NULL)
384 if ((a=BN_dup(from->pkey.dsa->q)) == NULL)
390 if ((a=BN_dup(from->pkey.dsa->g)) == NULL)
  /external/openssl/crypto/dh/
dhtest.c 144 b->p=BN_dup(a->p);
145 b->g=BN_dup(a->g);
dh_ameth.c 414 if ((a=BN_dup(from->pkey.dh->p)) == NULL)
420 if ((a=BN_dup(from->pkey.dh->g)) == NULL)
  /external/openssl/crypto/jpake/
jpake.c 81 ctx->p.p = BN_dup(p);
82 ctx->p.g = BN_dup(g);
83 ctx->p.q = BN_dup(q);
84 ctx->secret = BN_dup(secret);
  /external/openssl/crypto/ec/
ecp_mont.c 181 dest->field_data2 = BN_dup(src->field_data2);
ec_key.c 396 key->priv_key = BN_dup(priv_key);
  /external/openssl/ssl/
ssl_cert.c 225 BIGNUM *b = BN_dup(cert->dh_tmp->priv_key);
235 BIGNUM *b = BN_dup(cert->dh_tmp->pub_key);
d1_srvr.c 986 dh->pub_key=BN_dup(dhp->pub_key);
987 dh->priv_key=BN_dup(dhp->priv_key);
    [all...]
s3_srvr.c     [all...]
  /external/openssl/crypto/rsa/
rsa_pmeth.c 119 dctx->pub_exp = BN_dup(sctx->pub_exp);
  /external/wpa_supplicant/
tls_openssl.c 442 rsa->n = BN_dup(pub_rsa->n);
443 rsa->e = BN_dup(pub_rsa->e);
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/crypto/
tls_openssl.c 395 rsa->n = BN_dup(pub_rsa->n);
396 rsa->e = BN_dup(pub_rsa->e);
    [all...]
  /external/openssl/include/openssl/
bn.h 525 BIGNUM *BN_dup(const BIGNUM *a);
    [all...]
  /prebuilt/linux-x86/toolchain/i686-unknown-linux-gnu-4.2.1/lib/gcc/i686-unknown-linux-gnu/4.2.1/include/openssl/
bn.h 487 BIGNUM *BN_dup(const BIGNUM *a);
  /external/wpa_supplicant_8/src/crypto/
tls_openssl.c 402 rsa->n = BN_dup(pub_rsa->n);
403 rsa->e = BN_dup(pub_rsa->e);
    [all...]
  /external/openssl/crypto/store/
str_lib.c     [all...]

Completed in 760 milliseconds