OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:OUTPUT_WHITEN
(Results
1 - 2
of
2
) sorted by null
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/
TwofishEngine.java
198
private static final int
OUTPUT_WHITEN
=INPUT_WHITEN+BLOCK_SIZE/4; // 4
199
private static final int ROUND_SUBKEYS=
OUTPUT_WHITEN
+BLOCK_SIZE/4;// 8
473
Bits32ToBytes(x2 ^ gSubKeys[
OUTPUT_WHITEN
], dst, dstIndex);
474
Bits32ToBytes(x3 ^ gSubKeys[
OUTPUT_WHITEN
+ 1], dst, dstIndex + 4);
475
Bits32ToBytes(x0 ^ gSubKeys[
OUTPUT_WHITEN
+ 2], dst, dstIndex + 8);
476
Bits32ToBytes(x1 ^ gSubKeys[
OUTPUT_WHITEN
+ 3], dst, dstIndex + 12);
490
int x2 = BytesTo32Bits(src, srcIndex) ^ gSubKeys[
OUTPUT_WHITEN
];
491
int x3 = BytesTo32Bits(src, srcIndex+4) ^ gSubKeys[
OUTPUT_WHITEN
+ 1];
492
int x0 = BytesTo32Bits(src, srcIndex+8) ^ gSubKeys[
OUTPUT_WHITEN
+ 2];
493
int x1 = BytesTo32Bits(src, srcIndex+12) ^ gSubKeys[
OUTPUT_WHITEN
+ 3]
[
all
...]
/external/google-tv-pairing-protocol/java/jar/
bcprov-jdk15-143.jar
Completed in 253 milliseconds