Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 9 of 9 for SHA512 (0.12 seconds)

  1. 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)
  2. android/guava-tests/test/com/google/common/io/FilesTest.java

    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 19 18:53:45 GMT 2026
    - 22.8K bytes
    - Click Count (0)
  3. android/guava/src/com/google/common/hash/Hashing.java

       * specific length.
       *
       * <p>For example, if you need 1024-bit hash codes, you could join two {@link Hashing#sha512} hash
       * functions together: {@code Hashing.concatenating(Hashing.sha512(), Hashing.sha512())}.
       *
       * @since 19.0
       */
      public static HashFunction concatenating(
          HashFunction first, HashFunction second, HashFunction... rest) {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Jul 17 15:26:41 GMT 2025
    - 29.8K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/mylasta/direction/FessFwAssistantDirector.java

            }
    
            final OneWayCryptographer oneWay;
            final String digestAlgorithm = fessConfig.getAppDigestAlgorithm();
            if ("sha512".equalsIgnoreCase(digestAlgorithm)) {
                oneWay = OneWayCryptographer.createSha512Cryptographer();
            } else if ("md5".equalsIgnoreCase(digestAlgorithm)) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Jan 10 01:38:30 GMT 2026
    - 10.4K bytes
    - Click Count (0)
  5. okhttp/src/jvmTest/kotlin/okhttp3/CertificatePinnerTest.kt

            "sha256/a",
          )
        }
      }
    
      @Test
      fun testBadAlgorithm() {
        assertFailsWith<IllegalArgumentException> {
          CertificatePinner.Pin(
            "example.co.uk",
            "sha512/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=",
          )
        }
      }
    
      @Test
      fun testBadHost() {
        assertFailsWith<IllegalArgumentException> {
          CertificatePinner.Pin(
            "example.*",
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Wed Mar 19 19:25:20 GMT 2025
    - 10.1K bytes
    - Click Count (0)
  6. guava-tests/test/com/google/common/io/ByteSourceTest.java

     * limitations under the License.
     */
    
    package com.google.common.io;
    
    import static com.google.common.base.Preconditions.checkArgument;
    import static com.google.common.hash.Hashing.sha512;
    import static com.google.common.io.TestOption.AVAILABLE_ALWAYS_ZERO;
    import static com.google.common.io.TestOption.CLOSE_THROWS;
    import static com.google.common.io.TestOption.OPEN_THROWS;
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 19 18:53:45 GMT 2026
    - 15.6K bytes
    - Click Count (0)
  7. android/guava-tests/test/com/google/common/io/ByteSourceTest.java

     * limitations under the License.
     */
    
    package com.google.common.io;
    
    import static com.google.common.base.Preconditions.checkArgument;
    import static com.google.common.hash.Hashing.sha512;
    import static com.google.common.io.TestOption.AVAILABLE_ALWAYS_ZERO;
    import static com.google.common.io.TestOption.CLOSE_THROWS;
    import static com.google.common.io.TestOption.OPEN_THROWS;
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 19 18:53:45 GMT 2026
    - 15.6K bytes
    - Click Count (0)
  8. android/guava/src/com/google/common/hash/HashFunction.java

     *       The result is that, for example, when choosing a bucket in a hash table of size 2^8,
     *       <i>any</i> eight bits could be consistently used.
     *   <li><b>cryptographic:</b> certain hash functions such as {@link Hashing#sha512} are designed to
     *       make it as infeasible as possible to reverse-engineer the input that produced a given hash
     *       code, or even to discover <i>any</i> two distinct inputs that yield the same result. These
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 17 20:26:29 GMT 2025
    - 10.9K bytes
    - Click Count (0)
  9. guava-tests/test/com/google/common/hash/HashingTest.java

      }
    
      public void testSha512() {
        HashTestUtils.checkAvalanche(Hashing.sha512(), 100, 0.4);
        HashTestUtils.checkNo2BitCharacteristics(Hashing.sha512());
        HashTestUtils.checkNoFunnels(Hashing.sha512());
        HashTestUtils.assertInvariants(Hashing.sha512());
        assertThat(Hashing.sha512().toString()).isEqualTo("Hashing.sha512()");
      }
    
      public void testCrc32() {
        HashTestUtils.assertInvariants(Hashing.crc32());
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Mar 13 13:01:07 GMT 2026
    - 26.7K bytes
    - Click Count (2)
Back to Top