mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-04 12:37:35 +03:00
allow parsed or generated PubClientHelloMsg to be marshaled back to bytes (#138)
This commit is contained in:
parent
9c1996abbb
commit
8e1e65eb22
1 changed files with 7 additions and 0 deletions
|
@ -16,6 +16,7 @@ import (
|
||||||
// ClientHandshakeState will be converted into and from either
|
// ClientHandshakeState will be converted into and from either
|
||||||
// - clientHandshakeState (TLS 1.2)
|
// - clientHandshakeState (TLS 1.2)
|
||||||
// - clientHandshakeStateTLS13 (TLS 1.3)
|
// - clientHandshakeStateTLS13 (TLS 1.3)
|
||||||
|
//
|
||||||
// uTLS will call .handshake() on one of these private internal states,
|
// uTLS will call .handshake() on one of these private internal states,
|
||||||
// to perform TLS handshake using standard crypto/tls implementation.
|
// to perform TLS handshake using standard crypto/tls implementation.
|
||||||
type PubClientHandshakeState struct {
|
type PubClientHandshakeState struct {
|
||||||
|
@ -431,6 +432,12 @@ func UnmarshalClientHello(data []byte) *PubClientHelloMsg {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Marshal allows external code to convert a ClientHello object back into
|
||||||
|
// raw bytes.
|
||||||
|
func (chm *PubClientHelloMsg) Marshal() []byte {
|
||||||
|
return chm.getPrivatePtr().marshal()
|
||||||
|
}
|
||||||
|
|
||||||
// A CipherSuite is a specific combination of key agreement, cipher and MAC
|
// A CipherSuite is a specific combination of key agreement, cipher and MAC
|
||||||
// function. All cipher suites currently assume RSA key agreement.
|
// function. All cipher suites currently assume RSA key agreement.
|
||||||
type PubCipherSuite struct {
|
type PubCipherSuite struct {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue