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

  /external/guava/guava/src/com/google/common/hash/
HashFunction.java 164 HashCode hashBytes(byte[] input);
174 HashCode hashBytes(byte[] input, int off, int len);
AbstractStreamingHashFunction.java 48 @Override public HashCode hashBytes(byte[] input) {
52 @Override public HashCode hashBytes(byte[] input, int off, int len) {
AbstractNonStreamingHashFunction.java 14 * #hashBytes(byte[], int, int)} method.
102 return hashBytes(stream.byteArray(), 0, stream.length());
  /external/guava/guava-tests/test/com/google/common/hash/
HashFunctionsTest.java 59 hashFunction.hashBytes(new byte[64], 0, 0);
62 hashFunction.hashBytes(new byte[128], -1, 128);
66 hashFunction.hashBytes(new byte[128], 64, 256 /* too long len */);
70 hashFunction.hashBytes(new byte[64], 0, -1);
MessageDigestHashFunctionTest.java 32 new MessageDigestHashFunction(algorithmName).hashBytes(input).asBytes());
AbstractNonStreamingHashFunctionTest.java 83 public HashCode hashBytes(byte[] input) {
88 public HashCode hashBytes(byte[] input, int off, int len) {
HashCodesTest.java 101 byte[] hashBytes = hashCode.asBytes();
108 assertTrue(Arrays.equals(Arrays.copyOf(hashBytes, bytes), bb));
AbstractStreamingHasherTest.java 220 public HashCode hashBytes(byte[] input) {
225 public HashCode hashBytes(byte[] input, int off, int len) {
226 return hashBytes(Arrays.copyOfRange(input, off, off + len));
HashTestUtils.java 47 int hashBytes = hashbits / 8;
50 byte[] hashes = new byte[hashBytes * 256];
57 System.arraycopy(hash, 0, hashes, i * hashBytes, hash.length);
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/modes/
GCMBlockCipher.java 343 byte[] hashBytes;
347 hashBytes = tmp;
351 hashBytes = buf;
360 // gHASHBlock(hashBytes);
361 xor(S, hashBytes);
  /libcore/luni/src/main/java/java/util/jar/
JarVerifier.java 204 byte[] hashBytes = hash.getBytes(Charsets.ISO_8859_1);
208 .getInstance(algorithm), hashBytes, certificatesArray);
406 byte[] hashBytes = hash.getBytes(Charsets.ISO_8859_1);
407 return MessageDigest.isEqual(b, Base64.decode(hashBytes));
  /libcore/luni/src/main/native/
org_apache_harmony_xnet_provider_jsse_NativeCrypto.cpp     [all...]
  /prebuilt/common/tradefed/
tradefed-prebuilt.jar 

Completed in 123 milliseconds