Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 145 for Kashem (2.42 sec)

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

    1. * cryptographic hashes.)
    2. * <li><b>fast:</b> perhaps self-explanatory, but often the most important consideration.
    3. * </ul>
    4. *
    5. * <h3>Providing input to a hash function</h3>
    6. *
    7. * <p>The primary way to provide the data that your hash function should act on is via a {@link
    8. * Hasher}. Obtain a new hasher from the hash function using {@link #newHasher}, "push" the relevant
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue May 25 18:22:59 UTC 2021
    - 10.9K bytes
    - Viewed (0)
  2. guava/src/com/google/common/hash/HashFunction.java

    1. * cryptographic hashes.)
    2. * <li><b>fast:</b> perhaps self-explanatory, but often the most important consideration.
    3. * </ul>
    4. *
    5. * <h3>Providing input to a hash function</h3>
    6. *
    7. * <p>The primary way to provide the data that your hash function should act on is via a {@link
    8. * Hasher}. Obtain a new hasher from the hash function using {@link #newHasher}, "push" the relevant
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue May 25 18:22:59 UTC 2021
    - 10.9K bytes
    - Viewed (0)
  3. guava/src/com/google/common/hash/AbstractStreamingHasher.java

    1. @Override
    2. @CanIgnoreReturnValue
    3. public final Hasher putByte(byte b) {
    4. buffer.put(b);
    5. munchIfFull();
    6. return this;
    7. }
    8.  
    9. @Override
    10. @CanIgnoreReturnValue
    11. public final Hasher putShort(short s) {
    12. buffer.putShort(s);
    13. munchIfFull();
    14. return this;
    15. }
    16.  
    17. @Override
    18. @CanIgnoreReturnValue
    19. public final Hasher putChar(char c) {
    20. buffer.putChar(c);
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Jun 15 20:59:00 UTC 2022
    - 7.1K bytes
    - Viewed (0)
  4. internal/jwt/parser.go

    1. hasher := h.pool.Get().(hash.Hash)
    2. h.borrowed = append(h.borrowed, hasher)
    3. hasher.Reset()
    4. return hasher
    5. }
    6.  
    7. // ReturnAll will return all borrowed hashes.
    8. func (h *HashBorrower) ReturnAll() {
    9. for _, hasher := range h.borrowed {
    10. h.pool.Put(hasher)
    11. }
    12. h.borrowed = nil
    13. }
    14.  
    15. // StandardClaims are basically standard claims with "accessKey"
    16. type StandardClaims struct {
    17. AccessKey string `json:"accessKey,omitempty"`
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Sep 17 16:45:46 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  5. docs/de/docs/tutorial/security/oauth2-jwt.md

    1. Der Dieb kann also nicht versuchen, die gleichen Passwörter in einem anderen System zu verwenden (da viele Benutzer überall das gleiche Passwort verwenden, wäre dies gefährlich).
    2.  
    3. ## `passlib` installieren
    4.  
    5. PassLib ist ein großartiges Python-Package, um Passwort-Hashes zu handhaben.
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 15K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/hash/HashingOutputStream.java

    1. *
    2. * @author Zoe Piepmeier
    3. * @since 16.0
    4. */
    5. @Beta
    6. @ElementTypesAreNonnullByDefault
    7. public final class HashingOutputStream extends FilterOutputStream {
    8. private final Hasher hasher;
    9.  
    10. /**
    11. * Creates an output stream that hashes using the given {@link HashFunction}, and forwards all
    12. * data written to it to the underlying {@link OutputStream}.
    13. *
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 11 22:00:03 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/hash/AbstractStreamingHasher.java

    1. @Override
    2. @CanIgnoreReturnValue
    3. public final Hasher putByte(byte b) {
    4. buffer.put(b);
    5. munchIfFull();
    6. return this;
    7. }
    8.  
    9. @Override
    10. @CanIgnoreReturnValue
    11. public final Hasher putShort(short s) {
    12. buffer.putShort(s);
    13. munchIfFull();
    14. return this;
    15. }
    16.  
    17. @Override
    18. @CanIgnoreReturnValue
    19. public final Hasher putChar(char c) {
    20. buffer.putChar(c);
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Jun 15 20:59:00 UTC 2022
    - 7.1K bytes
    - Viewed (0)
  8. cmd/hasher.go

    Harshavardhana <******@****.***> 1653656419 -0700
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri May 27 13:00:19 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/hash/HashTestUtils.java

    1. }
    2.  
    3. static HashCode randomHash(HashFunction hashFunction, Random random, int numActions) {
    4. Hasher hasher = hashFunction.newHasher();
    5. for (int i = 0; i < numActions; i++) {
    6. RandomHasherAction.pickAtRandom(random).performAction(random, ImmutableSet.of(hasher));
    7. }
    8. return hasher.hash();
    9. }
    10.  
    11. private static void assertShortcutsAreEquivalent(HashFunction hashFunction, int trials) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Jul 23 14:22:54 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  10. docs/debugging/hash-set/main.go

    1. k0, k1 := binary.LittleEndian.Uint64(id[0:8]), binary.LittleEndian.Uint64(id[8:16])
    2. sum64 := siphash.Hash(k0, k1, []byte(key))
    3. return int(sum64 % uint64(cardinality))
    4. }
    5.  
    6. // hashOrder - hashes input key to return consistent
    7. // hashed integer slice. Returned integer order is salted
    8. // with an input key. This results in consistent order.
    9. // NOTE: collisions are fine, we are not looking for uniqueness
    10. // in the slices returned.
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Sep 19 18:05:16 UTC 2022
    - 3.7K bytes
    - Viewed (0)
Back to top