OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:dP
(Results
1 - 4
of
4
) sorted by null
/external/bouncycastle/src/main/java/org/bouncycastle/crypto/params/
RSAPrivateCrtKeyParameters.java
11
private BigInteger
dP
;
24
BigInteger
dP
,
33
this.
dP
=
dP
;
55
return
dP
;
/external/bouncycastle/src/main/java/org/bouncycastle/crypto/engines/
RSACoreEngine.java
174
BigInteger
dP
= crtKey.getDP();
180
// mP = ((input mod p) ^
dP
)) mod p
181
mP = (input.remainder(p)).modPow(
dP
, p);
/external/bouncycastle/src/main/java/org/bouncycastle/crypto/generators/
RSAKeyPairGenerator.java
137
BigInteger
dP
, dQ, qInv;
139
dP
= d.remainder(pSub1);
145
new RSAPrivateCrtKeyParameters(n, e, d, p, q,
dP
, dQ, qInv));
/external/dropbear/libtomcrypt/src/headers/
tomcrypt_pk.h
34
void *
dP
;
113
void *
dP
;
196
/** Index into the ltc_ecc_sets[] for the parameters of this curve; if -1, then this key is using user supplied curve in
dp
*/
200
const ltc_ecc_set_type *
dp
;
member in struct:__anon5293
217
int ecc_make_key_ex(prng_state *prng, int wprng, ecc_key *key, const ltc_ecc_set_type *
dp
);
222
int ecc_import_ex(const unsigned char *in, unsigned long inlen, ecc_key *key, const ltc_ecc_set_type *
dp
);
226
int ecc_ansi_x963_import_ex(const unsigned char *in, unsigned long inlen, ecc_key *key, ltc_ecc_set_type *
dp
);
Completed in 3444 milliseconds