mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-04 12:37:35 +03:00
Expose UnmarshalClientHello func (#62)
This commit is contained in:
parent
4ee6244579
commit
33a29038e7
1 changed files with 10 additions and 0 deletions
10
u_public.go
10
u_public.go
|
@ -421,6 +421,16 @@ func (chm *clientHelloMsg) getPublicPtr() *ClientHelloMsg {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// UnmarshalClientHello allows external code to parse raw client hellos.
|
||||||
|
// It returns nil on failure.
|
||||||
|
func UnmarshalClientHello(data []byte) *ClientHelloMsg {
|
||||||
|
m := &clientHelloMsg{}
|
||||||
|
if m.unmarshal(data) {
|
||||||
|
return m.getPublicPtr()
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
// 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 CipherSuite struct {
|
type CipherSuite struct {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue