Home
last modified time | relevance | path

Searched refs:handshakeType (Results 1 – 25 of 424) sorted by relevance

12345678910>>...17

/dports/devel/mutagen/mutagen-0.11.8/vendor/github.com/pion/dtls/v2/
H A Dhandshake.go4 type handshakeType uint8 type
7 handshakeTypeHelloRequest handshakeType = 0
8 handshakeTypeClientHello handshakeType = 1
9 handshakeTypeServerHello handshakeType = 2
10 handshakeTypeHelloVerifyRequest handshakeType = 3
11 handshakeTypeCertificate handshakeType = 11
12 handshakeTypeServerKeyExchange handshakeType = 12
28 handshakeType() handshakeType methodSpec
31 func (h handshakeType) String() string {
88 h.handshakeHeader.handshakeType = h.handshakeMessage.handshakeType()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/Mono.Security/Mono.Security.Protocol.Tls.Handshake/
H A DHandshakeMessage.cs34 private HandshakeType handshakeType; field in Mono.Security.Protocol.Tls.Handshake.HandshakeMessage
49 get { return this.handshakeType; }
63 HandshakeType handshakeType) in HandshakeMessage() argument
64 : this(context, handshakeType, ContentType.Handshake) in HandshakeMessage()
70 HandshakeType handshakeType, in HandshakeMessage() argument
74 this.handshakeType = handshakeType; in HandshakeMessage()
80 HandshakeType handshakeType, in HandshakeMessage() argument
84 this.handshakeType = handshakeType; in HandshakeMessage()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.ServiceModel/Mono.Security.Protocol.Tls.Handshake/
H A DHandshakeMessage.cs34 private HandshakeType handshakeType; field in Mono.Security.Protocol.Tls.Handshake.HandshakeMessage
49 get { return this.handshakeType; }
63 HandshakeType handshakeType) in HandshakeMessage() argument
64 : this(context, handshakeType, ContentType.Handshake) in HandshakeMessage()
70 HandshakeType handshakeType, in HandshakeMessage() argument
74 this.handshakeType = handshakeType; in HandshakeMessage()
80 HandshakeType handshakeType, in HandshakeMessage() argument
84 this.handshakeType = handshakeType; in HandshakeMessage()
/dports/java/bouncycastle15/crypto-169/tls/src/main/java/org/bouncycastle/tls/
H A DHandshakeMessageOutput.java14 static void send(TlsProtocol protocol, short handshakeType, byte[] body) in send() argument
17 HandshakeMessageOutput message = new HandshakeMessageOutput(handshakeType, body.length); in send()
22 HandshakeMessageOutput(short handshakeType) throws IOException in HandshakeMessageOutput() argument
24 this(handshakeType, 60); in HandshakeMessageOutput()
27 HandshakeMessageOutput(short handshakeType, int bodyLength) throws IOException in HandshakeMessageOutput() argument
30 TlsUtils.checkUint8(handshakeType); in HandshakeMessageOutput()
31 TlsUtils.writeUint8(handshakeType, this); in HandshakeMessageOutput()
H A DHandshakeType.java45 public static String getName(short handshakeType) in getName() argument
47 switch (handshakeType) in getName()
94 public static String getText(short handshakeType) in getText() argument
96 return getName(handshakeType) + "(" + handshakeType + ")"; in getText()
99 public static boolean isRecognized(short handshakeType) in isRecognized() argument
101 switch (handshakeType) in isRecognized()
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/java.base/share/classes/sun/security/ssl/
H A DPostHandshakeContext.java72 void dispatch(byte handshakeType, ByteBuffer fragment) throws IOException { in dispatch() argument
73 SSLConsumer consumer = handshakeConsumers.get(handshakeType); in dispatch()
77 SSLHandshake.nameOf(handshakeType)); in dispatch()
85 SSLHandshake.nameOf(handshakeType), unsoe); in dispatch()
89 SSLHandshake.nameOf(handshakeType), be); in dispatch()
93 static boolean isConsumable(TransportContext context, byte handshakeType) { in isConsumable() argument
94 if (handshakeType == SSLHandshake.KEY_UPDATE.id) { in isConsumable()
100 if (handshakeType == SSLHandshake.NEW_SESSION_TICKET.id) { in isConsumable()
H A DCiphertext.java35 final byte handshakeType; field in Ciphertext
42 this.handshakeType = -1; in Ciphertext()
47 Ciphertext(byte contentType, byte handshakeType, long recordSN) { in Ciphertext() argument
49 this.handshakeType = handshakeType; in Ciphertext()
H A DDTLSInputRecord.java365 if (!SSLHandshake.isKnown(handshakeType)) { in parseHandshakeMessage()
369 (handshakeType & 0xFF)); in parseHandshakeMessage()
417 handshakeType, messageLength, in parseHandshakeMessage()
514 this.handshakeType = handshakeType; in HandshakeFragment()
574 this.handshakeType = HF_UNKNOWN; in HandshakeFlight()
588 (this.handshakeType == hs.handshakeType) && in isRetransmitOf()
596 hf.handshakeType = this.handshakeType; in clone()
672 handshakeFlight.handshakeType = hsf.handshakeType; in queueUpHandshake()
988 hsf.handshakeType); in isDesirable()
1589 byte hsType = hsFrag.handshakeType; in handshakeHashing()
[all …]
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/java.base/share/classes/sun/security/ssl/
H A DPostHandshakeContext.java72 void dispatch(byte handshakeType, ByteBuffer fragment) throws IOException { in dispatch() argument
73 SSLConsumer consumer = handshakeConsumers.get(handshakeType); in dispatch()
77 SSLHandshake.nameOf(handshakeType)); in dispatch()
85 SSLHandshake.nameOf(handshakeType), unsoe); in dispatch()
89 SSLHandshake.nameOf(handshakeType), be); in dispatch()
93 static boolean isConsumable(TransportContext context, byte handshakeType) { in isConsumable() argument
94 if (handshakeType == SSLHandshake.KEY_UPDATE.id) { in isConsumable()
100 if (handshakeType == SSLHandshake.NEW_SESSION_TICKET.id) { in isConsumable()
H A DCiphertext.java35 final byte handshakeType; field in Ciphertext
42 this.handshakeType = -1; in Ciphertext()
47 Ciphertext(byte contentType, byte handshakeType, long recordSN) { in Ciphertext() argument
49 this.handshakeType = handshakeType; in Ciphertext()
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/jdk/src/share/classes/sun/security/ssl/
H A DPostHandshakeContext.java72 void dispatch(byte handshakeType, ByteBuffer fragment) throws IOException { in dispatch() argument
73 SSLConsumer consumer = handshakeConsumers.get(handshakeType); in dispatch()
77 SSLHandshake.nameOf(handshakeType)); in dispatch()
85 SSLHandshake.nameOf(handshakeType), unsoe); in dispatch()
89 SSLHandshake.nameOf(handshakeType), be); in dispatch()
93 static boolean isConsumable(TransportContext context, byte handshakeType) { in isConsumable() argument
94 if (handshakeType == SSLHandshake.KEY_UPDATE.id) { in isConsumable()
100 if (handshakeType == SSLHandshake.NEW_SESSION_TICKET.id) { in isConsumable()
H A DCiphertext.java35 final byte handshakeType; field in Ciphertext
42 this.handshakeType = -1; in Ciphertext()
47 Ciphertext(byte contentType, byte handshakeType, long recordSN) { in Ciphertext() argument
49 this.handshakeType = handshakeType; in Ciphertext()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/src/java.base/share/classes/sun/security/ssl/
H A DPostHandshakeContext.java73 void dispatch(byte handshakeType, ByteBuffer fragment) throws IOException { in dispatch() argument
74 SSLConsumer consumer = handshakeConsumers.get(handshakeType); in dispatch()
78 SSLHandshake.nameOf(handshakeType)); in dispatch()
86 SSLHandshake.nameOf(handshakeType), unsoe); in dispatch()
90 SSLHandshake.nameOf(handshakeType), be); in dispatch()
94 static boolean isConsumable(TransportContext context, byte handshakeType) { in isConsumable() argument
95 if (handshakeType == SSLHandshake.KEY_UPDATE.id) { in isConsumable()
101 if (handshakeType == SSLHandshake.NEW_SESSION_TICKET.id) { in isConsumable()
H A DCiphertext.java35 final byte handshakeType; field in Ciphertext
42 this.handshakeType = -1; in Ciphertext()
47 Ciphertext(byte contentType, byte handshakeType, long recordSN) { in Ciphertext() argument
49 this.handshakeType = handshakeType; in Ciphertext()
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/src/java.base/share/classes/sun/security/ssl/
H A DPostHandshakeContext.java73 void dispatch(byte handshakeType, ByteBuffer fragment) throws IOException { in dispatch() argument
74 SSLConsumer consumer = handshakeConsumers.get(handshakeType); in dispatch()
78 SSLHandshake.nameOf(handshakeType)); in dispatch()
86 SSLHandshake.nameOf(handshakeType), unsoe); in dispatch()
90 SSLHandshake.nameOf(handshakeType), be); in dispatch()
94 static boolean isConsumable(TransportContext context, byte handshakeType) { in isConsumable() argument
95 if (handshakeType == SSLHandshake.KEY_UPDATE.id) { in isConsumable()
101 if (handshakeType == SSLHandshake.NEW_SESSION_TICKET.id) { in isConsumable()
H A DCiphertext.java35 final byte handshakeType; field in Ciphertext
42 this.handshakeType = -1; in Ciphertext()
47 Ciphertext(byte contentType, byte handshakeType, long recordSN) { in Ciphertext() argument
49 this.handshakeType = handshakeType; in Ciphertext()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/src/java.base/share/classes/sun/security/ssl/
H A DPostHandshakeContext.java73 void dispatch(byte handshakeType, ByteBuffer fragment) throws IOException { in dispatch() argument
74 SSLConsumer consumer = handshakeConsumers.get(handshakeType); in dispatch()
78 SSLHandshake.nameOf(handshakeType)); in dispatch()
86 SSLHandshake.nameOf(handshakeType), unsoe); in dispatch()
90 SSLHandshake.nameOf(handshakeType), be); in dispatch()
94 static boolean isConsumable(TransportContext context, byte handshakeType) { in isConsumable() argument
95 if (handshakeType == SSLHandshake.KEY_UPDATE.id) { in isConsumable()
101 if (handshakeType == SSLHandshake.NEW_SESSION_TICKET.id) { in isConsumable()
H A DCiphertext.java35 final byte handshakeType; field in Ciphertext
42 this.handshakeType = -1; in Ciphertext()
47 Ciphertext(byte contentType, byte handshakeType, long recordSN) { in Ciphertext() argument
49 this.handshakeType = handshakeType; in Ciphertext()
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/jdk/src/share/classes/sun/security/ssl/
H A DPostHandshakeContext.java72 void dispatch(byte handshakeType, ByteBuffer fragment) throws IOException { in dispatch() argument
73 SSLConsumer consumer = handshakeConsumers.get(handshakeType); in dispatch()
77 SSLHandshake.nameOf(handshakeType)); in dispatch()
85 SSLHandshake.nameOf(handshakeType), unsoe); in dispatch()
89 SSLHandshake.nameOf(handshakeType), be); in dispatch()
93 static boolean isConsumable(TransportContext context, byte handshakeType) { in isConsumable() argument
94 if (handshakeType == SSLHandshake.KEY_UPDATE.id) { in isConsumable()
100 if (handshakeType == SSLHandshake.NEW_SESSION_TICKET.id) { in isConsumable()
H A DCiphertext.java35 final byte handshakeType; field in Ciphertext
42 this.handshakeType = -1; in Ciphertext()
47 Ciphertext(byte contentType, byte handshakeType, long recordSN) { in Ciphertext() argument
49 this.handshakeType = handshakeType; in Ciphertext()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/java.base/share/classes/sun/security/ssl/
H A DPostHandshakeContext.java73 void dispatch(byte handshakeType, ByteBuffer fragment) throws IOException { in dispatch() argument
74 SSLConsumer consumer = handshakeConsumers.get(handshakeType); in dispatch()
78 SSLHandshake.nameOf(handshakeType)); in dispatch()
86 SSLHandshake.nameOf(handshakeType), unsoe); in dispatch()
90 SSLHandshake.nameOf(handshakeType), be); in dispatch()
99 static boolean isConsumable(TransportContext context, byte handshakeType) { in isConsumable() argument
100 if (handshakeType == SSLHandshake.KEY_UPDATE.id) { in isConsumable()
106 if (handshakeType == SSLHandshake.NEW_SESSION_TICKET.id) { in isConsumable()
H A DCiphertext.java35 final byte handshakeType; field in Ciphertext
42 this.handshakeType = -1; in Ciphertext()
47 Ciphertext(byte contentType, byte handshakeType, long recordSN) { in Ciphertext() argument
49 this.handshakeType = handshakeType; in Ciphertext()
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/src/java.base/share/classes/sun/security/ssl/
H A DPostHandshakeContext.java73 void dispatch(byte handshakeType, ByteBuffer fragment) throws IOException { in dispatch() argument
74 SSLConsumer consumer = handshakeConsumers.get(handshakeType); in dispatch()
78 SSLHandshake.nameOf(handshakeType)); in dispatch()
86 SSLHandshake.nameOf(handshakeType), unsoe); in dispatch()
90 SSLHandshake.nameOf(handshakeType), be); in dispatch()
99 static boolean isConsumable(TransportContext context, byte handshakeType) { in isConsumable() argument
100 if (handshakeType == SSLHandshake.KEY_UPDATE.id) { in isConsumable()
106 if (handshakeType == SSLHandshake.NEW_SESSION_TICKET.id) { in isConsumable()
H A DCiphertext.java35 final byte handshakeType; field in Ciphertext
42 this.handshakeType = -1; in Ciphertext()
47 Ciphertext(byte contentType, byte handshakeType, long recordSN) { in Ciphertext() argument
49 this.handshakeType = handshakeType; in Ciphertext()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/src/java.base/share/classes/sun/security/ssl/
H A DCiphertext.java35 final byte handshakeType; field in Ciphertext
42 this.handshakeType = -1; in Ciphertext()
47 Ciphertext(byte contentType, byte handshakeType, long recordSN) { in Ciphertext() argument
49 this.handshakeType = handshakeType; in Ciphertext()

12345678910>>...17