Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 35 for SHA512 (0.03 seconds)

  1. android/guava-tests/test/com/google/common/hash/HashingInputStreamTest.java

        verifyNoMoreInteractions(hashFunction, hasher);
      }
    
      public void testHash_hashesCorrectly() throws Exception {
        HashCode expectedHash = sha512().hashBytes(testBytes);
        HashingInputStream in = new HashingInputStream(sha512(), buffer);
    
        byte[] buf = new byte[4];
        int numOfByteRead = in.read(buf, 0, buf.length);
        assertEquals(4, numOfByteRead);
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 19 18:53:45 GMT 2026
    - 5.1K bytes
    - Click Count (0)
  2. guava-tests/test/com/google/common/hash/HashingInputStreamTest.java

        verifyNoMoreInteractions(hashFunction, hasher);
      }
    
      public void testHash_hashesCorrectly() throws Exception {
        HashCode expectedHash = sha512().hashBytes(testBytes);
        HashingInputStream in = new HashingInputStream(sha512(), buffer);
    
        byte[] buf = new byte[4];
        int numOfByteRead = in.read(buf, 0, buf.length);
        assertEquals(4, numOfByteRead);
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 19 18:53:45 GMT 2026
    - 5.1K bytes
    - Click Count (0)
  3. guava-tests/test/com/google/common/hash/HashingOutputStreamTest.java

      }
    
      public void testHash_hashesCorrectly() throws Exception {
        byte[] buf = new byte[] {'y', 'a', 'm', 's'};
        HashCode expectedHash = sha512().hashBytes(buf);
        HashingOutputStream out = new HashingOutputStream(sha512(), buffer);
    
        out.write(buf);
    
        assertEquals(expectedHash, out.hash());
      }
    
      public void testChecksForNull() throws Exception {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 19 18:53:45 GMT 2026
    - 3.2K bytes
    - Click Count (0)
  4. android/guava-tests/test/com/google/common/hash/HashingOutputStreamTest.java

      }
    
      public void testHash_hashesCorrectly() throws Exception {
        byte[] buf = new byte[] {'y', 'a', 'm', 's'};
        HashCode expectedHash = sha512().hashBytes(buf);
        HashingOutputStream out = new HashingOutputStream(sha512(), buffer);
    
        out.write(buf);
    
        assertEquals(expectedHash, out.hash());
      }
    
      public void testChecksForNull() throws Exception {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 19 18:53:45 GMT 2026
    - 3.2K bytes
    - Click Count (0)
  5. android/guava-tests/test/com/google/common/hash/MessageDigestHashFunctionTest.java

              .put("SHA-512", sha512())
              .build();
    
      public void testHashing() throws Exception {
        for (String stringToTest : INPUTS) {
          for (String algorithmToTest : ALGORITHMS.keySet()) {
            assertMessageDigestHashing(HashTestUtils.ascii(stringToTest), algorithmToTest);
          }
        }
      }
    
      public void testPutAfterHash() {
        Hasher hasher = sha512().newHasher();
    
        assertThat(
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 19 18:53:45 GMT 2026
    - 4.9K bytes
    - Click Count (0)
  6. guava-tests/test/com/google/common/hash/HashFunctionEnum.java

      GOOD_FAST_HASH_256(goodFastHash(256)),
      MD5(md5()),
      MURMUR3_128(murmur3_128()),
      MURMUR3_32(murmur3_32()),
      MURMUR3_32_FIXED(murmur3_32_fixed()),
      SHA1(sha1()),
      SHA256(sha256()),
      SHA384(sha384()),
      SHA512(sha512()),
      SIP_HASH24(sipHash24()),
      FARMHASH_FINGERPRINT_64(farmHashFingerprint64()),
    
      // Hash functions found in //javatests for comparing against current implementation of CityHash.
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 19 18:53:45 GMT 2026
    - 2.4K bytes
    - Click Count (0)
  7. guava-tests/test/com/google/common/hash/MessageDigestHashFunctionTest.java

              .put("SHA-512", sha512())
              .build();
    
      public void testHashing() throws Exception {
        for (String stringToTest : INPUTS) {
          for (String algorithmToTest : ALGORITHMS.keySet()) {
            assertMessageDigestHashing(HashTestUtils.ascii(stringToTest), algorithmToTest);
          }
        }
      }
    
      public void testPutAfterHash() {
        Hasher hasher = sha512().newHasher();
    
        assertThat(
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 19 18:53:45 GMT 2026
    - 4.9K bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessSecurityResourceProviderTest.java

            // Test with SHA512
            OneWayCryptographer sha512 = OneWayCryptographer.createSha512Cryptographer();
            FessSecurityResourceProvider provider = new FessSecurityResourceProvider(invertibleCryptographer, sha512);
    
            assertNotNull(provider);
            assertEquals(invertibleCryptographer, provider.providePrimaryInvertibleCryptographer());
            assertEquals(sha512, provider.providePrimaryOneWayCryptographer());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 13.2K bytes
    - Click Count (0)
  9. android/guava-tests/test/com/google/common/hash/HashFunctionEnum.java

      GOOD_FAST_HASH_256(goodFastHash(256)),
      MD5(md5()),
      MURMUR3_128(murmur3_128()),
      MURMUR3_32(murmur3_32()),
      MURMUR3_32_FIXED(murmur3_32_fixed()),
      SHA1(sha1()),
      SHA256(sha256()),
      SHA384(sha384()),
      SHA512(sha512()),
      SIP_HASH24(sipHash24()),
      FARMHASH_FINGERPRINT_64(farmHashFingerprint64()),
    
      // Hash functions found in //javatests for comparing against current implementation of CityHash.
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 19 18:53:45 GMT 2026
    - 2.4K bytes
    - Click Count (0)
  10. CHANGELOG/CHANGELOG-1.30.md

        - [Changed](#changed-21)
        - [Removed](#removed-21)
    
    <!-- END MUNGE: GENERATED_TOC -->
    
    # v1.30.14
    
    
    ## Downloads for v1.30.14
    
    
    
    ### Source Code
    
    filename | sha512 hash
    -------- | -----------
    [kubernetes.tar.gz](https://dl.k8s.io/v1.30.14/kubernetes.tar.gz) | fc6533c68b5bf3368106b019c4f0d9fa9064ee7a3d1167b5e8e4506cf2b6d5296e4ba8eccad3569a8b56208b7b52936edb20a8e60b058fd4d212687df3a3abab
    Created: Fri Apr 03 09:05:14 GMT 2026
    - Last Modified: Wed Jun 18 18:59:10 GMT 2025
    - 398.1K bytes
    - Click Count (0)
Back to Top