Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for SignatureScheme (0.24 sec)

  1. src/crypto/tls/boring_test.go

    	for _, suite := range cipherSuites {
    		if suite.id == id {
    			return suite.flags&suiteECSign == suiteECSign
    		}
    	}
    	panic(fmt.Sprintf("unknown cipher suite %#x", id))
    }
    
    func isBoringSignatureScheme(alg SignatureScheme) bool {
    	switch alg {
    	default:
    		return false
    	case PKCS1WithSHA256,
    		ECDSAWithP256AndSHA256,
    		PKCS1WithSHA384,
    		ECDSAWithP384AndSHA384,
    		PKCS1WithSHA512,
    		ECDSAWithP521AndSHA512,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:45:37 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  2. api/go1.15.txt

    pkg crypto/tls, method (*Dialer) DialContext(context.Context, string, string) (net.Conn, error)
    pkg crypto/tls, method (ClientAuthType) String() string
    pkg crypto/tls, method (CurveID) String() string
    pkg crypto/tls, method (SignatureScheme) String() string
    pkg crypto/tls, type Config struct, VerifyConnection func(ConnectionState) error
    pkg crypto/tls, type Dialer struct
    pkg crypto/tls, type Dialer struct, Config *Config
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 17 02:15:01 UTC 2020
    - 7.6K bytes
    - Viewed (0)
  3. src/crypto/tls/handshake_messages_test.go

    	}
    	return reflect.ValueOf(m)
    }
    
    func (*certificateVerifyMsg) Generate(rand *rand.Rand, size int) reflect.Value {
    	m := &certificateVerifyMsg{}
    	m.hasSignatureAlgorithm = true
    	m.signatureAlgorithm = SignatureScheme(rand.Intn(30000))
    	m.signature = randomBytes(rand.Intn(15)+1, rand)
    	return reflect.ValueOf(m)
    }
    
    func (*certificateStatusMsg) Generate(rand *rand.Rand, size int) reflect.Value {
    	m := &certificateStatusMsg{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  4. src/crypto/tls/handshake_server_tls13.go

    	clientHello     *clientHelloMsg
    	hello           *serverHelloMsg
    	sentDummyCCS    bool
    	usingPSK        bool
    	earlyData       bool
    	suite           *cipherSuiteTLS13
    	cert            *Certificate
    	sigAlg          SignatureScheme
    	earlySecret     []byte
    	sharedKey       []byte
    	handshakeSecret []byte
    	masterSecret    []byte
    	trafficSecret   []byte // client_application_traffic_secret_0
    	transcript      hash.Hash
    	clientFinished  []byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  5. api/go1.10.txt

    pkg archive/zip, type FileHeader struct, NonUTF8 bool
    pkg bufio, method (*Reader) Size() int
    pkg bufio, method (*Writer) Size() int
    pkg crypto/tls, const ECDSAWithSHA1 = 515
    pkg crypto/tls, const ECDSAWithSHA1 SignatureScheme
    pkg crypto/x509, const CANotAuthorizedForExtKeyUsage = 9
    pkg crypto/x509, const CANotAuthorizedForExtKeyUsage InvalidReason
    pkg crypto/x509, const ExtKeyUsageMicrosoftCommercialCodeSigning = 12
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 06 05:00:01 UTC 2018
    - 30.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"(AlertError).Error", Method, 21},
    		{"(ClientAuthType).String", Method, 15},
    		{"(CurveID).String", Method, 15},
    		{"(QUICEncryptionLevel).String", Method, 21},
    		{"(RecordHeaderError).Error", Method, 6},
    		{"(SignatureScheme).String", Method, 15},
    		{"AlertError", Type, 21},
    		{"Certificate", Type, 0},
    		{"Certificate.Certificate", Field, 0},
    		{"Certificate.Leaf", Field, 0},
    		{"Certificate.OCSPStaple", Field, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  7. api/go1.13.txt

    pkg crypto/ed25519, type PrivateKey []uint8
    pkg crypto/ed25519, type PublicKey []uint8
    pkg crypto/tls, const Ed25519 = 2055
    pkg crypto/tls, const Ed25519 SignatureScheme
    pkg crypto/x509, const Ed25519 = 4
    pkg crypto/x509, const Ed25519 PublicKeyAlgorithm
    pkg crypto/x509, const PureEd25519 = 16
    pkg crypto/x509, const PureEd25519 SignatureAlgorithm
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 08 18:44:16 UTC 2019
    - 452.6K bytes
    - Viewed (0)
  8. api/go1.14.txt

    pkg crypto/tls, method (*ClientHelloInfo) SupportsCertificate(*Certificate) error
    pkg crypto/tls, type Certificate struct, SupportedSignatureAlgorithms []SignatureScheme
    pkg crypto/tls, type CertificateRequestInfo struct, Version uint16
    pkg crypto/tls, type CipherSuite struct
    pkg crypto/tls, type CipherSuite struct, ID uint16
    pkg crypto/tls, type CipherSuite struct, Insecure bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 20:31:46 UTC 2023
    - 508.9K bytes
    - Viewed (0)
Back to top