Searched defs:Bits32ToBytes (Results 1 - 3 of 3) sorted by relevance

/external/bouncycastle/src/main/java/org/bouncycastle/crypto/engines/
H A DBlowfishEngine.java529 Bits32ToBytes(xr, dst, dstIndex);
530 Bits32ToBytes(xl, dst, dstIndex + 4);
557 Bits32ToBytes(xr, dst, dstIndex);
558 Bits32ToBytes(xl, dst, dstIndex+4);
569 private void Bits32ToBytes(int in, byte[] b, int offset) method in class:BlowfishEngine
H A DTwofishEngine.java470 Bits32ToBytes(x2 ^ gSubKeys[OUTPUT_WHITEN], dst, dstIndex);
471 Bits32ToBytes(x3 ^ gSubKeys[OUTPUT_WHITEN + 1], dst, dstIndex + 4);
472 Bits32ToBytes(x0 ^ gSubKeys[OUTPUT_WHITEN + 2], dst, dstIndex + 8);
473 Bits32ToBytes(x1 ^ gSubKeys[OUTPUT_WHITEN + 3], dst, dstIndex + 12);
509 Bits32ToBytes(x0 ^ gSubKeys[INPUT_WHITEN], dst, dstIndex);
510 Bits32ToBytes(x1 ^ gSubKeys[INPUT_WHITEN + 1], dst, dstIndex + 4);
511 Bits32ToBytes(x2 ^ gSubKeys[INPUT_WHITEN + 2], dst, dstIndex + 8);
512 Bits32ToBytes(x3 ^ gSubKeys[INPUT_WHITEN + 3], dst, dstIndex + 12);
670 private void Bits32ToBytes(int in, byte[] b, int offset) method in class:TwofishEngine
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/cipher/
H A DBlowFish.java361 Bits32ToBytes(xr, dst, dstIndex);
362 Bits32ToBytes(xl, dst, dstIndex + 4);
385 Bits32ToBytes(xr, dst, dstIndex);
386 Bits32ToBytes(xl, dst, dstIndex + 4);
394 private void Bits32ToBytes(int in, byte[] b, int offset) method in class:BlowFish

Completed in 114 milliseconds