From 33a29038e742910d6ec82636748dfad5dd7f30ae Mon Sep 17 00:00:00 2001 From: maxb Date: Wed, 19 Aug 2020 20:01:03 -0700 Subject: [PATCH] Expose UnmarshalClientHello func (#62) --- u_public.go | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/u_public.go b/u_public.go index 649d05a..847aa75 100644 --- a/u_public.go +++ b/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 // function. All cipher suites currently assume RSA key agreement. type CipherSuite struct {