HomeSort by relevance Sort by last modified time
    Searched full:bn_exp (Results 1 - 17 of 17) sorted by null

  /external/wpa_supplicant_6/wpa_supplicant/src/crypto/
crypto_gnutls.c 171 gcry_mpi_t bn_base = NULL, bn_exp = NULL, bn_modulus = NULL, local
177 gcry_mpi_scan(&bn_exp, GCRYMPI_FMT_USG, power, power_len, NULL) !=
184 gcry_mpi_powm(bn_result, bn_base, bn_exp, bn_modulus);
194 gcry_mpi_release(bn_exp);
crypto_openssl.c 217 BIGNUM *bn_base, *bn_exp, *bn_modulus, *bn_result; local
226 bn_exp = BN_bin2bn(power, power_len, NULL);
230 if (bn_base == NULL || bn_exp == NULL || bn_modulus == NULL ||
234 if (BN_mod_exp(bn_result, bn_base, bn_exp, bn_modulus, ctx) != 1)
242 BN_free(bn_exp);
crypto_internal.c 803 struct bignum *bn_base, *bn_exp, *bn_modulus, *bn_result; local
807 bn_exp = bignum_init();
811 if (bn_base == NULL || bn_exp == NULL || bn_modulus == NULL ||
816 bignum_set_unsigned_bin(bn_exp, power, power_len) < 0 ||
820 if (bignum_exptmod(bn_base, bn_exp, bn_modulus, bn_result) < 0)
827 bignum_deinit(bn_exp);
  /external/wpa_supplicant/
crypto_internal.c 635 struct bignum *bn_base, *bn_exp, *bn_modulus, *bn_result; local
639 bn_exp = bignum_init();
643 if (bn_base == NULL || bn_exp == NULL || bn_modulus == NULL ||
648 bignum_set_unsigned_bin(bn_exp, power, power_len) < 0 ||
652 if (bignum_exptmod(bn_base, bn_exp, bn_modulus, bn_result) < 0)
659 bignum_deinit(bn_exp);
  /dalvik/libcore/openssl/src/main/java/org/openssl/
NativeBN.java 138 public static native boolean BN_exp(int r, int a, int p, int ctx);
139 // int BN_exp(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, BN_CTX *ctx);
  /external/openssl/crypto/bn/
Makefile 27 LIBSRC= bn_add.c bn_div.c bn_exp.c bn_lib.c bn_ctx.c bn_mul.c bn_mod.c \
33 LIBOBJ= bn_add.o bn_div.o bn_exp.o bn_lib.o bn_ctx.o bn_mul.o bn_mod.o \
218 bn_exp.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
219 bn_exp.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
220 bn_exp.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
221 bn_exp.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
222 bn_exp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
223 bn_exp.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
224 bn_exp.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_exp.c bn_lcl.
    [all...]
bn_err.c 87 {ERR_FUNC(BN_F_BN_EXP), "BN_exp"},
bntest.c 254 message(out,"BN_exp");
945 BN_exp(e,a,b,ctx);
996 BN_exp(e,a,b,ctx);
1030 if (BN_exp(d,a,b,ctx) <= 0)
    [all...]
bn_exp.c 1 /* crypto/bn/bn_exp.c */
120 int BN_exp(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, BN_CTX *ctx)
bn.h 470 int BN_exp(BIGNUM *r, const BIGNUM *a, const BIGNUM *p,BN_CTX *ctx);
    [all...]
  /dalvik/libcore/openssl/src/main/native/
BNInterface.c 654 * public static native int BN_exp(int, int, int, int)
658 return BN_exp(r, a, p, ctx);
753 { "BN_exp", "(IIII)Z", (void*)NativeBN_BN_exp },
  /dalvik/libcore/math/src/main/java/java/math/
BigInt.java 325 Check(NativeBN.BN_exp(r.bignum, a.bignum, p.bignum, getCtx(t)));
  /external/openssl/crypto/
Android.mk 137 bn/bn_exp.c \
crypto-lib.com 196 $ LIB_BN = "bn_add,bn_div,bn_exp,bn_lib,bn_ctx,bn_mul,bn_mod,"+ -
    [all...]
  /external/openssl/patches/
crypto_Android.mk 137 bn/bn_exp.c \
  /external/openssl/include/openssl/
bn.h 470 int BN_exp(BIGNUM *r, const BIGNUM *a, const BIGNUM *p,BN_CTX *ctx);
    [all...]
  /prebuilt/linux-x86/toolchain/i686-unknown-linux-gnu-4.2.1/lib/gcc/i686-unknown-linux-gnu/4.2.1/include/openssl/
bn.h 458 int BN_exp(BIGNUM *r, const BIGNUM *a, const BIGNUM *p,BN_CTX *ctx);

Completed in 103 milliseconds