OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:BN_exp
(Results
1 - 3
of
3
) sorted by null
/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/
bn_exp.c
1
/* crypto/bn/
bn_exp
.c */
120
int
BN_exp
(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, BN_CTX *ctx)
/dalvik/libcore/math/src/main/java/java/math/
BigInt.java
325
Check(NativeBN.
BN_exp
(r.bignum, a.bignum, p.bignum, getCtx(t)));
Completed in 870 milliseconds