allow parsed or generated PubClientHelloMsg to be marshaled back to bytes (#138)

This commit is contained in:
Jack Wampler 2022-11-08 09:14:28 -07:00 committed by GitHub
parent 9c1996abbb
commit 8e1e65eb22
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -16,6 +16,7 @@ import (
// ClientHandshakeState will be converted into and from either
// - clientHandshakeState (TLS 1.2)
// - clientHandshakeStateTLS13 (TLS 1.3)
//
// uTLS will call .handshake() on one of these private internal states,
// to perform TLS handshake using standard crypto/tls implementation.
type PubClientHandshakeState struct {
@ -431,6 +432,12 @@ func UnmarshalClientHello(data []byte) *PubClientHelloMsg {
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
// function. All cipher suites currently assume RSA key agreement.
type PubCipherSuite struct {