HomeSort by relevance Sort by last modified time
    Searched refs:bn_exp (Results 1 - 18 of 18) 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 319 BIGNUM *bn_base, *bn_exp, *bn_modulus, *bn_result; local
328 bn_exp = BN_bin2bn(power, power_len, NULL);
332 if (bn_base == NULL || bn_exp == NULL || bn_modulus == NULL ||
336 if (BN_mod_exp(bn_result, bn_base, bn_exp, bn_modulus, ctx) != 1)
344 BN_clear_free(bn_exp);
  /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/openssl/
Crypto-config-trusty.mk 61 crypto/bn/bn_exp.c \
Crypto-config-host.mk 138 crypto/bn/bn_exp.c \
Crypto-config-target.mk 138 crypto/bn/bn_exp.c \
  /external/chromium_org/third_party/openssl/openssl/
Crypto-config.mk 149 crypto/bn/bn_exp.c \
  /external/chromium_org/third_party/openssl/
openssl.target.darwin-arm.mk 153 third_party/openssl/openssl/crypto/bn/bn_exp.c \
    [all...]
openssl.target.darwin-arm64.mk 154 third_party/openssl/openssl/crypto/bn/bn_exp.c \
    [all...]
openssl.target.darwin-mips.mk 152 third_party/openssl/openssl/crypto/bn/bn_exp.c \
    [all...]
openssl.target.darwin-x86.mk 149 third_party/openssl/openssl/crypto/bn/bn_exp.c \
    [all...]
openssl.target.darwin-x86_64.mk 150 third_party/openssl/openssl/crypto/bn/bn_exp.c \
    [all...]
openssl.target.linux-arm.mk 153 third_party/openssl/openssl/crypto/bn/bn_exp.c \
    [all...]
openssl.target.linux-arm64.mk 154 third_party/openssl/openssl/crypto/bn/bn_exp.c \
    [all...]
openssl.target.linux-mips.mk 152 third_party/openssl/openssl/crypto/bn/bn_exp.c \
    [all...]
openssl.target.linux-x86.mk 149 third_party/openssl/openssl/crypto/bn/bn_exp.c \
    [all...]
openssl.target.linux-x86_64.mk 150 third_party/openssl/openssl/crypto/bn/bn_exp.c \
    [all...]

Completed in 531 milliseconds