HomeSort by relevance Sort by last modified time
    Searched refs:Bits32ToBytes (Results 1 - 3 of 3) sorted by null

  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/engines/
TwofishEngine.java 470 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)
BlowfishEngine.java 529 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)
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/cipher/
BlowFish.java 361 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)

Completed in 271 milliseconds