Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for SignatureAlgorithm (0.2 sec)

  1. src/crypto/x509/x509.go

    	var override string
    	if SignatureAlgorithm(e) == SHA1WithRSA || SignatureAlgorithm(e) == ECDSAWithSHA1 {
    		override = " (temporarily override with GODEBUG=x509sha1=1)"
    	}
    	return fmt.Sprintf("x509: cannot verify signature: insecure algorithm %v", SignatureAlgorithm(e)) + override
    }
    
    // ConstraintViolationError results when a requested usage is not permitted by
    // a certificate. For example: checking a signature when the public key isn't a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  2. src/crypto/tls/handshake_messages.go

    	signatureAlgorithm    SignatureScheme
    	signature             []byte
    }
    
    func (m *certificateVerifyMsg) marshal() ([]byte, error) {
    	var b cryptobyte.Builder
    	b.AddUint8(typeCertificateVerify)
    	b.AddUint24LengthPrefixed(func(b *cryptobyte.Builder) {
    		if m.hasSignatureAlgorithm {
    			b.AddUint16(uint16(m.signatureAlgorithm))
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
Back to top