Searched refs:bn_modulus (Results 1 - 3 of 3) sorted by relevance

/freebsd-9.3-release/contrib/wpa/src/crypto/
H A Dcrypto_internal-modexp.c27 struct bignum *bn_base, *bn_exp, *bn_modulus, *bn_result; local
32 bn_modulus = bignum_init();
35 if (bn_base == NULL || bn_exp == NULL || bn_modulus == NULL ||
41 bignum_set_unsigned_bin(bn_modulus, modulus, modulus_len) < 0)
44 if (bignum_exptmod(bn_base, bn_exp, bn_modulus, bn_result) < 0)
52 bignum_deinit(bn_modulus);
H A Dcrypto_gnutls.c165 gcry_mpi_t bn_base = NULL, bn_exp = NULL, bn_modulus = NULL, local
173 gcry_mpi_scan(&bn_modulus, GCRYMPI_FMT_USG, modulus, modulus_len,
178 gcry_mpi_powm(bn_result, bn_base, bn_exp, bn_modulus);
189 gcry_mpi_release(bn_modulus);
H A Dcrypto_openssl.c267 BIGNUM *bn_base, *bn_exp, *bn_modulus, *bn_result; local
277 bn_modulus = BN_bin2bn(modulus, modulus_len, NULL);
280 if (bn_base == NULL || bn_exp == NULL || bn_modulus == NULL ||
284 if (BN_mod_exp(bn_result, bn_base, bn_exp, bn_modulus, ctx) != 1)
293 BN_free(bn_modulus);

Completed in 63 milliseconds