HomeSort by: relevance | last modified time | path
    Searched defs:bn_base (Results 1 - 4 of 4) sorted by relevancy

  /src/external/bsd/wpa/dist/src/crypto/
crypto_internal-modexp.c 94 struct bignum *bn_base, *bn_exp, *bn_modulus, *bn_result; local
97 bn_base = bignum_init();
102 if (bn_base == NULL || bn_exp == NULL || bn_modulus == NULL ||
106 if (bignum_set_unsigned_bin(bn_base, base, base_len) < 0 ||
111 if (bignum_exptmod(bn_base, bn_exp, bn_modulus, bn_result) < 0)
117 bignum_deinit(bn_base);
crypto_gnutls.c 366 gcry_mpi_t bn_base = NULL, bn_exp = NULL, bn_modulus = NULL, local
370 if (gcry_mpi_scan(&bn_base, GCRYMPI_FMT_USG, base, base_len, NULL) !=
379 gcry_mpi_powm(bn_result, bn_base, bn_exp, bn_modulus);
388 gcry_mpi_release(bn_base);
crypto_nettle.c 380 mpz_t bn_base, bn_exp, bn_modulus, bn_result; local
384 mpz_inits(bn_base, bn_exp, bn_modulus, bn_result, NULL);
385 mpz_import(bn_base, base_len, 1, 1, 1, 0, base);
389 mpz_powm(bn_result, bn_base, bn_exp, bn_modulus);
398 mpz_clears(bn_base, bn_exp, bn_modulus, bn_result, NULL);
crypto_openssl.c 814 BIGNUM *bn_base, *bn_exp, *bn_modulus, *bn_result; local
822 bn_base = BN_bin2bn(base, base_len, NULL);
827 if (bn_base == NULL || bn_exp == NULL || bn_modulus == NULL ||
831 if (BN_mod_exp_mont_consttime(bn_result, bn_base, bn_exp, bn_modulus,
839 BN_clear_free(bn_base);

Completed in 34 milliseconds