HomeSort by relevance Sort by last modified time
    Searched full:bn_exp (Results 1 - 25 of 31) sorted by null

1 2

  /external/wpa_supplicant_8/src/crypto/
crypto_internal-modexp.c 21 struct bignum *bn_base, *bn_exp, *bn_modulus, *bn_result; local
25 bn_exp = bignum_init();
29 if (bn_base == NULL || bn_exp == NULL || bn_modulus == NULL ||
34 bignum_set_unsigned_bin(bn_exp, power, power_len) < 0 ||
38 if (bignum_exptmod(bn_base, bn_exp, bn_modulus, bn_result) < 0)
45 bignum_deinit(bn_exp);
crypto_gnutls.c 159 gcry_mpi_t bn_base = NULL, bn_exp = NULL, bn_modulus = NULL, local
165 gcry_mpi_scan(&bn_exp, GCRYMPI_FMT_USG, power, power_len, NULL) !=
172 gcry_mpi_powm(bn_result, bn_base, bn_exp, bn_modulus);
182 gcry_mpi_release(bn_exp);
crypto_openssl.c 317 BIGNUM *bn_base, *bn_exp, *bn_modulus, *bn_result; local
326 bn_exp = BN_bin2bn(power, power_len, NULL);
330 if (bn_base == NULL || bn_exp == NULL || bn_modulus == NULL ||
334 if (BN_mod_exp(bn_result, bn_base, bn_exp, bn_modulus, ctx) != 1)
342 BN_free(bn_exp);
  /libcore/luni/src/main/java/java/math/
NativeBN.java 106 public static native void BN_exp(long r, long a, long p);
107 // int BN_exp(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, BN_CTX *ctx);
BigInt.java 286 NativeBN.BN_exp(r.bignum, a.bignum, p.bignum);
  /hardware/samsung_slsi/exynos5/libkeymaster/
keymaster_mobicore.cpp 272 Unique_BIGNUM bn_exp(BN_new());
273 if (bn_exp.get() == NULL) {
279 BN_bin2bn(binExpPtr.get(), bin_exp_len, bn_exp.get());
291 rsa_tmp->e = bn_exp.release();
  /external/chromium_org/third_party/openssl/openssl/crypto/bn/
bn_err.c 87 {ERR_FUNC(BN_F_BN_EXP), "BN_exp"},
bntest.c 254 message(out,"BN_exp");
947 BN_exp(e,a,b,ctx);
998 BN_exp(e,a,b,ctx);
1032 if (BN_exp(d,a,b,ctx) <= 0)
    [all...]
bn_exp.c 1 /* crypto/bn/bn_exp.c */
132 int BN_exp(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, BN_CTX *ctx)
bn.h 496 int BN_exp(BIGNUM *r, const BIGNUM *a, const BIGNUM *p,BN_CTX *ctx);
    [all...]
  /external/openssl/crypto/bn/
bn_err.c 87 {ERR_FUNC(BN_F_BN_EXP), "BN_exp"},
bntest.c 254 message(out,"BN_exp");
947 BN_exp(e,a,b,ctx);
998 BN_exp(e,a,b,ctx);
1032 if (BN_exp(d,a,b,ctx) <= 0)
    [all...]
bn_exp.c 1 /* crypto/bn/bn_exp.c */
132 int BN_exp(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, BN_CTX *ctx)
  /libcore/luni/src/main/native/
java_math_NativeBN.cpp 490 BN_exp(toBigNum(r), toBigNum(a), toBigNum(p), ctx.get());
547 NATIVE_METHOD(NativeBN, BN_exp, "(JJJ)V"),
  /external/chromium_org/third_party/openssl/openssl/
Crypto-config.mk 149 crypto/bn/bn_exp.c \
openssl.config 413 crypto/bn/bn_exp.c \
openssl.config.orig 413 crypto/bn/bn_exp.c \
  /external/chromium_org/third_party/openssl/
openssl.gypi 135 'openssl/crypto/bn/bn_exp.c',
openssl.target.darwin-arm.mk 152 third_party/openssl/openssl/crypto/bn/bn_exp.c \
    [all...]
openssl.target.darwin-mips.mk 151 third_party/openssl/openssl/crypto/bn/bn_exp.c \
    [all...]
openssl.target.darwin-x86.mk 148 third_party/openssl/openssl/crypto/bn/bn_exp.c \
    [all...]
  /external/openssl/
Crypto-config.mk 149 crypto/bn/bn_exp.c \
openssl.config 414 crypto/bn/bn_exp.c \
  /external/chromium_org/third_party/openssl/openssl/crypto/bn/asm/
x86_64-mont5.pl 18 # bn_exp.c modifications.
  /external/chromium_org/third_party/openssl/openssl/include/openssl/
bn.h 496 int BN_exp(BIGNUM *r, const BIGNUM *a, const BIGNUM *p,BN_CTX *ctx);
    [all...]

Completed in 424 milliseconds

1 2