Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 554 for Kashem (0.38 sec)

  1. docs/en/docs/tutorial/security/oauth2-jwt.md

    If your database is stolen, the thief won't have your users' plaintext passwords, only the hashes.
    
    So, the thief won't be able to try to use that password in another system (as many users use the same password everywhere, this would be dangerous).
    
    ## Install `passlib`
    
    PassLib is a great Python package to handle password hashes.
    
    It supports many secure hashing algorithms and utilities to work with them.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 17:37:28 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  2. guava/src/com/google/common/hash/AbstractCompositeHashFunction.java

      }
    
      private Hasher fromHashers(Hasher[] hashers) {
        return new Hasher() {
          @Override
          public Hasher putByte(byte b) {
            for (Hasher hasher : hashers) {
              hasher.putByte(b);
            }
            return this;
          }
    
          @Override
          public Hasher putBytes(byte[] bytes) {
            for (Hasher hasher : hashers) {
              hasher.putBytes(bytes);
            }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Oct 06 00:47:57 UTC 2021
    - 5.4K bytes
    - Viewed (0)
  3. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/fingerprint/FingerprintHashingStrategy.java

                appendCollectionToHasherKeepingOrder(hasher, sortedFingerprints);
            }
        },
        KEEP_ORDER {
            @Override
            public void appendToHasher(Hasher hasher, Collection<FileSystemLocationFingerprint> fingerprints) {
                appendCollectionToHasherKeepingOrder(hasher, fingerprints);
            }
        };
    
        public abstract void appendToHasher(Hasher hasher, Collection<FileSystemLocationFingerprint> fingerprints);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/DefaultHashingClassLoaderFactory.java

            Hasher hasher = Hashing.newHasher();
            addToHash(hasher, spec.getClassNames());
            addToHash(hasher, spec.getPackageNames());
            addToHash(hasher, spec.getPackagePrefixes());
            addToHash(hasher, spec.getResourcePrefixes());
            addToHash(hasher, spec.getResourceNames());
            addToHash(hasher, spec.getDisallowedClassNames());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/TransformWorkspaceIdentity.java

            HashCode dependenciesHash
        ) {
            Hasher hasher = Hashing.newHasher();
            hasher.putString(normalizedInputArtifactPath);
            hasher.putString(producerBuildTreePath);
            hasher.put(secondaryInputsSnapshot);
            hasher.putHash(dependenciesHash);
            return new TransformWorkspaceIdentity(secondaryInputsSnapshot, hasher.hash());
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 14 10:18:24 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/hash/AbstractByteHasherTest.java

        hasher.putShort((short) 0x0201);
        hasher.assertBytes(new byte[] {1, 2});
      }
    
      public void testInt() {
        TestHasher hasher = new TestHasher();
        hasher.putInt(0x04030201);
        hasher.assertBytes(new byte[] {1, 2, 3, 4});
      }
    
      public void testLong() {
        TestHasher hasher = new TestHasher();
        hasher.putLong(0x0807060504030201L);
        hasher.assertBytes(new byte[] {1, 2, 3, 4, 5, 6, 7, 8});
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/mod/sumdb/tlog/tlog.go

    	}
    	indexes := subTreeIndex(0, n, nil)
    	hashes, err := r.ReadHashes(indexes)
    	if err != nil {
    		return Hash{}, err
    	}
    	if len(hashes) != len(indexes) {
    		return Hash{}, fmt.Errorf("tlog: ReadHashes(%d indexes) = %d hashes", len(indexes), len(hashes))
    	}
    	hash, hashes := subTreeHash(0, n, hashes)
    	if len(hashes) != 0 {
    		panic("tlog: bad index math in TreeHash")
    	}
    	return hash, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  8. platforms/core-execution/hashing/src/main/java/org/gradle/internal/hash/Hashing.java

                hasher.putInt(bytes.length);
                hasher.putBytes(bytes);
            }
    
            @Override
            public void putBytes(byte[] bytes, int off, int len) {
                hasher.putInt(len);
                hasher.putBytes(bytes, off, len);
            }
    
            @Override
            public void putHash(HashCode hashCode) {
                hasher.putInt(hashCode.length());
                hasher.putHash(hashCode);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:30 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/classpath/InstrumentingClasspathFileTransformer.java

            transform.applyConfigurationTo(hasher);
            return hasher.hash();
        }
    
        private static ClasspathFileHasher createFileHasherWithConfig(HashCode configHash, ClasspathFileHasher fileHasher) {
            return sourceSnapshot -> {
                Hasher hasher = Hashing.newHasher();
                hasher.putHash(configHash);
                hasher.putHash(fileHasher.hashOf(sourceSnapshot));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 27 13:36:38 UTC 2024
    - 6K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/hash/AbstractByteHasher.java

      private final ByteBuffer scratch = ByteBuffer.allocate(8).order(ByteOrder.LITTLE_ENDIAN);
    
      /** Updates this hasher with the given byte. */
      protected abstract void update(byte b);
    
      /** Updates this hasher with the given bytes. */
      protected void update(byte[] b) {
        update(b, 0, b.length);
      }
    
      /** Updates this hasher with {@code len} bytes starting at {@code off} in the given buffer. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jun 15 20:59:00 UTC 2022
    - 3.5K bytes
    - Viewed (0)
Back to top