Searched refs:bn_exp (Results 1 – 22 of 22) sorted by relevance
/external/wpa_supplicant_8/src/crypto/ |
D | crypto_internal-modexp.c | 21 struct bignum *bn_base, *bn_exp, *bn_modulus, *bn_result; in crypto_mod_exp() local 25 bn_exp = bignum_init(); in crypto_mod_exp() 29 if (bn_base == NULL || bn_exp == NULL || bn_modulus == NULL || in crypto_mod_exp() 34 bignum_set_unsigned_bin(bn_exp, power, power_len) < 0 || in crypto_mod_exp() 38 if (bignum_exptmod(bn_base, bn_exp, bn_modulus, bn_result) < 0) in crypto_mod_exp() 45 bignum_deinit(bn_exp); in crypto_mod_exp()
|
D | crypto_gnutls.c | 159 gcry_mpi_t bn_base = NULL, bn_exp = NULL, bn_modulus = NULL, in crypto_mod_exp() local 165 gcry_mpi_scan(&bn_exp, GCRYMPI_FMT_USG, power, power_len, NULL) != in crypto_mod_exp() 172 gcry_mpi_powm(bn_result, bn_base, bn_exp, bn_modulus); in crypto_mod_exp() 182 gcry_mpi_release(bn_exp); in crypto_mod_exp()
|
D | crypto_openssl.c | 319 BIGNUM *bn_base, *bn_exp, *bn_modulus, *bn_result; in crypto_mod_exp() local 328 bn_exp = BN_bin2bn(power, power_len, NULL); in crypto_mod_exp() 332 if (bn_base == NULL || bn_exp == NULL || bn_modulus == NULL || in crypto_mod_exp() 336 if (BN_mod_exp(bn_result, bn_base, bn_exp, bn_modulus, ctx) != 1) in crypto_mod_exp() 344 BN_clear_free(bn_exp); in crypto_mod_exp()
|
/external/openssl/ |
D | openssl.trusty.config | 124 crypto/bn/bn_exp.c \
|
D | Crypto-config-trusty.mk | 61 crypto/bn/bn_exp.c \
|
D | Crypto-config-target.mk | 138 crypto/bn/bn_exp.c \
|
D | Crypto-config-host.mk | 138 crypto/bn/bn_exp.c \
|
D | openssl.config | 445 crypto/bn/bn_exp.c \
|
/external/chromium_org/third_party/openssl/openssl/ |
D | Crypto-config.mk | 149 crypto/bn/bn_exp.c \
|
D | openssl.config.orig | 413 crypto/bn/bn_exp.c \
|
D | openssl.config | 429 crypto/bn/bn_exp.c \
|
/external/chromium_org/third_party/openssl/ |
D | openssl.gypi | 135 'openssl/crypto/bn/bn_exp.c',
|
D | openssl.target.darwin-arm64.mk | 154 third_party/openssl/openssl/crypto/bn/bn_exp.c \
|
D | openssl.target.darwin-mips.mk | 152 third_party/openssl/openssl/crypto/bn/bn_exp.c \
|
D | openssl.target.darwin-x86.mk | 149 third_party/openssl/openssl/crypto/bn/bn_exp.c \
|
D | openssl.target.darwin-x86_64.mk | 150 third_party/openssl/openssl/crypto/bn/bn_exp.c \
|
D | openssl.target.linux-x86_64.mk | 150 third_party/openssl/openssl/crypto/bn/bn_exp.c \
|
D | openssl.target.linux-arm.mk | 153 third_party/openssl/openssl/crypto/bn/bn_exp.c \
|
D | openssl.target.linux-x86.mk | 149 third_party/openssl/openssl/crypto/bn/bn_exp.c \
|
D | openssl.target.linux-arm64.mk | 154 third_party/openssl/openssl/crypto/bn/bn_exp.c \
|
D | openssl.target.darwin-arm.mk | 153 third_party/openssl/openssl/crypto/bn/bn_exp.c \
|
D | openssl.target.linux-mips.mk | 152 third_party/openssl/openssl/crypto/bn/bn_exp.c \
|