Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for BufferingHasher (0.18 sec)

  1. android/guava/src/com/google/common/hash/AbstractNonStreamingHashFunction.java

        return newHasher(input.remaining()).putBytes(input).hash();
      }
    
      /** In-memory stream-based implementation of Hasher. */
      private final class BufferingHasher extends AbstractHasher {
        final ExposedByteArrayOutputStream stream;
    
        BufferingHasher(int expectedInputSize) {
          this.stream = new ExposedByteArrayOutputStream(expectedInputSize);
        }
    
        @Override
        public Hasher putByte(byte b) {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Apr 20 18:43:59 GMT 2021
    - 3.8K bytes
    - Viewed (0)
Back to top