/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 | 475 BIGNUM *bn_base, *bn_exp, *bn_modulus, *bn_result; local 484 bn_exp = BN_bin2bn(power, power_len, NULL); 488 if (bn_base == NULL || bn_exp == NULL || bn_modulus == NULL || 492 if (BN_mod_exp(bn_result, bn_base, bn_exp, bn_modulus, ctx) != 1) 500 BN_clear_free(bn_exp); [all...] |
/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 | 468 if (!BN_exp(toBigNum(r), toBigNum(a), toBigNum(p), ctx.get())) { 538 NATIVE_METHOD(NativeBN, BN_exp, "(JJJ)V"),
|
/external/boringssl/src/include/openssl/ |
bn.h | [all...] |
/external/boringssl/src/crypto/bn/asm/ |
x86_64-mont5.pl | 18 # bn_exp.c modifications. 486 # (see bn_exp.c). This is done to allow memory disambiguation 1114 # (see bn_exp.c). This is done to allow memory disambiguation [all...] |
/device/linaro/bootloader/edk2/CryptoPkg/Library/OpensslLib/ |
OpensslLib.inf | 238 $(OPENSSL_PATH)/crypto/bn/bn_exp.c
|
/external/boringssl/src/crypto/bn/ |
exponentiation.c | 139 int BN_exp(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, BN_CTX *ctx) { [all...] |
bn_test.cc | 607 !BN_exp(ret.get(), a.get(), e.get(), ctx) || [all...] |
/prebuilts/abi-dumps/vndk/current/arm/source-based/ |
libcrypto.so.lsdump.gz | |
/prebuilts/abi-dumps/vndk/current/arm64/source-based/ |
libcrypto.so.lsdump.gz | |
/prebuilts/abi-dumps/vndk/current/mips/source-based/ |
libcrypto.so.lsdump.gz | |
/prebuilts/abi-dumps/vndk/current/mips64/source-based/ |
libcrypto.so.lsdump.gz | |
/prebuilts/abi-dumps/vndk/current/x86/source-based/ |
libcrypto.so.lsdump.gz | |
/prebuilts/abi-dumps/vndk/current/x86_64/source-based/ |
libcrypto.so.lsdump.gz | |