OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:bnE
(Results
1 - 4
of
4
) sorted by null
/external/tpm2/
CpriRSA.c
41
BIGNUM *
bnE
;
52
bnE
= BN_CTX_get(context);
91
BN_set_word(
bnE
, key->exponent);
92
if(BN_mod_inverse(bnD,
bnE
, bnPhi, context) == NULL)
146
BIGNUM *
bnE
;
163
bnE
= BN_CTX_get(context); // public exponent (e)
218
BN_set_word(
bnE
, exponent);
219
if(BN_mod_inverse(bnD,
bnE
, bnPhi, context) == NULL)
[
all
...]
MathFunctions.c
451
BIGNUM *
bnE
;
460
bnE
= BN_CTX_get(context);
467
|| BN_bin2bn(e, eSize,
bnE
) == NULL
478
if(!(BN_mod_exp(bnC, bnM,
bnE
, bnN, context)))
RSAKeySieve.c
804
BIGNUM *
bnE
;
826
bnE
= BN_CTX_get(context);
838
BN_set_word(
bnE
, e);
907
if( BN_mod_inverse(bnT,
bnE
, bnT, context) == NULL
926
|| BN_mod_exp(bnQ, bnP,
bnE
, bnN, context) != 1
CpriECC.c
[
all
...]
Completed in 536 milliseconds