Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for wrongPass (0.08 sec)

  1. platforms/core-execution/build-cache-http/src/integTest/groovy/org/gradle/caching/http/internal/HttpBuildCacheServiceIntegrationTest.groovy

        }
    
        def "credentials from DSL override credentials in URL"() {
            httpBuildCacheServer.withBasicAuth("user", "pass")
            settingsFile.text = useHttpBuildCache(getUrlWithCredentials("user", "wrongPass"))
            settingsFile << """
                buildCache {
                    remote.credentials {
                        username = "user"
                        password = "pass"
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:20 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  2. src/crypto/ed25519/ed25519_test.go

    	}
    
    	if err := VerifyWithOptions(public, hash[:], sig, &Options{Hash: crypto.SHA256}); err == nil {
    		t.Errorf("expected error for wrong hash")
    	}
    
    	wrongHash := sha512.Sum512([]byte("wrong message"))
    	if VerifyWithOptions(public, wrongHash[:], sig, &Options{Hash: crypto.SHA512}) == nil {
    		t.Errorf("signature of different message accepted")
    	}
    
    	sig[0] ^= 0xff
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 10.9K bytes
    - Viewed (0)
Back to top