Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 881 for Hashing (0.12 sec)

  1. src/crypto/rsa/pss.go

    		return ErrVerification
    	}
    	return nil
    }
    
    // signPSSWithSalt calculates the signature of hashed using PSS with specified salt.
    // Note that hashed must be the result of hashing the input message using the
    // given hash function. salt is a random sequence of bytes whose length will be
    // later used to verify the signature.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/HttpServer.groovy

        enum SupportedHash {
            SHA1, SHA256, SHA512, MD5
        }
    
        enum EtagStrategy {
            NONE({ null }),
            RAW_SHA1_HEX({ Hashing.sha1().hashBytes(it as byte[]).toString() }),
            NEXUS_ENCODED_SHA1({ "{SHA1{" + Hashing.sha1().hashBytes(it as byte[]) + "}}" })
    
            private final Closure generator
    
            EtagStrategy(Closure generator) {
                this.generator = generator
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  3. .teamcity/test-buckets.json

    					"testing-jvm",
    					"worker-main",
    					"files",
    					"stdlib-java-extensions",
    					"build-cache-packaging",
    					"build-operations",
    					"precondition-tester",
    					"tooling-api-builders",
    					"hashing",
    					"base-services-groovy",
    					"kotlin-dsl-provider-plugins"
    				]
    			},
    			{
    				"parallelizationMethod":{
    					"name":"TestDistribution"
    				},
    				"subprojects":[
    					"plugin-use",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 15:56:44 UTC 2024
    - 54.2K bytes
    - Viewed (0)
  4. tensorflow/cc/experimental/libtf/value.h

    };
    
    /// Hashing infrastructure for Tuple.
    inline size_t TaggedValueHash<Tuple>::operator()(const Tuple& t) const {
      std::size_t hash = 0;
      for (auto& i : t) {
        hash ^= TaggedValueHash<TaggedValue>()(i);
      }
      return hash;
    }
    
    /// @brief The TaggedValueHashVisitor class for doing type-based hashing
    /// of TaggedValues.
    class TaggedValueHashVisitor {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:23:45 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  5. subprojects/core/build.gradle.kts

        api(project(":execution"))
        api(project(":file-collections"))
        api(project(":file-temp"))
        api(project(":file-watching"))
        api(project(":files"))
        api(project(":functional"))
        api(project(":hashing"))
        api(project(":internal-instrumentation-api"))
        api(project(":jvm-services"))
        api(project(":logging"))
        api(project(":logging-api"))
        api(project(":messaging"))
        api(project(":model-core"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/build.gradle.kts

        api(project(":enterprise-logging"))
        api(project(":execution"))
        api(project(":file-collections"))
        api(project(":file-watching"))
        api(project(":files"))
        api(project(":hashing"))
        api(projects.instrumentationAgentServices)
        api(project(":stdlib-java-extensions"))
        api(project(":jvm-services"))
        api(project(":logging"))
        api(project(":logging-api"))
        api(project(":messaging"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/crypto/sha3/hashes.go

    // license that can be found in the LICENSE file.
    
    package sha3
    
    // This file provides functions for creating instances of the SHA-3
    // and SHAKE hash functions, as well as utility functions for hashing
    // bytes.
    
    import (
    	"hash"
    )
    
    // New224 creates a new SHA3-224 hash.
    // Its generic security strength is 224 bits against preimage attacks,
    // and 112 bits against collision attacks.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/build.gradle.kts

        api(project(":build-operations"))
        api(project(":core"))
        api(project(":core-api"))
        api(project(":dependency-management"))
        api(project(":file-collections"))
        api(project(":files"))
        api(project(":hashing"))
        api(project(":language-jvm"))
        api(project(":persistent-cache"))
        api(project(":platform-base"))
        api(project(":platform-jvm"))
        api(project(":problems-api"))
        api(project(":process-services"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/RegularImmutableSet.java

      }
    
      @Override
      public boolean contains(@CheckForNull Object target) {
        @Nullable Object[] table = this.table;
        if (target == null || table.length == 0) {
          return false;
        }
        for (int i = Hashing.smearedHash(target); ; i++) {
          i &= mask;
          Object candidate = table[i];
          if (candidate == null) {
            return false;
          } else if (candidate.equals(target)) {
            return true;
          }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/AccessorsClassPath.kt

    import org.gradle.internal.fingerprint.DirectorySensitivity
    import org.gradle.internal.fingerprint.LineEndingSensitivity
    import org.gradle.internal.hash.HashCode
    import org.gradle.internal.hash.Hasher
    import org.gradle.internal.hash.Hashing
    import org.gradle.internal.properties.InputBehavior.NON_INCREMENTAL
    import org.gradle.internal.service.scopes.Scope
    import org.gradle.internal.service.scopes.ServiceScope
    import org.gradle.internal.snapshot.ValueSnapshot
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 22K bytes
    - Viewed (0)
Back to top