Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for InsecureAlgorithmError (0.44 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/x509metrics/server_cert_deprecations.go

    //  2. the server certificate in response contains no SAN. This indicates that this binary run
    //     with the GODEBUG=x509ignoreCN=0 in env
    //
    // It increases the `sha1` counter whenever:
    //  1. we get a x509.InsecureAlgorithmError with string `SHA1`
    //     which indicates an error caused by an insecure SHA1 signature
    //  2. the server certificate in response contains a SHA1WithRSA or ECDSAWithSHA1 signature.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 7.3K bytes
    - Viewed (0)
  2. api/go1.6.txt

    pkg crypto/tls, type RecordHeaderError struct, Msg string
    pkg crypto/tls, type RecordHeaderError struct, RecordHeader [5]uint8
    pkg crypto/x509, method (InsecureAlgorithmError) Error() string
    pkg crypto/x509, method (SignatureAlgorithm) String() string
    pkg crypto/x509, type InsecureAlgorithmError int
    pkg database/sql, method (*DB) SetConnMaxLifetime(time.Duration)
    pkg debug/dwarf, const ClassUnknown = 0
    pkg debug/dwarf, const ClassUnknown Class
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 13 23:40:13 UTC 2016
    - 12.9K bytes
    - Viewed (0)
  3. src/crypto/x509/x509.go

    // An InsecureAlgorithmError indicates that the [SignatureAlgorithm] used to
    // generate the signature is not secure, and the signature has been rejected.
    //
    // To temporarily restore support for SHA-1 signatures, include the value
    // "x509sha1=1" in the GODEBUG environment variable. Note that this option will
    // be removed in a future release.
    type InsecureAlgorithmError SignatureAlgorithm
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  4. src/crypto/x509/x509_test.go

    	}
    	if err = cert.CheckSignatureFrom(cert); err == nil {
    		t.Fatalf("certificate verification succeeded incorrectly")
    	}
    	if _, ok := err.(InsecureAlgorithmError); !ok {
    		t.Fatalf("certificate verification returned %v (%T), wanted InsecureAlgorithmError", err, err)
    	}
    }
    
    func TestSHA1(t *testing.T) {
    	pemBlock, _ := pem.Decode([]byte(ecdsaSHA1CertPem))
    	cert, err := ParseCertificate(pemBlock.Bytes)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  5. doc/godebug.md

    There is no plan to remove this setting.
    
    ### Go 1.18
    
    Go 1.18 removed support for SHA1 in most X.509 certificates,
    controlled by the [`x509sha1` setting](/pkg/crypto/x509#InsecureAlgorithmError).
    This setting will be removed in a future release, Go 1.22 at the earliest.
    
    ### Go 1.10
    
    Go 1.10 changed how build caching worked and added test caching, along
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"(*RevocationList).CheckSignatureFrom", Method, 19},
    		{"(CertificateInvalidError).Error", Method, 0},
    		{"(ConstraintViolationError).Error", Method, 0},
    		{"(HostnameError).Error", Method, 0},
    		{"(InsecureAlgorithmError).Error", Method, 6},
    		{"(OID).Equal", Method, 22},
    		{"(OID).EqualASN1OID", Method, 22},
    		{"(OID).String", Method, 22},
    		{"(PublicKeyAlgorithm).String", Method, 10},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top