OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DIGEST_LENGTH
(Results
1 - 21
of
21
) sorted by null
/libcore/luni/src/main/java/org/apache/harmony/security/provider/crypto/
SHA1Constants.java
81
public static final int
DIGEST_LENGTH
= 20;
SHA1PRNG_SecureRandomImpl.java
179
nextBytes = new byte[
DIGEST_LENGTH
];
256
myRandom.engineSetSeed(getRandomBytes(
DIGEST_LENGTH
));
300
updateSeed(getRandomBytes(
DIGEST_LENGTH
));
499
nextBytes = new byte[
DIGEST_LENGTH
];
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/digests/
SHA384Digest.java
21
private static final int
DIGEST_LENGTH
= 48;
56
return
DIGEST_LENGTH
;
74
return
DIGEST_LENGTH
;
SHA512Digest.java
21
private static final int
DIGEST_LENGTH
= 64;
56
return
DIGEST_LENGTH
;
76
return
DIGEST_LENGTH
;
SHA1Digest.java
16
private static final int
DIGEST_LENGTH
= 20;
83
return
DIGEST_LENGTH
;
130
return
DIGEST_LENGTH
;
SHA224Digest.java
23
private static final int
DIGEST_LENGTH
= 28;
98
return
DIGEST_LENGTH
;
147
return
DIGEST_LENGTH
;
SHA256Digest.java
23
private static final int
DIGEST_LENGTH
= 32;
99
return
DIGEST_LENGTH
;
149
return
DIGEST_LENGTH
;
MD5Digest.java
14
private static final int
DIGEST_LENGTH
= 16;
76
return
DIGEST_LENGTH
;
128
return
DIGEST_LENGTH
;