const crypto/tls.recordTypeHandshake
31 uses
crypto/tls (current package)
common.go#L56: recordTypeHandshake recordType = 22
conn.go#L641: if (typ != recordTypeAlert && typ != recordTypeHandshake) || vers >= 0x1000 {
conn.go#L678: if c.vers == VersionTLS13 && typ != recordTypeHandshake && c.hand.Len() > 0 {
conn.go#L743: case recordTypeHandshake:
conn.go#L1242: _, err := c.writeRecordLocked(recordTypeHandshake, msg.marshal())
handshake_client.go#L167: if _, err := c.writeRecord(recordTypeHandshake, hello.marshal()); err != nil {
handshake_client.go#L569: if _, err := c.writeRecord(recordTypeHandshake, certMsg.marshal()); err != nil {
handshake_client.go#L581: if _, err := c.writeRecord(recordTypeHandshake, ckx.marshal()); err != nil {
handshake_client.go#L629: if _, err := c.writeRecord(recordTypeHandshake, certVerify.marshal()); err != nil {
handshake_client.go#L816: if _, err := c.writeRecord(recordTypeHandshake, finished.marshal()); err != nil {
handshake_client_tls13.go#L262: if _, err := c.writeRecord(recordTypeHandshake, hs.hello.marshal()); err != nil {
handshake_client_tls13.go#L570: if _, err := c.writeRecord(recordTypeHandshake, certMsg.marshal()); err != nil {
handshake_client_tls13.go#L608: if _, err := c.writeRecord(recordTypeHandshake, certVerifyMsg.marshal()); err != nil {
handshake_client_tls13.go#L623: if _, err := c.writeRecord(recordTypeHandshake, finished.marshal()); err != nil {
handshake_server.go#L435: if _, err := c.writeRecord(recordTypeHandshake, hs.hello.marshal()); err != nil {
handshake_server.go#L475: if _, err := c.writeRecord(recordTypeHandshake, hs.hello.marshal()); err != nil {
handshake_server.go#L482: if _, err := c.writeRecord(recordTypeHandshake, certMsg.marshal()); err != nil {
handshake_server.go#L490: if _, err := c.writeRecord(recordTypeHandshake, certStatus.marshal()); err != nil {
handshake_server.go#L503: if _, err := c.writeRecord(recordTypeHandshake, skx.marshal()); err != nil {
handshake_server.go#L530: if _, err := c.writeRecord(recordTypeHandshake, certReq.marshal()); err != nil {
handshake_server.go#L537: if _, err := c.writeRecord(recordTypeHandshake, helloDone.marshal()); err != nil {
handshake_server.go#L742: if _, err := c.writeRecord(recordTypeHandshake, m.marshal()); err != nil {
handshake_server.go#L759: if _, err := c.writeRecord(recordTypeHandshake, finished.marshal()); err != nil {
handshake_server_tls13.go#L432: if _, err := c.writeRecord(recordTypeHandshake, helloRetryRequest.marshal()); err != nil {
handshake_server_tls13.go#L533: if _, err := c.writeRecord(recordTypeHandshake, hs.hello.marshal()); err != nil {
handshake_server_tls13.go#L576: if _, err := c.writeRecord(recordTypeHandshake, encryptedExtensions.marshal()); err != nil {
handshake_server_tls13.go#L606: if _, err := c.writeRecord(recordTypeHandshake, certReq.marshal()); err != nil {
handshake_server_tls13.go#L618: if _, err := c.writeRecord(recordTypeHandshake, certMsg.marshal()); err != nil {
handshake_server_tls13.go#L650: if _, err := c.writeRecord(recordTypeHandshake, certVerifyMsg.marshal()); err != nil {
handshake_server_tls13.go#L665: if _, err := c.writeRecord(recordTypeHandshake, finished.marshal()); err != nil {
handshake_server_tls13.go#L758: if _, err := c.writeRecord(recordTypeHandshake, m.marshal()); err != nil {
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |