Searched refs:Bits32ToBytes (Results 1 – 3 of 3) sorted by relevance
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/cipher/ |
D | BlowFish.java | 361 Bits32ToBytes(xr, dst, dstIndex); in encryptBlock() 362 Bits32ToBytes(xl, dst, dstIndex + 4); in encryptBlock() 385 Bits32ToBytes(xr, dst, dstIndex); in decryptBlock() 386 Bits32ToBytes(xl, dst, dstIndex + 4); in decryptBlock() 394 private void Bits32ToBytes(int in, byte[] b, int offset) in Bits32ToBytes() method in BlowFish
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/ |
D | BlowfishEngine.java | 529 Bits32ToBytes(xr, dst, dstIndex); in encryptBlock() 530 Bits32ToBytes(xl, dst, dstIndex + 4); in encryptBlock() 557 Bits32ToBytes(xr, dst, dstIndex); in decryptBlock() 558 Bits32ToBytes(xl, dst, dstIndex+4); in decryptBlock() 569 private void Bits32ToBytes(int in, byte[] b, int offset) in Bits32ToBytes() method in BlowfishEngine
|
D | TwofishEngine.java | 472 Bits32ToBytes(x2 ^ gSubKeys[OUTPUT_WHITEN], dst, dstIndex); in encryptBlock() 473 Bits32ToBytes(x3 ^ gSubKeys[OUTPUT_WHITEN + 1], dst, dstIndex + 4); in encryptBlock() 474 Bits32ToBytes(x0 ^ gSubKeys[OUTPUT_WHITEN + 2], dst, dstIndex + 8); in encryptBlock() 475 Bits32ToBytes(x1 ^ gSubKeys[OUTPUT_WHITEN + 3], dst, dstIndex + 12); in encryptBlock() 511 Bits32ToBytes(x0 ^ gSubKeys[INPUT_WHITEN], dst, dstIndex); in decryptBlock() 512 Bits32ToBytes(x1 ^ gSubKeys[INPUT_WHITEN + 1], dst, dstIndex + 4); in decryptBlock() 513 Bits32ToBytes(x2 ^ gSubKeys[INPUT_WHITEN + 2], dst, dstIndex + 8); in decryptBlock() 514 Bits32ToBytes(x3 ^ gSubKeys[INPUT_WHITEN + 3], dst, dstIndex + 12); in decryptBlock() 672 private void Bits32ToBytes(int in, byte[] b, int offset) in Bits32ToBytes() method in TwofishEngine
|