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

  /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 451 BIGNUM *bn_base, *bn_exp, *bn_modulus, *bn_result; local
460 bn_exp = BN_bin2bn(power, power_len, NULL);
464 if (bn_base == NULL || bn_exp == NULL || bn_modulus == NULL ||
468 if (BN_mod_exp(bn_result, bn_base, bn_exp, bn_modulus, ctx) != 1)
476 BN_clear_free(bn_exp);
  /external/vboot_reference/host/lib/
util_misc.c 84 BN_exp(B, Big2, Big32, bn_ctx); /* B = 2^32 */
95 BN_exp(R, Big2, NnumBits, bn_ctx);
  /external/vboot_reference/utility/
dumpRSAPublicKey.c 78 BN_exp(B, Big2, Big32, bn_ctx); /* B = 2^32 */
89 BN_exp(R, Big2, NnumBits, bn_ctx);
  /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 282 NativeBN.BN_exp(r.bignum, a.bignum, p.bignum);
  /libcore/luni/src/main/native/
java_math_NativeBN.cpp 534 BN_exp(toBigNum(r), toBigNum(a), toBigNum(p), ctx.get());
591 NATIVE_METHOD(NativeBN, BN_exp, "(JJJ)V"),
  /external/boringssl/src/crypto/bn/
bn_test.cc 294 message(bc_file.get(), "BN_exp");
1107 if (!BN_exp(e.get(), a.get(), b.get(), ctx) ||
1193 if (!BN_exp(e.get(), a.get(), b.get(), ctx) |
    [all...]
exponentiation.c 139 int BN_exp(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, BN_CTX *ctx) {
    [all...]
  /external/boringssl/src/include/openssl/
bn.h     [all...]
  /external/boringssl/src/crypto/bn/asm/
x86_64-mont5.pl 18 # bn_exp.c modifications.
397 # (see bn_exp.c). this is done to allow memory disambiguation
948 # (see bn_exp.c). this is done to allow memory disambiguation
    [all...]
  /prebuilts/android-emulator/linux-x86_64/
emulator-arm 
emulator-mips 
emulator-x86 

Completed in 4533 milliseconds