Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 477 for wyhash (0.09 sec)

  1. src/main/java/jcifs/smb/NtlmNtHashAuthenticator.java

         *            NT password hash
         */
        public NtlmNtHashAuthenticator ( String domain, String username, byte[] passwordHash ) {
            super(domain, username, null, AuthenticationType.USER);
            if ( passwordHash == null || passwordHash.length != 16 ) {
                throw new IllegalArgumentException("Password hash must be provided, expected length 16 byte");
            }
            this.ntHash = passwordHash;
        }
    
    
        /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 12:07:20 UTC 2020
    - 2.5K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/hash/DefaultChecksumService.java

        public HashCode md5(File file) {
            return doHash(file, md5);
        }
    
        @Override
        public HashCode sha1(File file) {
            return doHash(file, sha1);
        }
    
        @Override
        public HashCode sha256(File file) {
            return doHash(file, sha256);
        }
    
        @Override
        public HashCode sha512(File file) {
            return doHash(file, sha512);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jun 04 22:23:37 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/HashBiMap.java

                K oldKey = delegate.key;
                int keyHash = smearedHash(key);
                if (keyHash == delegate.keyHash && Objects.equal(key, oldKey)) {
                  return key;
                }
                checkArgument(seekByKey(key, keyHash) == null, "value already present: %s", key);
                delete(delegate);
                BiEntry<K, V> newEntry =
                    new BiEntry<>(key, keyHash, delegate.value, delegate.valueHash);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 24.5K bytes
    - Viewed (0)
  4. pkg/util/hash/hash.go

    limitations under the License.
    */
    
    package hash
    
    import (
    	"fmt"
    	"hash"
    
    	"k8s.io/apimachinery/pkg/util/dump"
    )
    
    // DeepHashObject writes specified object to hash using the spew library
    // which follows pointers and prints actual values of the nested objects
    // ensuring the hash does not change when a pointer changes.
    func DeepHashObject(hasher hash.Hash, objectToWrite interface{}) {
    	hasher.Reset()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 27 01:24:22 UTC 2023
    - 998 bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/Methods.java

                        return Arrays.equals(a.getGenericParameterTypes(), b.getGenericParameterTypes());
                    }
                }
                return false;
            }
    
            @Override
            protected int doHash(Method method) {
                return new HashCodeBuilder()
                    .append(method.getName())
                    .append(method.getParameterTypes())
                    .toHashCode();
            }
        };
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  6. src/hash/maphash/maphash_runtime.go

    )
    
    //go:linkname runtime_rand runtime.rand
    func runtime_rand() uint64
    
    //go:linkname runtime_memhash runtime.memhash
    //go:noescape
    func runtime_memhash(p unsafe.Pointer, seed, s uintptr) uintptr
    
    func rthash(buf []byte, seed uint64) uint64 {
    	if len(buf) == 0 {
    		return seed
    	}
    	len := len(buf)
    	// The runtime hasher only works on uintptr. For 64-bit
    	// architectures, we use the hasher directly. Otherwise,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/HashBiMap.java

        size--;
        modCount++;
      }
    
      /** Removes the entry at the specified index, given the hash of its key. */
      void removeEntryKeyHashKnown(int entry, int keyHash) {
        removeEntry(entry, keyHash, Hashing.smearedHash(values[entry]));
      }
    
      /** Removes the entry at the specified index, given the hash of its value. */
      void removeEntryValueHashKnown(int entry, int valueHash) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 06 16:06:58 UTC 2023
    - 36.4K bytes
    - Viewed (0)
  8. platforms/core-execution/hashing/src/main/java/org/gradle/internal/hash/DefaultStreamHasher.java

        private final Queue<byte[]> buffers = new ArrayBlockingQueue<byte[]>(16);
    
        @Override
        public HashCode hash(InputStream inputStream) {
            try {
                return doHash(inputStream, ByteStreams.nullOutputStream());
            } catch (IOException e) {
                throw new UncheckedIOException("Failed to create MD5 hash for file content.", e);
            }
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:43:29 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  9. src/hash/maphash/maphash.go

    }
    
    // A Hash computes a seeded hash of a byte sequence.
    //
    // The zero Hash is a valid Hash ready to use.
    // A zero Hash chooses a random seed for itself during
    // the first call to a Reset, Write, Seed, or Sum64 method.
    // For control over the seed, use SetSeed.
    //
    // The computed hash values depend only on the initial seed and
    // the sequence of bytes provided to the Hash object, not on the way
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 19:15:34 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  10. guava/src/com/google/common/base/Equivalence.java

      }
    
      /**
       * Implemented by the user to return a hash code for {@code t}, subject to the requirements
       * specified in {@link #hash}.
       *
       * <p>This method should not be called except by {@link #hash}. When {@link #hash} calls this
       * method, {@code t} is guaranteed to be non-null.
       *
       * @since 10.0 (previously, subclasses would override hash())
       */
      @ForOverride
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 14.1K bytes
    - Viewed (0)
Back to top