pax_global_header00006660000000000000000000000064145570346060014524gustar00rootroot0000000000000052 comment=4d9f71cd4ba1fe81415efac312664ccc4bc79b46 noise-1.1.0/000077500000000000000000000000001455703460600126405ustar00rootroot00000000000000noise-1.1.0/.github/000077500000000000000000000000001455703460600142005ustar00rootroot00000000000000noise-1.1.0/.github/workflows/000077500000000000000000000000001455703460600162355ustar00rootroot00000000000000noise-1.1.0/.github/workflows/ci.yml000066400000000000000000000007331455703460600173560ustar00rootroot00000000000000on: [push, pull_request] name: CI jobs: test: runs-on: ubuntu-latest steps: - name: Install Go uses: actions/setup-go@v2 with: go-version: 1.16.x - name: Checkout code uses: actions/checkout@v2 - name: Test run: go test ./... lint: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: golangci-lint uses: golangci/golangci-lint-action@v2 with: version: latest noise-1.1.0/CONTRIBUTING.md000066400000000000000000000001101455703460600150610ustar00rootroot00000000000000See the [Flynn contributing guide](https://flynn.io/docs/contributing). noise-1.1.0/LICENSE000066400000000000000000000030101455703460600136370ustar00rootroot00000000000000Flynn® is a trademark of Prime Directive, Inc. Copyright (c) 2015 Prime Directive, Inc. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of Prime Directive, Inc. nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. noise-1.1.0/README.md000066400000000000000000000006571455703460600141270ustar00rootroot00000000000000# noise [![Go Reference](https://pkg.go.dev/badge/github.com/flynn/noise.svg)](https://pkg.go.dev/github.com/flynn/noise) [![CI Status](https://github.com/flynn/noise/actions/workflows/ci.yml/badge.svg)](https://github.com/flynn/noise/actions) This is a Go package that implements the [Noise Protocol Framework](https://noiseprotocol.org). See [the documentation](https://pkg.go.dev/github.com/flynn/noise) for usage information. noise-1.1.0/cipher_suite.go000066400000000000000000000124511455703460600156550ustar00rootroot00000000000000package noise import ( "crypto/aes" "crypto/cipher" "crypto/rand" "crypto/sha256" "crypto/sha512" "encoding/binary" "hash" "io" "golang.org/x/crypto/blake2b" "golang.org/x/crypto/blake2s" "golang.org/x/crypto/chacha20poly1305" "golang.org/x/crypto/curve25519" ) // A DHKey is a keypair used for Diffie-Hellman key agreement. type DHKey struct { Private []byte Public []byte } // A DHFunc implements Diffie-Hellman key agreement. type DHFunc interface { // GenerateKeypair generates a new keypair using random as a source of // entropy. GenerateKeypair(random io.Reader) (DHKey, error) // DH performs a Diffie-Hellman calculation between the provided private and // public keys and returns the result. DH(privkey, pubkey []byte) ([]byte, error) // DHLen is the number of bytes returned by DH. DHLen() int // DHName is the name of the DH function. DHName() string } // A HashFunc implements a cryptographic hash function. type HashFunc interface { // Hash returns a hash state. Hash() hash.Hash // HashName is the name of the hash function. HashName() string } // A CipherFunc implements an AEAD symmetric cipher. type CipherFunc interface { // Cipher initializes the algorithm with the provided key and returns a Cipher. Cipher(k [32]byte) Cipher // CipherName is the name of the cipher. CipherName() string } // A Cipher is a AEAD cipher that has been initialized with a key. type Cipher interface { // Encrypt encrypts the provided plaintext with a nonce and then appends the // ciphertext to out along with an authentication tag over the ciphertext // and optional authenticated data. Encrypt(out []byte, n uint64, ad, plaintext []byte) []byte // Decrypt authenticates the ciphertext and optional authenticated data and // then decrypts the provided ciphertext using the provided nonce and // appends it to out. Decrypt(out []byte, n uint64, ad, ciphertext []byte) ([]byte, error) } // A CipherSuite is a set of cryptographic primitives used in a Noise protocol. // It should be constructed with NewCipherSuite. type CipherSuite interface { DHFunc CipherFunc HashFunc Name() []byte } // NewCipherSuite returns a CipherSuite constructed from the specified // primitives. func NewCipherSuite(dh DHFunc, c CipherFunc, h HashFunc) CipherSuite { return ciphersuite{ DHFunc: dh, CipherFunc: c, HashFunc: h, name: []byte(dh.DHName() + "_" + c.CipherName() + "_" + h.HashName()), } } type ciphersuite struct { DHFunc CipherFunc HashFunc name []byte } func (s ciphersuite) Name() []byte { return s.name } // DH25519 is the Curve25519 ECDH function. var DH25519 DHFunc = dh25519{} type dh25519 struct{} func (dh25519) GenerateKeypair(rng io.Reader) (DHKey, error) { privkey := make([]byte, 32) if rng == nil { rng = rand.Reader } if _, err := io.ReadFull(rng, privkey); err != nil { return DHKey{}, err } pubkey, err := curve25519.X25519(privkey, curve25519.Basepoint) if err != nil { return DHKey{}, err } return DHKey{Private: privkey, Public: pubkey}, nil } func (dh25519) DH(privkey, pubkey []byte) ([]byte, error) { return curve25519.X25519(privkey, pubkey) } func (dh25519) DHLen() int { return 32 } func (dh25519) DHName() string { return "25519" } type cipherFn struct { fn func([32]byte) Cipher name string } func (c cipherFn) Cipher(k [32]byte) Cipher { return c.fn(k) } func (c cipherFn) CipherName() string { return c.name } // CipherAESGCM is the AES256-GCM AEAD cipher. var CipherAESGCM CipherFunc = cipherFn{cipherAESGCM, "AESGCM"} func cipherAESGCM(k [32]byte) Cipher { c, err := aes.NewCipher(k[:]) if err != nil { panic(err) } gcm, err := cipher.NewGCM(c) if err != nil { panic(err) } return aeadCipher{ gcm, func(n uint64) []byte { var nonce [12]byte binary.BigEndian.PutUint64(nonce[4:], n) return nonce[:] }, } } // CipherChaChaPoly is the ChaCha20-Poly1305 AEAD cipher construction. var CipherChaChaPoly CipherFunc = cipherFn{cipherChaChaPoly, "ChaChaPoly"} func cipherChaChaPoly(k [32]byte) Cipher { c, err := chacha20poly1305.New(k[:]) if err != nil { panic(err) } return aeadCipher{ c, func(n uint64) []byte { var nonce [12]byte binary.LittleEndian.PutUint64(nonce[4:], n) return nonce[:] }, } } type aeadCipher struct { cipher.AEAD nonce func(uint64) []byte } func (c aeadCipher) Encrypt(out []byte, n uint64, ad, plaintext []byte) []byte { return c.Seal(out, c.nonce(n), plaintext, ad) } func (c aeadCipher) Decrypt(out []byte, n uint64, ad, ciphertext []byte) ([]byte, error) { return c.Open(out, c.nonce(n), ciphertext, ad) } type hashFn struct { fn func() hash.Hash name string } func (h hashFn) Hash() hash.Hash { return h.fn() } func (h hashFn) HashName() string { return h.name } // HashSHA256 is the SHA-256 hash function. var HashSHA256 HashFunc = hashFn{sha256.New, "SHA256"} // HashSHA512 is the SHA-512 hash function. var HashSHA512 HashFunc = hashFn{sha512.New, "SHA512"} func blake2bNew() hash.Hash { h, err := blake2b.New512(nil) if err != nil { panic(err) } return h } // HashBLAKE2b is the BLAKE2b hash function. var HashBLAKE2b HashFunc = hashFn{blake2bNew, "BLAKE2b"} func blake2sNew() hash.Hash { h, err := blake2s.New256(nil) if err != nil { panic(err) } return h } // HashBLAKE2s is the BLAKE2s hash function. var HashBLAKE2s HashFunc = hashFn{blake2sNew, "BLAKE2s"} noise-1.1.0/go.mod000066400000000000000000000002421455703460600137440ustar00rootroot00000000000000module github.com/flynn/noise go 1.16 require ( golang.org/x/crypto v0.0.0-20210322153248-0c34fe9e7dc2 gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c ) noise-1.1.0/go.sum000066400000000000000000000026231455703460600137760ustar00rootroot00000000000000github.com/kr/pretty v0.2.1 h1:Fmg33tUaq4/8ym9TJN1x7sLJnHVwhP33CNkpYV/7rwI= github.com/kr/pretty v0.2.1/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI= github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= github.com/kr/text v0.1.0 h1:45sCR5RtlFHMR4UwH9sdQ5TC8v0qDQCHnXt+kaKSTVE= github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= golang.org/x/crypto v0.0.0-20210322153248-0c34fe9e7dc2 h1:It14KIkyBFYkHkwZ7k45minvA9aorojkyjGk9KJ5B/w= golang.org/x/crypto v0.0.0-20210322153248-0c34fe9e7dc2/go.mod h1:T9bdIzuCu7OtxOm1hfPfRQxPLYneinmdGuTeoZ9dtd4= golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= golang.org/x/sys v0.0.0-20201119102817-f84b799fce68 h1:nxC68pudNYkKU6jWhgrqdreuFiOQWj1Fs7T3VrH4Pjw= golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk= gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q= noise-1.1.0/hkdf.go000066400000000000000000000016011455703460600141010ustar00rootroot00000000000000package noise import ( "crypto/hmac" "hash" ) func hkdf(h func() hash.Hash, outputs int, out1, out2, out3, chainingKey, inputKeyMaterial []byte) ([]byte, []byte, []byte) { if len(out1) > 0 { panic("len(out1) > 0") } if len(out2) > 0 { panic("len(out2) > 0") } if len(out3) > 0 { panic("len(out3) > 0") } if outputs > 3 { panic("outputs > 3") } tempMAC := hmac.New(h, chainingKey) tempMAC.Write(inputKeyMaterial) tempKey := tempMAC.Sum(out2) out1MAC := hmac.New(h, tempKey) out1MAC.Write([]byte{0x01}) out1 = out1MAC.Sum(out1) if outputs == 1 { return out1, nil, nil } out2MAC := hmac.New(h, tempKey) out2MAC.Write(out1) out2MAC.Write([]byte{0x02}) out2 = out2MAC.Sum(out2) if outputs == 2 { return out1, out2, nil } out3MAC := hmac.New(h, tempKey) out3MAC.Write(out2) out3MAC.Write([]byte{0x03}) out3 = out3MAC.Sum(out3) return out1, out2, out3 } noise-1.1.0/noise_test.go000066400000000000000000000526131455703460600153520ustar00rootroot00000000000000package noise import ( "bytes" "encoding/hex" "math" "testing" . "gopkg.in/check.v1" ) func Test(t *testing.T) { TestingT(t) } type NoiseSuite struct{} var _ = Suite(&NoiseSuite{}) type RandomInc byte func (r *RandomInc) Read(p []byte) (int, error) { for i := range p { p[i] = byte(*r) *r = (*r) + 1 } return len(p), nil } func (NoiseSuite) TestN(c *C) { cs := NewCipherSuite(DH25519, CipherAESGCM, HashSHA256) rng := new(RandomInc) staticR, _ := cs.GenerateKeypair(rng) hs, _ := NewHandshakeState(Config{ CipherSuite: cs, Random: rng, Pattern: HandshakeN, Initiator: true, PeerStatic: staticR.Public, }) hello, _, _, _ := hs.WriteMessage(nil, nil) expected, _ := hex.DecodeString("358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548331a3d1e93b490263abc7a4633867f4") c.Assert(hello, DeepEquals, expected) } func (NoiseSuite) TestX(c *C) { cs := NewCipherSuite(DH25519, CipherChaChaPoly, HashSHA256) rng := new(RandomInc) staticI, _ := cs.GenerateKeypair(rng) staticR, _ := cs.GenerateKeypair(rng) hs, _ := NewHandshakeState(Config{ CipherSuite: cs, Random: rng, Pattern: HandshakeX, Initiator: true, StaticKeypair: staticI, PeerStatic: staticR.Public, }) hello, _, _, _ := hs.WriteMessage(nil, nil) expected, _ := hex.DecodeString("79a631eede1bf9c98f12032cdeadd0e7a079398fc786b88cc846ec89af85a51ad203cd28d81cf65a2da637f557a05728b3ae4abdc3a42d1cda5f719d6cf41d7f2cf1b1c5af10e38a09a9bb7e3b1d589a99492cc50293eaa1f3f391b59bb6990d") c.Assert(hello, DeepEquals, expected) } func (NoiseSuite) TestNN(c *C) { cs := NewCipherSuite(DH25519, CipherAESGCM, HashSHA512) rngI := new(RandomInc) rngR := new(RandomInc) *rngR = 1 hsI, _ := NewHandshakeState(Config{ CipherSuite: cs, Random: rngI, Pattern: HandshakeNN, Initiator: true, }) hsR, _ := NewHandshakeState(Config{ CipherSuite: cs, Random: rngR, Pattern: HandshakeNN, Initiator: false, }) msg, _, _, _ := hsI.WriteMessage(nil, []byte("abc")) c.Assert(msg, HasLen, 35) res, _, _, err := hsR.ReadMessage(nil, msg) c.Assert(err, IsNil) c.Assert(string(res), Equals, "abc") msg, _, _, _ = hsR.WriteMessage(nil, []byte("defg")) c.Assert(msg, HasLen, 52) res, _, _, err = hsI.ReadMessage(nil, msg) c.Assert(err, IsNil) c.Assert(string(res), Equals, "defg") expected, _ := hex.DecodeString("07a37cbc142093c8b755dc1b10e86cb426374ad16aa853ed0bdfc0b2b86d1c7c5e4dc9545d41b3280f4586a5481829e1e24ec5a0") c.Assert(msg, DeepEquals, expected) } func (NoiseSuite) TestXX(c *C) { cs := NewCipherSuite(DH25519, CipherAESGCM, HashSHA256) rngI := new(RandomInc) rngR := new(RandomInc) *rngR = 1 staticI, _ := cs.GenerateKeypair(rngI) staticR, _ := cs.GenerateKeypair(rngR) hsI, _ := NewHandshakeState(Config{ CipherSuite: cs, Random: rngI, Pattern: HandshakeXX, Initiator: true, StaticKeypair: staticI, }) hsR, _ := NewHandshakeState(Config{ CipherSuite: cs, Random: rngR, Pattern: HandshakeXX, StaticKeypair: staticR, }) msg, _, _, _ := hsI.WriteMessage(nil, []byte("abc")) c.Assert(msg, HasLen, 35) res, _, _, err := hsR.ReadMessage(nil, msg) c.Assert(err, IsNil) c.Assert(string(res), Equals, "abc") msg, _, _, _ = hsR.WriteMessage(nil, []byte("defg")) c.Assert(msg, HasLen, 100) res, _, _, err = hsI.ReadMessage(nil, msg) c.Assert(err, IsNil) c.Assert(string(res), Equals, "defg") msg, _, _, _ = hsI.WriteMessage(nil, nil) c.Assert(msg, HasLen, 64) res, _, _, err = hsR.ReadMessage(nil, msg) c.Assert(err, IsNil) c.Assert(res, HasLen, 0) expected, _ := hex.DecodeString("8127f4b35cdbdf0935fcf1ec99016d1dcbc350055b8af360be196905dfb50a2c1c38a7ca9cb0cfe8f4576f36c47a4933eee32288f590ac4305d4b53187577be7") c.Assert(msg, DeepEquals, expected) } func (NoiseSuite) TestIK(c *C) { cs := NewCipherSuite(DH25519, CipherAESGCM, HashSHA256) rngI := new(RandomInc) rngR := new(RandomInc) *rngR = 1 staticI, _ := cs.GenerateKeypair(rngI) staticR, _ := cs.GenerateKeypair(rngR) hsI, _ := NewHandshakeState(Config{ CipherSuite: cs, Random: rngI, Pattern: HandshakeIK, Initiator: true, Prologue: []byte("ABC"), StaticKeypair: staticI, PeerStatic: staticR.Public, }) hsR, _ := NewHandshakeState(Config{ CipherSuite: cs, Random: rngR, Pattern: HandshakeIK, Prologue: []byte("ABC"), StaticKeypair: staticR, }) msg, _, _, _ := hsI.WriteMessage(nil, []byte("abc")) c.Assert(msg, HasLen, 99) res, _, _, err := hsR.ReadMessage(nil, msg) c.Assert(err, IsNil) c.Assert(string(res), Equals, "abc") msg, _, _, _ = hsR.WriteMessage(nil, []byte("defg")) c.Assert(msg, HasLen, 52) res, _, _, err = hsI.ReadMessage(nil, msg) c.Assert(err, IsNil) c.Assert(string(res), Equals, "defg") expected, _ := hex.DecodeString("5869aff450549732cbaaed5e5df9b30a6da31cb0e5742bad5ad4a1a768f1a67b7555a94199d0ce2972e0861b06c2152419a278de") c.Assert(msg, DeepEquals, expected) } func (NoiseSuite) TestXXRoundtrip(c *C) { cs := NewCipherSuite(DH25519, CipherAESGCM, HashSHA256) rngI := new(RandomInc) rngR := new(RandomInc) *rngR = 1 staticI, _ := cs.GenerateKeypair(rngI) staticR, _ := cs.GenerateKeypair(rngR) hsI, _ := NewHandshakeState(Config{ CipherSuite: cs, Random: rngI, Pattern: HandshakeXX, Initiator: true, StaticKeypair: staticI, }) hsR, _ := NewHandshakeState(Config{ CipherSuite: cs, Random: rngR, Pattern: HandshakeXX, StaticKeypair: staticR, }) // -> e msg, _, _, _ := hsI.WriteMessage(nil, []byte("abcdef")) c.Assert(msg, HasLen, 38) res, _, _, err := hsR.ReadMessage(nil, msg) c.Assert(err, IsNil) c.Assert(string(res), Equals, "abcdef") // <- e, dhee, s, dhse msg, _, _, _ = hsR.WriteMessage(nil, nil) c.Assert(msg, HasLen, 96) res, _, _, err = hsI.ReadMessage(nil, msg) c.Assert(err, IsNil) c.Assert(res, HasLen, 0) // -> s, dhse payload := "0123456789012345678901234567890123456789012345678901234567890123456789" msg, csI0, csI1, _ := hsI.WriteMessage(nil, []byte(payload)) c.Assert(msg, HasLen, 134) res, csR0, csR1, err := hsR.ReadMessage(nil, msg) c.Assert(err, IsNil) c.Assert(string(res), Equals, payload) // transport message I -> R msg, err = csI0.Encrypt(nil, nil, []byte("wubba")) c.Assert(err, IsNil) res, err = csR0.Decrypt(nil, nil, msg) c.Assert(err, IsNil) c.Assert(string(res), Equals, "wubba") // transport message I -> R again msg, err = csI0.Encrypt(nil, nil, []byte("aleph")) c.Assert(err, IsNil) res, err = csR0.Decrypt(nil, nil, msg) c.Assert(err, IsNil) c.Assert(string(res), Equals, "aleph") // transport message R <- I msg, err = csR1.Encrypt(nil, nil, []byte("worri")) c.Assert(err, IsNil) res, err = csI1.Decrypt(nil, nil, msg) c.Assert(err, IsNil) c.Assert(string(res), Equals, "worri") } func (NoiseSuite) Test_IXpsk2_Roundtrip(c *C) { cs := NewCipherSuite(DH25519, CipherAESGCM, HashSHA256) rngI := new(RandomInc) rngR := new(RandomInc) *rngR = 1 staticI, err := cs.GenerateKeypair(rngI) if err != nil { c.Fatal(err) } staticR, err := cs.GenerateKeypair(rngR) if err != nil { c.Fatal(err) } psk := []byte("00000000000000000000000000000000") hsI, _ := NewHandshakeState(Config{ CipherSuite: cs, Random: rngI, Pattern: HandshakeIX, PresharedKeyPlacement: 2, PresharedKey: psk, Initiator: true, StaticKeypair: staticI, }) hsR, _ := NewHandshakeState(Config{ CipherSuite: cs, Random: rngR, Pattern: HandshakeIX, PresharedKeyPlacement: 2, StaticKeypair: staticR, }) // -> e, s msg, _, _, _ := hsI.WriteMessage(nil, nil) c.Assert(msg, HasLen, 96) res, _, _, err := hsR.ReadMessage(nil, msg) c.Assert(err, IsNil) c.Assert(res, HasLen, 0) if !bytes.Equal(hsR.PeerStatic(), staticI.Public) { c.Error("wrong public key from peer") } // Look up psk from peer static public key // responder should know psk now and set it from the // initiators preshared key if err = hsR.SetPresharedKey(psk); err != nil { c.Fatal(err) } // <- e, dhee, dhse, s, dhes, psk msg, csR0, csR1, _ := hsR.WriteMessage(nil, nil) c.Assert(msg, HasLen, 96) res, csI0, csI1, err := hsI.ReadMessage(nil, msg) c.Assert(err, IsNil) c.Assert(res, HasLen, 0) // transport I -> R msg, err = csI0.Encrypt(nil, nil, []byte("foo")) c.Assert(err, IsNil) res, err = csR0.Decrypt(nil, nil, msg) c.Assert(err, IsNil) c.Assert(string(res), Equals, "foo") // transport R -> I msg, err = csR1.Encrypt(nil, nil, []byte("bar")) c.Assert(err, IsNil) res, err = csI1.Decrypt(nil, nil, msg) c.Assert(err, IsNil) c.Assert(string(res), Equals, "bar") } func (NoiseSuite) Test_NNpsk0_Roundtrip(c *C) { cs := NewCipherSuite(DH25519, CipherChaChaPoly, HashBLAKE2b) rngI := new(RandomInc) rngR := new(RandomInc) *rngR = 1 hsI, _ := NewHandshakeState(Config{ CipherSuite: cs, Random: rngI, Pattern: HandshakeNN, Initiator: true, PresharedKey: []byte("supersecretsupersecretsupersecre"), }) hsR, _ := NewHandshakeState(Config{ CipherSuite: cs, Random: rngR, Pattern: HandshakeNN, PresharedKey: []byte("supersecretsupersecretsupersecre"), }) // -> e msg, _, _, _ := hsI.WriteMessage(nil, nil) c.Assert(msg, HasLen, 48) res, _, _, err := hsR.ReadMessage(nil, msg) c.Assert(err, IsNil) c.Assert(res, HasLen, 0) // <- e, dhee msg, csR0, csR1, _ := hsR.WriteMessage(nil, nil) c.Assert(msg, HasLen, 48) res, csI0, csI1, err := hsI.ReadMessage(nil, msg) c.Assert(err, IsNil) c.Assert(res, HasLen, 0) // transport I -> R msg, err = csI0.Encrypt(nil, nil, []byte("foo")) c.Assert(err, IsNil) res, err = csR0.Decrypt(nil, nil, msg) c.Assert(err, IsNil) c.Assert(string(res), Equals, "foo") // transport R -> I msg, err = csR1.Encrypt(nil, nil, []byte("bar")) c.Assert(err, IsNil) res, err = csI1.Decrypt(nil, nil, msg) c.Assert(err, IsNil) c.Assert(string(res), Equals, "bar") } func (NoiseSuite) Test_Npsk0(c *C) { cs := NewCipherSuite(DH25519, CipherAESGCM, HashSHA256) rng := new(RandomInc) staticR, _ := cs.GenerateKeypair(rng) hsI, _ := NewHandshakeState(Config{ CipherSuite: cs, Random: rng, Pattern: HandshakeN, Initiator: true, PresharedKey: []byte{0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, 0x20}, PeerStatic: staticR.Public, }) msg, _, _, _ := hsI.WriteMessage(nil, nil) c.Assert(msg, HasLen, 48) expected, _ := hex.DecodeString("358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662542044ae563929068930dcf04674526cb9") c.Assert(msg, DeepEquals, expected) } func (NoiseSuite) Test_Xpsk0(c *C) { cs := NewCipherSuite(DH25519, CipherChaChaPoly, HashSHA256) rng := new(RandomInc) staticI, _ := cs.GenerateKeypair(rng) staticR, _ := cs.GenerateKeypair(rng) hs, _ := NewHandshakeState(Config{ CipherSuite: cs, Random: rng, Pattern: HandshakeX, Initiator: true, PresharedKey: []byte{0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, 0x20}, StaticKeypair: staticI, PeerStatic: staticR.Public, }) msg, _, _, _ := hs.WriteMessage(nil, nil) c.Assert(msg, HasLen, 96) expected, _ := hex.DecodeString("79a631eede1bf9c98f12032cdeadd0e7a079398fc786b88cc846ec89af85a51ad51eef529db0dd9127d4aa59a9183e118337d75a4e55e7e00f85c3d20ede536dd0112eec8c3b2a514018a90ab685b027dd24aa0c70b0c0f00524cc23785028b9") c.Assert(msg, DeepEquals, expected) } func (NoiseSuite) Test_NNpsk0(c *C) { cs := NewCipherSuite(DH25519, CipherAESGCM, HashSHA512) rngI := new(RandomInc) rngR := new(RandomInc) *rngR = 1 prologue := []byte{0x01, 0x02, 0x03} psk := []byte{0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, 0x20, 0x21, 0x22, 0x23} hsI, _ := NewHandshakeState(Config{ CipherSuite: cs, Random: rngI, Pattern: HandshakeNN, Initiator: true, Prologue: prologue, PresharedKey: psk, }) hsR, _ := NewHandshakeState(Config{ CipherSuite: cs, Random: rngR, Pattern: HandshakeNN, Prologue: prologue, PresharedKey: psk, }) msg, _, _, _ := hsI.WriteMessage(nil, []byte("abc")) c.Assert(msg, HasLen, 51) res, _, _, err := hsR.ReadMessage(nil, msg) c.Assert(err, IsNil) c.Assert(string(res), Equals, "abc") msg, _, _, _ = hsR.WriteMessage(nil, []byte("defg")) c.Assert(msg, HasLen, 52) res, _, _, err = hsI.ReadMessage(nil, msg) c.Assert(err, IsNil) c.Assert(string(res), Equals, "defg") expected, _ := hex.DecodeString("07a37cbc142093c8b755dc1b10e86cb426374ad16aa853ed0bdfc0b2b86d1c7c3e42e140cfffbcdf5d9d2a1c24ce4cdbdf1eaf37") c.Assert(msg, DeepEquals, expected) } func (NoiseSuite) Test_XXpsk0(c *C) { cs := NewCipherSuite(DH25519, CipherAESGCM, HashSHA256) rngI := new(RandomInc) rngR := new(RandomInc) *rngR = 1 staticI, _ := cs.GenerateKeypair(rngI) staticR, _ := cs.GenerateKeypair(rngR) prologue := []byte{0x01, 0x02, 0x03} psk := []byte{0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, 0x20, 0x21, 0x22, 0x23} hsI, _ := NewHandshakeState(Config{ CipherSuite: cs, Random: rngI, Pattern: HandshakeXX, Initiator: true, Prologue: prologue, PresharedKey: psk, StaticKeypair: staticI, }) hsR, _ := NewHandshakeState(Config{ CipherSuite: cs, Random: rngR, Pattern: HandshakeXX, Prologue: prologue, PresharedKey: psk, StaticKeypair: staticR, }) msg, _, _, _ := hsI.WriteMessage(nil, []byte("abc")) c.Assert(msg, HasLen, 51) res, _, _, err := hsR.ReadMessage(nil, msg) c.Assert(err, IsNil) c.Assert(string(res), Equals, "abc") msg, _, _, _ = hsR.WriteMessage(nil, []byte("defg")) c.Assert(msg, HasLen, 100) res, _, _, err = hsI.ReadMessage(nil, msg) c.Assert(err, IsNil) c.Assert(string(res), Equals, "defg") msg, _, _, _ = hsI.WriteMessage(nil, nil) c.Assert(msg, HasLen, 64) res, _, _, err = hsR.ReadMessage(nil, msg) c.Assert(err, IsNil) c.Assert(res, HasLen, 0) expected, _ := hex.DecodeString("1b6d7cc3b13bd02217f9cdb98c50870db96281193dca4df570bf6230a603b686fd90d2914c7e797d9276ef8fb34b0c9d87faa048ce4bc7e7af21b6a450352275") c.Assert(msg, DeepEquals, expected) } func (NoiseSuite) TestHandshakeRollback(c *C) { cs := NewCipherSuite(DH25519, CipherAESGCM, HashSHA512) rngI := new(RandomInc) rngR := new(RandomInc) *rngR = 1 hsI, _ := NewHandshakeState(Config{ CipherSuite: cs, Random: rngI, Pattern: HandshakeNN, Initiator: true, }) hsR, _ := NewHandshakeState(Config{ CipherSuite: cs, Random: rngR, Pattern: HandshakeNN, Initiator: false, }) msg, _, _, _ := hsI.WriteMessage(nil, []byte("abc")) c.Assert(msg, HasLen, 35) res, _, _, err := hsR.ReadMessage(nil, msg) c.Assert(err, IsNil) c.Assert(string(res), Equals, "abc") msg, _, _, _ = hsR.WriteMessage(nil, []byte("defg")) c.Assert(msg, HasLen, 52) prev := msg[1] msg[1] = msg[1] + 1 _, _, _, err = hsI.ReadMessage(nil, msg) c.Assert(err, Not(IsNil)) msg[1] = prev res, _, _, err = hsI.ReadMessage(nil, msg) c.Assert(err, IsNil) c.Assert(string(res), Equals, "defg") expected, _ := hex.DecodeString("07a37cbc142093c8b755dc1b10e86cb426374ad16aa853ed0bdfc0b2b86d1c7c5e4dc9545d41b3280f4586a5481829e1e24ec5a0") c.Assert(msg, DeepEquals, expected) } func (NoiseSuite) TestHandshakeRollback_rs(c *C) { cs := NewCipherSuite(DH25519, CipherAESGCM, HashSHA512) rngI := new(RandomInc) rngR := new(RandomInc) staticI, _ := cs.GenerateKeypair(rngI) staticR, _ := cs.GenerateKeypair(rngR) *rngR = 1 hsI, _ := NewHandshakeState(Config{ CipherSuite: cs, Random: rngI, Pattern: HandshakeIX, Initiator: true, StaticKeypair: staticI, }) hsR, _ := NewHandshakeState(Config{ CipherSuite: cs, Random: rngR, Pattern: HandshakeIX, Initiator: false, StaticKeypair: staticR, }) msg, _, _, _ := hsI.WriteMessage(nil, []byte("abc")) c.Assert(msg, HasLen, 67) res, _, _, err := hsR.ReadMessage(nil, msg) c.Assert(err, IsNil) c.Assert(string(res), Equals, "abc") msg, _, _, _ = hsR.WriteMessage(nil, []byte("defg")) c.Assert(msg, HasLen, 100) prev := msg[1] msg[1] = msg[1] + 1 _, _, _, err = hsI.ReadMessage(nil, msg) c.Assert(err, Not(IsNil)) msg[1] = prev res, _, _, err = hsI.ReadMessage(nil, msg) c.Assert(err, IsNil) c.Assert(string(res), Equals, "defg") expected, _ := hex.DecodeString("07a37cbc142093c8b755dc1b10e86cb426374ad16aa853ed0bdfc0b2b86d1c7cf66fc41515606de81af64a5364fbc0b2cbd71e0837ea590b72b77ae2caaaa93bc19c167c28236a18e0737d395fe95083e41da26a30a8062faf92ed05bbdc36db2369f19b") c.Assert(msg, DeepEquals, expected) } func (NoiseSuite) TestSetNonce(c *C) { cs := NewCipherSuite(DH25519, CipherAESGCM, HashSHA512) rngI := new(RandomInc) rngR := new(RandomInc) *rngR = 1 hsI, _ := NewHandshakeState(Config{ CipherSuite: cs, Random: rngI, Pattern: HandshakeNN, Initiator: true, }) hsR, _ := NewHandshakeState(Config{ CipherSuite: cs, Random: rngR, Pattern: HandshakeNN, Initiator: false, }) msg, _, _, _ := hsI.WriteMessage(nil, nil) res, _, _, err := hsR.ReadMessage(nil, msg) c.Assert(err, IsNil) c.Assert(res, HasLen, 0) msg, csR0, csR1, _ := hsR.WriteMessage(nil, nil) res, csI0, csI1, err := hsI.ReadMessage(nil, msg) c.Assert(err, IsNil) c.Assert(res, HasLen, 0) c.Assert(csI0.Nonce(), Equals, uint64(0)) c.Assert(csI1.Nonce(), Equals, uint64(0)) c.Assert(csR0.Nonce(), Equals, uint64(0)) c.Assert(csR1.Nonce(), Equals, uint64(0)) const n = 1234 clientMessage := []byte("msg1") csI0.SetNonce(n) msg, err = csI0.Encrypt(nil, nil, clientMessage) c.Assert(err, IsNil) // decrypt with incorrect nonce _, err = csR0.Decrypt(nil, nil, msg) c.Assert(err, NotNil) // decrypt with correct nonce csR0.SetNonce(n) res, err = csR0.Decrypt(nil, nil, msg) c.Assert(err, IsNil) c.Assert(string(clientMessage), Equals, string(res)) c.Assert(csI0.Nonce(), Equals, uint64(n+1)) c.Assert(csI1.Nonce(), Equals, uint64(0)) c.Assert(csR0.Nonce(), Equals, uint64(n+1)) c.Assert(csR1.Nonce(), Equals, uint64(0)) serverMessage := []byte("msg2") csR1.SetNonce(MaxNonce + 1) _, err = csR1.Encrypt(nil, nil, serverMessage) c.Assert(err, Equals, ErrMaxNonce) } func (NoiseSuite) TestRekey(c *C) { rng := new(RandomInc) clientStaticKeypair, _ := DH25519.GenerateKeypair(rng) clientConfig := Config{} clientConfig.CipherSuite = NewCipherSuite(DH25519, CipherChaChaPoly, HashBLAKE2b) clientConfig.Random = rng clientConfig.Pattern = HandshakeNN clientConfig.Initiator = true clientConfig.Prologue = []byte{0} clientConfig.StaticKeypair = clientStaticKeypair clientConfig.EphemeralKeypair, _ = DH25519.GenerateKeypair(rng) clientHs, _ := NewHandshakeState(clientConfig) serverStaticKeypair, _ := DH25519.GenerateKeypair(rng) serverConfig := Config{} serverConfig.CipherSuite = NewCipherSuite(DH25519, CipherChaChaPoly, HashBLAKE2b) serverConfig.Random = rng serverConfig.Pattern = HandshakeNN serverConfig.Initiator = false serverConfig.Prologue = []byte{0} serverConfig.StaticKeypair = serverStaticKeypair serverConfig.EphemeralKeypair, _ = DH25519.GenerateKeypair(rng) serverHs, _ := NewHandshakeState(serverConfig) clientHsMsg, _, _, _ := clientHs.WriteMessage(nil, nil) c.Assert(32, Equals, len(clientHsMsg)) serverHsResult, _, _, err := serverHs.ReadMessage(nil, clientHsMsg) c.Assert(err, IsNil) c.Assert(0, Equals, len(serverHsResult)) serverHsMsg, csR0, csR1, _ := serverHs.WriteMessage(nil, nil) c.Assert(48, Equals, len(serverHsMsg)) clientHsResult, csI0, csI1, err := clientHs.ReadMessage(nil, serverHsMsg) c.Assert(err, IsNil) c.Assert(0, Equals, len(clientHsResult)) clientMessage := []byte("hello") msg, err := csI0.Encrypt(nil, nil, clientMessage) c.Assert(err, IsNil) res, err := csR0.Decrypt(nil, nil, msg) c.Assert(err, IsNil) c.Assert(string(clientMessage), Equals, string(res)) oldK := csI0.k csI0.Rekey() c.Assert(oldK, Not(Equals), csI0.k) csR0.Rekey() clientMessage = []byte("hello again") msg, err = csI0.Encrypt(nil, nil, clientMessage) c.Assert(err, IsNil) res, err = csR0.Decrypt(nil, nil, msg) c.Assert(err, IsNil) c.Assert(string(clientMessage), Equals, string(res)) serverMessage := []byte("bye") msg, err = csR1.Encrypt(nil, nil, serverMessage) c.Assert(err, IsNil) res, err = csI1.Decrypt(nil, nil, msg) c.Assert(err, IsNil) c.Assert(string(serverMessage), Equals, string(res)) preNonce := csR1.Nonce() csR1.Rekey() csI1.Rekey() postNonce := csR1.Nonce() c.Assert(preNonce, Equals, postNonce) serverMessage = []byte("bye bye") msg, err = csR1.Encrypt(nil, nil, serverMessage) c.Assert(err, IsNil) res, err = csI1.Decrypt(nil, nil, msg) c.Assert(err, IsNil) c.Assert(string(serverMessage), Equals, string(res)) // only rekey one side, test for failure csR1.Rekey() serverMessage = []byte("bye again") msg, err = csR1.Encrypt(nil, nil, serverMessage) c.Assert(err, IsNil) res, err = csI1.Decrypt(nil, nil, msg) c.Assert(err, NotNil) c.Assert(string(serverMessage), Not(Equals), string(res)) // check nonce overflow handling csI1.n = math.MaxUint64 msg, err = csI1.Encrypt(nil, nil, nil) c.Assert(err, Equals, ErrMaxNonce) c.Assert(msg, IsNil) msg, err = csI1.Decrypt(nil, nil, nil) c.Assert(err, Equals, ErrMaxNonce) c.Assert(msg, IsNil) } noise-1.1.0/patterns.go000066400000000000000000000074451455703460600150410ustar00rootroot00000000000000package noise var HandshakeNN = HandshakePattern{ Name: "NN", Messages: [][]MessagePattern{ {MessagePatternE}, {MessagePatternE, MessagePatternDHEE}, }, } var HandshakeKN = HandshakePattern{ Name: "KN", InitiatorPreMessages: []MessagePattern{MessagePatternS}, Messages: [][]MessagePattern{ {MessagePatternE}, {MessagePatternE, MessagePatternDHEE, MessagePatternDHSE}, }, } var HandshakeNK = HandshakePattern{ Name: "NK", ResponderPreMessages: []MessagePattern{MessagePatternS}, Messages: [][]MessagePattern{ {MessagePatternE, MessagePatternDHES}, {MessagePatternE, MessagePatternDHEE}, }, } var HandshakeKK = HandshakePattern{ Name: "KK", InitiatorPreMessages: []MessagePattern{MessagePatternS}, ResponderPreMessages: []MessagePattern{MessagePatternS}, Messages: [][]MessagePattern{ {MessagePatternE, MessagePatternDHES, MessagePatternDHSS}, {MessagePatternE, MessagePatternDHEE, MessagePatternDHSE}, }, } var HandshakeNX = HandshakePattern{ Name: "NX", Messages: [][]MessagePattern{ {MessagePatternE}, {MessagePatternE, MessagePatternDHEE, MessagePatternS, MessagePatternDHES}, }, } var HandshakeKX = HandshakePattern{ Name: "KX", InitiatorPreMessages: []MessagePattern{MessagePatternS}, Messages: [][]MessagePattern{ {MessagePatternE}, {MessagePatternE, MessagePatternDHEE, MessagePatternDHSE, MessagePatternS, MessagePatternDHES}, }, } var HandshakeXN = HandshakePattern{ Name: "XN", Messages: [][]MessagePattern{ {MessagePatternE}, {MessagePatternE, MessagePatternDHEE}, {MessagePatternS, MessagePatternDHSE}, }, } var HandshakeIN = HandshakePattern{ Name: "IN", Messages: [][]MessagePattern{ {MessagePatternE, MessagePatternS}, {MessagePatternE, MessagePatternDHEE, MessagePatternDHSE}, }, } var HandshakeXK = HandshakePattern{ Name: "XK", ResponderPreMessages: []MessagePattern{MessagePatternS}, Messages: [][]MessagePattern{ {MessagePatternE, MessagePatternDHES}, {MessagePatternE, MessagePatternDHEE}, {MessagePatternS, MessagePatternDHSE}, }, } var HandshakeIK = HandshakePattern{ Name: "IK", ResponderPreMessages: []MessagePattern{MessagePatternS}, Messages: [][]MessagePattern{ {MessagePatternE, MessagePatternDHES, MessagePatternS, MessagePatternDHSS}, {MessagePatternE, MessagePatternDHEE, MessagePatternDHSE}, }, } var HandshakeXX = HandshakePattern{ Name: "XX", Messages: [][]MessagePattern{ {MessagePatternE}, {MessagePatternE, MessagePatternDHEE, MessagePatternS, MessagePatternDHES}, {MessagePatternS, MessagePatternDHSE}, }, } var HandshakeXXfallback = HandshakePattern{ Name: "XXfallback", ResponderPreMessages: []MessagePattern{MessagePatternE}, Messages: [][]MessagePattern{ {MessagePatternE, MessagePatternDHEE, MessagePatternS, MessagePatternDHSE}, {MessagePatternS, MessagePatternDHES}, }, } var HandshakeIX = HandshakePattern{ Name: "IX", Messages: [][]MessagePattern{ {MessagePatternE, MessagePatternS}, {MessagePatternE, MessagePatternDHEE, MessagePatternDHSE, MessagePatternS, MessagePatternDHES}, }, } var HandshakeN = HandshakePattern{ Name: "N", ResponderPreMessages: []MessagePattern{MessagePatternS}, Messages: [][]MessagePattern{ {MessagePatternE, MessagePatternDHES}, }, } var HandshakeK = HandshakePattern{ Name: "K", InitiatorPreMessages: []MessagePattern{MessagePatternS}, ResponderPreMessages: []MessagePattern{MessagePatternS}, Messages: [][]MessagePattern{ {MessagePatternE, MessagePatternDHES, MessagePatternDHSS}, }, } var HandshakeX = HandshakePattern{ Name: "X", ResponderPreMessages: []MessagePattern{MessagePatternS}, Messages: [][]MessagePattern{ {MessagePatternE, MessagePatternDHES, MessagePatternS, MessagePatternDHSS}, }, } noise-1.1.0/state.go000066400000000000000000000437531455703460600143230ustar00rootroot00000000000000// Package noise implements the Noise Protocol Framework. // // Noise is a low-level framework for building crypto protocols. Noise protocols // support mutual and optional authentication, identity hiding, forward secrecy, // zero round-trip encryption, and other advanced features. For more details, // visit https://noiseprotocol.org. package noise import ( "crypto/rand" "errors" "fmt" "io" "math" ) // A CipherState provides symmetric encryption and decryption after a successful // handshake. type CipherState struct { cs CipherSuite c Cipher k [32]byte n uint64 invalid bool } // MaxNonce is the maximum value of n that is allowed. ErrMaxNonce is returned // by Encrypt and Decrypt after this has been reached. 2^64-1 is reserved for rekeys. const MaxNonce = uint64(math.MaxUint64) - 1 var ErrMaxNonce = errors.New("noise: cipherstate has reached maximum n, a new handshake must be performed") var ErrCipherSuiteCopied = errors.New("noise: CipherSuite has been copied, state is invalid") // UnsafeNewCipherState reconstructs a CipherState from exported components. // It is important that, when resuming from an exported state, care is taken // to synchronize the nonce state and not allow rollbacks. func UnsafeNewCipherState(cs CipherSuite, k [32]byte, n uint64) *CipherState { return &CipherState{ cs: cs, c: cs.Cipher(k), k: k, n: n, } } // Encrypt encrypts the plaintext and then appends the ciphertext and an // authentication tag across the ciphertext and optional authenticated data to // out. This method automatically increments the nonce after every call, so // messages must be decrypted in the same order. ErrMaxNonce is returned after // the maximum nonce of 2^64-2 is reached. func (s *CipherState) Encrypt(out, ad, plaintext []byte) ([]byte, error) { if s.invalid { return nil, ErrCipherSuiteCopied } if s.n > MaxNonce { return nil, ErrMaxNonce } out = s.c.Encrypt(out, s.n, ad, plaintext) s.n++ return out, nil } // Decrypt checks the authenticity of the ciphertext and authenticated data and // then decrypts and appends the plaintext to out. This method automatically // increments the nonce after every call, messages must be provided in the same // order that they were encrypted with no missing messages. ErrMaxNonce is // returned after the maximum nonce of 2^64-2 is reached. func (s *CipherState) Decrypt(out, ad, ciphertext []byte) ([]byte, error) { if s.invalid { return nil, ErrCipherSuiteCopied } if s.n > MaxNonce { return nil, ErrMaxNonce } out, err := s.c.Decrypt(out, s.n, ad, ciphertext) if err != nil { return nil, err } s.n++ return out, nil } // Cipher returns the low-level symmetric encryption primitive. It should only // be used if nonces need to be managed manually, for example with a network // protocol that can deliver out-of-order messages. This is dangerous, users // must ensure that they are incrementing a nonce after every encrypt operation. // After calling this method, it is an error to call Encrypt/Decrypt on the // CipherState. func (s *CipherState) Cipher() Cipher { s.invalid = true return s.c } // Nonce returns the current value of n. This can be used to determine if a // new handshake should be performed due to approaching MaxNonce. func (s *CipherState) Nonce() uint64 { return s.n } // SetNonce sets the current value of n. func (s *CipherState) SetNonce(n uint64) { s.n = n } // UnsafeKey returns the current value of k. This exports the current key for the // CipherState. Intended to be used alongside UnsafeNewCipherState to resume a // CipherState at a later point. func (s *CipherState) UnsafeKey() [32]byte { return s.k } func (s *CipherState) Rekey() { var zeros [32]byte var out []byte out = s.c.Encrypt(out, math.MaxUint64, []byte{}, zeros[:]) copy(s.k[:], out[:32]) s.c = s.cs.Cipher(s.k) } type symmetricState struct { CipherState hasK bool ck []byte h []byte prevCK []byte prevH []byte } func (s *symmetricState) InitializeSymmetric(handshakeName []byte) { h := s.cs.Hash() if len(handshakeName) <= h.Size() { s.h = make([]byte, h.Size()) copy(s.h, handshakeName) } else { h.Write(handshakeName) s.h = h.Sum(nil) } s.ck = make([]byte, len(s.h)) copy(s.ck, s.h) } func (s *symmetricState) MixKey(dhOutput []byte) { s.n = 0 s.hasK = true var hk []byte s.ck, hk, _ = hkdf(s.cs.Hash, 2, s.ck[:0], s.k[:0], nil, s.ck, dhOutput) copy(s.k[:], hk) s.c = s.cs.Cipher(s.k) } func (s *symmetricState) MixHash(data []byte) { h := s.cs.Hash() h.Write(s.h) h.Write(data) s.h = h.Sum(s.h[:0]) } func (s *symmetricState) MixKeyAndHash(data []byte) { var hk []byte var temp []byte s.ck, temp, hk = hkdf(s.cs.Hash, 3, s.ck[:0], temp, s.k[:0], s.ck, data) s.MixHash(temp) copy(s.k[:], hk) s.c = s.cs.Cipher(s.k) s.n = 0 s.hasK = true } func (s *symmetricState) EncryptAndHash(out, plaintext []byte) ([]byte, error) { if !s.hasK { s.MixHash(plaintext) return append(out, plaintext...), nil } ciphertext, err := s.Encrypt(out, s.h, plaintext) if err != nil { return nil, err } s.MixHash(ciphertext[len(out):]) return ciphertext, nil } func (s *symmetricState) DecryptAndHash(out, data []byte) ([]byte, error) { if !s.hasK { s.MixHash(data) return append(out, data...), nil } plaintext, err := s.Decrypt(out, s.h, data) if err != nil { return nil, err } s.MixHash(data) return plaintext, nil } func (s *symmetricState) Split() (*CipherState, *CipherState) { s1, s2 := &CipherState{cs: s.cs}, &CipherState{cs: s.cs} hk1, hk2, _ := hkdf(s.cs.Hash, 2, s1.k[:0], s2.k[:0], nil, s.ck, nil) copy(s1.k[:], hk1) copy(s2.k[:], hk2) s1.c = s.cs.Cipher(s1.k) s2.c = s.cs.Cipher(s2.k) return s1, s2 } func (s *symmetricState) Checkpoint() { if len(s.ck) > cap(s.prevCK) { s.prevCK = make([]byte, len(s.ck)) } s.prevCK = s.prevCK[:len(s.ck)] copy(s.prevCK, s.ck) if len(s.h) > cap(s.prevH) { s.prevH = make([]byte, len(s.h)) } s.prevH = s.prevH[:len(s.h)] copy(s.prevH, s.h) } func (s *symmetricState) Rollback() { s.ck = s.ck[:len(s.prevCK)] copy(s.ck, s.prevCK) s.h = s.h[:len(s.prevH)] copy(s.h, s.prevH) } // A MessagePattern is a single message or operation used in a Noise handshake. type MessagePattern int // A HandshakePattern is a list of messages and operations that are used to // perform a specific Noise handshake. type HandshakePattern struct { Name string InitiatorPreMessages []MessagePattern ResponderPreMessages []MessagePattern Messages [][]MessagePattern } const ( MessagePatternS MessagePattern = iota MessagePatternE MessagePatternDHEE MessagePatternDHES MessagePatternDHSE MessagePatternDHSS MessagePatternPSK ) // MaxMsgLen is the maximum number of bytes that can be sent in a single Noise // message. const MaxMsgLen = 65535 // A HandshakeState tracks the state of a Noise handshake. It may be discarded // after the handshake is complete. type HandshakeState struct { ss symmetricState s DHKey // local static keypair e DHKey // local ephemeral keypair rs []byte // remote party's static public key re []byte // remote party's ephemeral public key psk []byte // preshared key, maybe zero length willPsk bool // indicates if preshared key will be used (even if not yet set) messagePatterns [][]MessagePattern shouldWrite bool initiator bool msgIdx int rng io.Reader } // A Config provides the details necessary to process a Noise handshake. It is // never modified by this package, and can be reused. type Config struct { // CipherSuite is the set of cryptographic primitives that will be used. CipherSuite CipherSuite // Random is the source for cryptographically appropriate random bytes. If // zero, it is automatically configured. Random io.Reader // Pattern is the pattern for the handshake. Pattern HandshakePattern // Initiator must be true if the first message in the handshake will be sent // by this peer. Initiator bool // Prologue is an optional message that has already be communicated and must // be identical on both sides for the handshake to succeed. Prologue []byte // PresharedKey is the optional preshared key for the handshake. PresharedKey []byte // PresharedKeyPlacement specifies the placement position of the PSK token // when PresharedKey is specified PresharedKeyPlacement int // StaticKeypair is this peer's static keypair, required if part of the // handshake. StaticKeypair DHKey // EphemeralKeypair is this peer's ephemeral keypair that was provided as // a pre-message in the handshake. EphemeralKeypair DHKey // PeerStatic is the static public key of the remote peer that was provided // as a pre-message in the handshake. PeerStatic []byte // PeerEphemeral is the ephemeral public key of the remote peer that was // provided as a pre-message in the handshake. PeerEphemeral []byte } // NewHandshakeState starts a new handshake using the provided configuration. func NewHandshakeState(c Config) (*HandshakeState, error) { hs := &HandshakeState{ s: c.StaticKeypair, e: c.EphemeralKeypair, rs: c.PeerStatic, messagePatterns: c.Pattern.Messages, shouldWrite: c.Initiator, initiator: c.Initiator, rng: c.Random, } if hs.rng == nil { hs.rng = rand.Reader } if len(c.PeerEphemeral) > 0 { hs.re = make([]byte, len(c.PeerEphemeral)) copy(hs.re, c.PeerEphemeral) } hs.ss.cs = c.CipherSuite pskModifier := "" // NB: for psk{0,1} we must have preshared key set in configuration as its needed in the first // message. For psk{2+} we may not know the correct psk yet so it might not be set. if len(c.PresharedKey) > 0 || c.PresharedKeyPlacement >= 2 { hs.willPsk = true if len(c.PresharedKey) > 0 { if err := hs.SetPresharedKey(c.PresharedKey); err != nil { return nil, err } } pskModifier = fmt.Sprintf("psk%d", c.PresharedKeyPlacement) hs.messagePatterns = append([][]MessagePattern(nil), hs.messagePatterns...) if c.PresharedKeyPlacement == 0 { hs.messagePatterns[0] = append([]MessagePattern{MessagePatternPSK}, hs.messagePatterns[0]...) } else { hs.messagePatterns[c.PresharedKeyPlacement-1] = append(hs.messagePatterns[c.PresharedKeyPlacement-1], MessagePatternPSK) } } hs.ss.InitializeSymmetric([]byte("Noise_" + c.Pattern.Name + pskModifier + "_" + string(hs.ss.cs.Name()))) hs.ss.MixHash(c.Prologue) for _, m := range c.Pattern.InitiatorPreMessages { switch { case c.Initiator && m == MessagePatternS: hs.ss.MixHash(hs.s.Public) case c.Initiator && m == MessagePatternE: hs.ss.MixHash(hs.e.Public) case !c.Initiator && m == MessagePatternS: hs.ss.MixHash(hs.rs) case !c.Initiator && m == MessagePatternE: hs.ss.MixHash(hs.re) } } for _, m := range c.Pattern.ResponderPreMessages { switch { case !c.Initiator && m == MessagePatternS: hs.ss.MixHash(hs.s.Public) case !c.Initiator && m == MessagePatternE: hs.ss.MixHash(hs.e.Public) case c.Initiator && m == MessagePatternS: hs.ss.MixHash(hs.rs) case c.Initiator && m == MessagePatternE: hs.ss.MixHash(hs.re) } } return hs, nil } // WriteMessage appends a handshake message to out. The message will include the // optional payload if provided. If the handshake is completed by the call, two // CipherStates will be returned, one is used for encryption of messages to the // remote peer, the other is used for decryption of messages from the remote // peer. It is an error to call this method out of sync with the handshake // pattern. func (s *HandshakeState) WriteMessage(out, payload []byte) ([]byte, *CipherState, *CipherState, error) { if !s.shouldWrite { return nil, nil, nil, errors.New("noise: unexpected call to WriteMessage should be ReadMessage") } if s.msgIdx > len(s.messagePatterns)-1 { return nil, nil, nil, errors.New("noise: no handshake messages left") } if len(payload) > MaxMsgLen { return nil, nil, nil, errors.New("noise: message is too long") } var err error for _, msg := range s.messagePatterns[s.msgIdx] { switch msg { case MessagePatternE: e, err := s.ss.cs.GenerateKeypair(s.rng) if err != nil { return nil, nil, nil, err } s.e = e out = append(out, s.e.Public...) s.ss.MixHash(s.e.Public) if s.willPsk { s.ss.MixKey(s.e.Public) } case MessagePatternS: if len(s.s.Public) == 0 { return nil, nil, nil, errors.New("noise: invalid state, s.Public is nil") } out, err = s.ss.EncryptAndHash(out, s.s.Public) if err != nil { return nil, nil, nil, err } case MessagePatternDHEE: dh, err := s.ss.cs.DH(s.e.Private, s.re) if err != nil { return nil, nil, nil, err } s.ss.MixKey(dh) case MessagePatternDHES: if s.initiator { dh, err := s.ss.cs.DH(s.e.Private, s.rs) if err != nil { return nil, nil, nil, err } s.ss.MixKey(dh) } else { dh, err := s.ss.cs.DH(s.s.Private, s.re) if err != nil { return nil, nil, nil, err } s.ss.MixKey(dh) } case MessagePatternDHSE: if s.initiator { dh, err := s.ss.cs.DH(s.s.Private, s.re) if err != nil { return nil, nil, nil, err } s.ss.MixKey(dh) } else { dh, err := s.ss.cs.DH(s.e.Private, s.rs) if err != nil { return nil, nil, nil, err } s.ss.MixKey(dh) } case MessagePatternDHSS: dh, err := s.ss.cs.DH(s.s.Private, s.rs) if err != nil { return nil, nil, nil, err } s.ss.MixKey(dh) case MessagePatternPSK: if len(s.psk) == 0 { return nil, nil, nil, errors.New("noise: cannot send psk message without psk set") } s.ss.MixKeyAndHash(s.psk) } } s.shouldWrite = false s.msgIdx++ out, err = s.ss.EncryptAndHash(out, payload) if err != nil { return nil, nil, nil, err } if s.msgIdx >= len(s.messagePatterns) { cs1, cs2 := s.ss.Split() return out, cs1, cs2, nil } return out, nil, nil, nil } // ErrShortMessage is returned by ReadMessage if a message is not as long as it should be. var ErrShortMessage = errors.New("noise: message is too short") func (s *HandshakeState) SetPresharedKey(psk []byte) error { if len(psk) != 32 { return errors.New("noise: specification mandates 256-bit preshared keys") } s.psk = make([]byte, 32) copy(s.psk, psk) return nil } // ReadMessage processes a received handshake message and appends the payload, // if any to out. If the handshake is completed by the call, two CipherStates // will be returned, one is used for encryption of messages to the remote peer, // the other is used for decryption of messages from the remote peer. It is an // error to call this method out of sync with the handshake pattern. func (s *HandshakeState) ReadMessage(out, message []byte) ([]byte, *CipherState, *CipherState, error) { if s.shouldWrite { return nil, nil, nil, errors.New("noise: unexpected call to ReadMessage should be WriteMessage") } if s.msgIdx > len(s.messagePatterns)-1 { return nil, nil, nil, errors.New("noise: no handshake messages left") } rsSet := false s.ss.Checkpoint() var err error for _, msg := range s.messagePatterns[s.msgIdx] { switch msg { case MessagePatternE, MessagePatternS: expected := s.ss.cs.DHLen() if msg == MessagePatternS && s.ss.hasK { expected += 16 } if len(message) < expected { return nil, nil, nil, ErrShortMessage } switch msg { case MessagePatternE: if cap(s.re) < s.ss.cs.DHLen() { s.re = make([]byte, s.ss.cs.DHLen()) } s.re = s.re[:s.ss.cs.DHLen()] copy(s.re, message) s.ss.MixHash(s.re) if s.willPsk { s.ss.MixKey(s.re) } case MessagePatternS: if len(s.rs) > 0 { return nil, nil, nil, errors.New("noise: invalid state, rs is not nil") } s.rs, err = s.ss.DecryptAndHash(s.rs[:0], message[:expected]) rsSet = true } if err != nil { s.ss.Rollback() if rsSet { s.rs = nil } return nil, nil, nil, err } message = message[expected:] case MessagePatternDHEE: dh, err := s.ss.cs.DH(s.e.Private, s.re) if err != nil { return nil, nil, nil, err } s.ss.MixKey(dh) case MessagePatternDHES: if s.initiator { dh, err := s.ss.cs.DH(s.e.Private, s.rs) if err != nil { return nil, nil, nil, err } s.ss.MixKey(dh) } else { dh, err := s.ss.cs.DH(s.s.Private, s.re) if err != nil { return nil, nil, nil, err } s.ss.MixKey(dh) } case MessagePatternDHSE: if s.initiator { dh, err := s.ss.cs.DH(s.s.Private, s.re) if err != nil { return nil, nil, nil, err } s.ss.MixKey(dh) } else { dh, err := s.ss.cs.DH(s.e.Private, s.rs) if err != nil { return nil, nil, nil, err } s.ss.MixKey(dh) } case MessagePatternDHSS: dh, err := s.ss.cs.DH(s.s.Private, s.rs) if err != nil { return nil, nil, nil, err } s.ss.MixKey(dh) case MessagePatternPSK: s.ss.MixKeyAndHash(s.psk) } } out, err = s.ss.DecryptAndHash(out, message) if err != nil { s.ss.Rollback() if rsSet { s.rs = nil } return nil, nil, nil, err } s.shouldWrite = true s.msgIdx++ if s.msgIdx >= len(s.messagePatterns) { cs1, cs2 := s.ss.Split() return out, cs1, cs2, nil } return out, nil, nil, nil } // ChannelBinding provides a value that uniquely identifies the session and can // be used as a channel binding. It is an error to call this method before the // handshake is complete. func (s *HandshakeState) ChannelBinding() []byte { return s.ss.h } // PeerStatic returns the static key provided by the remote peer during // a handshake. It is an error to call this method if a handshake message // containing a static key has not been read. func (s *HandshakeState) PeerStatic() []byte { return s.rs } // MessageIndex returns the current handshake message id func (s *HandshakeState) MessageIndex() int { return s.msgIdx } // PeerEphemeral returns the ephemeral key provided by the remote peer during // a handshake. It is an error to call this method if a handshake message // containing a static key has not been read. func (s *HandshakeState) PeerEphemeral() []byte { return s.re } // LocalEphemeral returns the local ephemeral key pair generated during // a handshake. func (s *HandshakeState) LocalEphemeral() DHKey { return s.e } noise-1.1.0/vector_test.go000066400000000000000000000117011455703460600155300ustar00rootroot00000000000000package noise import ( "bufio" "bytes" "encoding/hex" "fmt" "io" "os" "strconv" "strings" . "gopkg.in/check.v1" ) func mustHex(s []byte) []byte { res, err := hex.DecodeString(string(s)) if err != nil { panic(err) } return res } func hexReader(s []byte) io.Reader { return bytes.NewBuffer(mustHex(s)) } var patterns = make(map[string]HandshakePattern) var ciphers = map[string]CipherFunc{ "AESGCM": CipherAESGCM, "ChaChaPoly": CipherChaChaPoly, } var hashes = map[string]HashFunc{ "SHA256": HashSHA256, "SHA512": HashSHA512, "BLAKE2b": HashBLAKE2b, "BLAKE2s": HashBLAKE2s, } var patternKeys = make(map[string]patternKeyInfo) type patternKeyInfo struct { is, rs, isr, rsi, e bool } func init() { for _, h := range []HandshakePattern{ HandshakeNN, HandshakeKN, HandshakeNK, HandshakeKK, HandshakeNX, HandshakeKX, HandshakeXN, HandshakeIN, HandshakeXK, HandshakeIK, HandshakeXX, HandshakeIX, HandshakeN, HandshakeK, HandshakeX, } { patterns[h.Name] = h var k patternKeyInfo if len(h.Name) == 1 { switch h.Name { case "N": k.rs = true k.rsi = true case "K": k.is = true k.isr = true k.rs = true k.rsi = true case "X": k.is = true k.rs = true k.rsi = true } } else { switch h.Name[0] { case 'X', 'I': k.is = true case 'K': k.is = true k.isr = true } switch h.Name[1] { case 'K': k.rs = true k.rsi = true case 'X', 'R': k.rs = true } } patternKeys[h.Name] = k } } func (NoiseSuite) TestVectors(c *C) { f, err := os.Open("vectors.txt") c.Assert(err, IsNil) r := bufio.NewReader(f) var hsI, hsR *HandshakeState var staticR, staticI, ephR DHKey var configI, configR Config var keyInfo patternKeyInfo var name string var payload, psk []byte var csW0, csW1, csR0, csR1 *CipherState for { line, _, err := r.ReadLine() if err == io.EOF { break } c.Assert(err, IsNil) if len(bytes.TrimSpace(line)) == 0 || line[0] == '#' { continue } splitLine := bytes.SplitN(line, []byte("="), 2) c.Assert(splitLine, HasLen, 2) switch string(splitLine[0]) { case "init_static": staticI, _ = DH25519.GenerateKeypair(hexReader(splitLine[1])) case "resp_static": staticR, _ = DH25519.GenerateKeypair(hexReader(splitLine[1])) case "resp_ephemeral": ephR, _ = DH25519.GenerateKeypair(hexReader(splitLine[1])) case "handshake": name = string(splitLine[1]) c.Log(name) configI, configR = Config{Initiator: true}, Config{} hsI, hsR = nil, nil components := strings.SplitN(name, "_", 5) handshakeComponents := strings.Split(components[1], "psk") if len(handshakeComponents) == 2 { configI.PresharedKeyPlacement, _ = strconv.Atoi(handshakeComponents[1]) } keyInfo = patternKeys[handshakeComponents[0]] configI.Pattern = patterns[handshakeComponents[0]] configI.CipherSuite = NewCipherSuite(DH25519, ciphers[components[3]], hashes[components[4]]) configR.Pattern = configI.Pattern configR.CipherSuite = configI.CipherSuite configR.PresharedKeyPlacement = configI.PresharedKeyPlacement case "gen_init_ephemeral": configI.Random = hexReader(splitLine[1]) case "gen_resp_ephemeral": configR.Random = hexReader(splitLine[1]) case "prologue": configI.Prologue = mustHex(splitLine[1]) configR.Prologue = configI.Prologue case "preshared_key": psk = mustHex(splitLine[1]) } if !bytes.HasPrefix(splitLine[0], []byte("msg_")) { continue } if bytes.HasSuffix(splitLine[0], []byte("_payload")) { payload = mustHex(splitLine[1]) continue } if hsI == nil { if keyInfo.is { configI.StaticKeypair = staticI } if keyInfo.rs { configR.StaticKeypair = staticR } if keyInfo.isr { configR.PeerStatic = staticI.Public } if keyInfo.rsi { configI.PeerStatic = staticR.Public } if keyInfo.e { configR.EphemeralKeypair = ephR configI.PeerEphemeral = ephR.Public } if strings.Contains(name, "psk") { configI.PresharedKey = psk configR.PresharedKey = psk } hsI, _ = NewHandshakeState(configI) hsR, _ = NewHandshakeState(configR) } i, _ := strconv.Atoi(string(splitLine[0][4:5])) if i > len(configI.Pattern.Messages)-1 { enc, dec := csW0, csR0 if (i-len(configI.Pattern.Messages))%2 != 0 { enc, dec = csW1, csR1 } encrypted, err := enc.Encrypt(nil, nil, payload) c.Assert(err, IsNil) c.Assert(fmt.Sprintf("%x", encrypted), Equals, string(splitLine[1])) decrypted, err := dec.Decrypt(nil, nil, encrypted) c.Assert(err, IsNil) c.Assert(string(payload), Equals, string(decrypted)) payload = nil continue } writer, reader := hsI, hsR if i%2 != 0 { writer, reader = hsR, hsI } var msg, res []byte msg, csW0, csW1, _ = writer.WriteMessage(nil, payload) c.Assert(fmt.Sprintf("%x", msg), Equals, string(splitLine[1])) res, csR0, csR1, err = reader.ReadMessage(nil, msg) c.Assert(err, IsNil) c.Assert(string(res), Equals, string(payload)) payload = nil } } noise-1.1.0/vectorgen/000077500000000000000000000000001455703460600146345ustar00rootroot00000000000000noise-1.1.0/vectorgen/vectorgen.go000066400000000000000000000117231455703460600171630ustar00rootroot00000000000000package main import ( "bytes" "encoding/hex" "fmt" "io" "os" . "github.com/flynn/noise" ) func main() { for _, cipher := range []CipherFunc{CipherAESGCM, CipherChaChaPoly} { for _, hash := range []HashFunc{HashSHA256, HashSHA512, HashBLAKE2b, HashBLAKE2s} { for _, handshake := range []HandshakePattern{ HandshakeNN, HandshakeKN, HandshakeNK, HandshakeKK, HandshakeNX, HandshakeKX, HandshakeXN, HandshakeIN, HandshakeXK, HandshakeIK, HandshakeXX, HandshakeIX, HandshakeN, HandshakeK, HandshakeX, } { for _, prologue := range []bool{false, true} { for _, payloads := range []bool{false, true} { for pskPlacement := -1; pskPlacement <= len(handshake.Messages); pskPlacement++ { writeHandshake( os.Stdout, NewCipherSuite(DH25519, cipher, hash), handshake, pskPlacement, pskPlacement >= 0, prologue, payloads, ) fmt.Fprintln(os.Stdout) } } } } } } } func hexReader(s string) io.Reader { res, err := hex.DecodeString(s) if err != nil { panic(err) } return bytes.NewBuffer(res) } const ( key0 = "000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f" key1 = "0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20" key2 = "2122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f40" key3 = "202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f" key4 = "4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60" ) func writeHandshake(out io.Writer, cs CipherSuite, h HandshakePattern, pskPlacement int, hasPSK, hasPrologue, payloads bool) { var prologue, psk []byte if hasPrologue { prologue = []byte("notsecret") } if hasPSK { psk = []byte("!verysecretverysecretverysecret!") } staticI, _ := cs.GenerateKeypair(hexReader(key0)) staticR, _ := cs.GenerateKeypair(hexReader(key1)) ephR, _ := cs.GenerateKeypair(hexReader(key2)) configI := Config{ CipherSuite: cs, Random: hexReader(key3), Pattern: h, Initiator: true, Prologue: prologue, PresharedKey: psk, PresharedKeyPlacement: pskPlacement, } configR := configI configR.Random = hexReader(key4) configR.Initiator = false var pskName string if hasPSK { pskName = fmt.Sprintf("psk%d", pskPlacement) } fmt.Fprintf(out, "handshake=Noise_%s%s_%s\n", h.Name, pskName, cs.Name()) if len(h.Name) == 1 { switch h.Name { case "N": configR.StaticKeypair = staticR configI.PeerStatic = staticR.Public fmt.Fprintf(out, "resp_static=%x\n", staticR.Private) case "K": configI.StaticKeypair = staticI configR.PeerStatic = staticI.Public configR.StaticKeypair = staticR configI.PeerStatic = staticR.Public fmt.Fprintf(out, "init_static=%x\n", staticI.Private) fmt.Fprintf(out, "resp_static=%x\n", staticR.Private) case "X": configI.StaticKeypair = staticI configR.StaticKeypair = staticR configI.PeerStatic = staticR.Public fmt.Fprintf(out, "init_static=%x\n", staticI.Private) fmt.Fprintf(out, "resp_static=%x\n", staticR.Private) } } else { switch h.Name[0] { case 'K', 'X', 'I': configI.StaticKeypair = staticI if h.Name[0] == 'K' { configR.PeerStatic = staticI.Public } fmt.Fprintf(out, "init_static=%x\n", staticI.Private) } switch h.Name[1] { case 'K', 'E', 'X', 'R': configR.StaticKeypair = staticR fmt.Fprintf(out, "resp_static=%x\n", staticR.Private) switch h.Name[1] { case 'K': configI.PeerStatic = staticR.Public case 'E': configR.EphemeralKeypair = ephR configI.PeerEphemeral = ephR.Public configI.PeerStatic = staticR.Public fmt.Fprintf(out, "resp_ephemeral=%x\n", ephR.Private) } } } fmt.Fprintf(out, "gen_init_ephemeral=%s\n", key3) fmt.Fprintf(out, "gen_resp_ephemeral=%s\n", key4) if len(prologue) > 0 { fmt.Fprintf(out, "prologue=%x\n", prologue) } if len(psk) > 0 { fmt.Fprintf(out, "preshared_key=%x\n", psk) } hsI, _ := NewHandshakeState(configI) hsR, _ := NewHandshakeState(configR) var cs0, cs1 *CipherState for i := range h.Messages { writer, reader := hsI, hsR if i%2 != 0 { writer, reader = hsR, hsI } var payload string if payloads { payload = fmt.Sprintf("test_msg_%d", i) } var msg []byte msg, cs0, cs1, _ = writer.WriteMessage(nil, []byte(payload)) _, _, _, err := reader.ReadMessage(nil, msg) if err != nil { panic(err) } fmt.Fprintf(out, "msg_%d_payload=%x\n", i, payload) fmt.Fprintf(out, "msg_%d_ciphertext=%x\n", i, msg) } payload0 := []byte("yellowsubmarine") payload1 := []byte("submarineyellow") fmt.Fprintf(out, "msg_%d_payload=%x\n", len(h.Messages), payload0) ciphertext0, _ := cs0.Encrypt(nil, nil, payload0) fmt.Fprintf(out, "msg_%d_ciphertext=%x\n", len(h.Messages), ciphertext0) fmt.Fprintf(out, "msg_%d_payload=%x\n", len(h.Messages)+1, payload1) ciphertext1, _ := cs1.Encrypt(nil, nil, payload1) fmt.Fprintf(out, "msg_%d_ciphertext=%x\n", len(h.Messages)+1, ciphertext1) } noise-1.1.0/vectors.txt000066400000000000000000073431001455703460600150760ustar00rootroot00000000000000handshake=Noise_NN_25519_AESGCM_SHA256 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484667cc0d7b4540fd183ba30ecbd3f464f16 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=a0193b62b90fb3497108ec8adcc340a49ebb0a07f1654d71f7e38361f57ba5 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=b2afdcb051e896fa5b6a23def5ee6bdd6032f1b39b2d22ef7da01857648389 handshake=Noise_NNpsk0_25519_AESGCM_SHA256 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662544833316e6c21d899aec6c5f0c6e85e13 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466d3ec4419885d86e6d7310fb1d2263afd msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=6a7b199c69a64cc2ea3c556cf17489fd2ae452d3f3c2a0871cebd327fc31c6 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=e58d43e0c69d8c15df523586b2c58ca40cb0472b5b3775f1cca807fee28a71 handshake=Noise_NNpsk1_25519_AESGCM_SHA256 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254da8ea488f6163eeccb6d3836ec6ccefd msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484666f14491c4b69e43af265c51f3c3c09a7 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=84a7c955143ce45834b0acdef085054ab1a321668d7045dafc67b3e189f66d msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=44cb770629debcb89480285522a1fd693b666884f7758f6f864c09c538c119 handshake=Noise_NNpsk2_25519_AESGCM_SHA256 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625407418737b0236214775b43573cb13a23 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466f6a7d8b64f54b20c5f93066303fb3170 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=84c7ad0cff2af00d6c12896f0230233a99e1abeaef043747035d9a38c06f9e msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=4bdd4800b3abd620ce9f4c519428acf7912af8b6507aa3befecce2444d2614 handshake=Noise_NN_25519_AESGCM_SHA256 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484663d8d136c2fcf7ecd3c3d631843bc33819e3a01f9b58040751011 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=a0193b62b90fb3497108ec8adcc340a49ebb0a07f1654d71f7e38361f57ba5 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=b2afdcb051e896fa5b6a23def5ee6bdd6032f1b39b2d22ef7da01857648389 handshake=Noise_NNpsk0_25519_AESGCM_SHA256 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254d2f8054fcaf80f34700607e4422560b0626b1bc69e65290f6437 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466e21a3177614fce09f014bde7e996fb8c8300777068e6fd2aa7c4 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=6a7b199c69a64cc2ea3c556cf17489fd2ae452d3f3c2a0871cebd327fc31c6 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=e58d43e0c69d8c15df523586b2c58ca40cb0472b5b3775f1cca807fee28a71 handshake=Noise_NNpsk1_25519_AESGCM_SHA256 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254422cb9f10bb05f92da10138bc8c286b5aa2f756e90b8edf48acb msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466d48f5698c6af1a7d6f1c5755e27285251fe4aa9074a3ba30c3ca msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=84a7c955143ce45834b0acdef085054ab1a321668d7045dafc67b3e189f66d msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=44cb770629debcb89480285522a1fd693b666884f7758f6f864c09c538c119 handshake=Noise_NNpsk2_25519_AESGCM_SHA256 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662547bddd25c5d196f5110f02adbbd877b69e8a86f44e2aaa0ee24aa msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466ad1970fd7307e7594135cfec5a24fac90fc08bc1b0f393ec250c msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=84c7ad0cff2af00d6c12896f0230233a99e1abeaef043747035d9a38c06f9e msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=4bdd4800b3abd620ce9f4c519428acf7912af8b6507aa3befecce2444d2614 handshake=Noise_NN_25519_AESGCM_SHA256 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484662529efae98611941ab23ad370919a7f5 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=a0193b62b90fb3497108ec8adcc340a49ebb0a07f1654d71f7e38361f57ba5 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=b2afdcb051e896fa5b6a23def5ee6bdd6032f1b39b2d22ef7da01857648389 handshake=Noise_NNpsk0_25519_AESGCM_SHA256 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625486959ba2f588031f633a6c0e54a14ae5 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c8783e80be055a8f51e32418393af7cd msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=6a7b199c69a64cc2ea3c556cf17489fd2ae452d3f3c2a0871cebd327fc31c6 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=e58d43e0c69d8c15df523586b2c58ca40cb0472b5b3775f1cca807fee28a71 handshake=Noise_NNpsk1_25519_AESGCM_SHA256 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254a0328c29b33470d04740e97e9514cbcd msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484668badb8f25007a52eef9d16009be2c712 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=84a7c955143ce45834b0acdef085054ab1a321668d7045dafc67b3e189f66d msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=44cb770629debcb89480285522a1fd693b666884f7758f6f864c09c538c119 handshake=Noise_NNpsk2_25519_AESGCM_SHA256 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662540dae00c4de099415fc994fe385a4c2e5 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484666a126d2d8d2dff1221cb69310cca148f msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=84c7ad0cff2af00d6c12896f0230233a99e1abeaef043747035d9a38c06f9e msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=4bdd4800b3abd620ce9f4c519428acf7912af8b6507aa3befecce2444d2614 handshake=Noise_NN_25519_AESGCM_SHA256 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484663d8d136c2fcf7ecd3c3d4c93591205092db481f2a901eb96f06c msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=a0193b62b90fb3497108ec8adcc340a49ebb0a07f1654d71f7e38361f57ba5 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=b2afdcb051e896fa5b6a23def5ee6bdd6032f1b39b2d22ef7da01857648389 handshake=Noise_NNpsk0_25519_AESGCM_SHA256 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254d2f8054fcaf80f347006e0fc25590a31fd33c4626fe59283ea40 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466e21a3177614fce09f014af55e853ed6b88b0e4628e071b23e905 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=6a7b199c69a64cc2ea3c556cf17489fd2ae452d3f3c2a0871cebd327fc31c6 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=e58d43e0c69d8c15df523586b2c58ca40cb0472b5b3775f1cca807fee28a71 handshake=Noise_NNpsk1_25519_AESGCM_SHA256 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254422cb9f10bb05f92da1086ba7a3f7fdeede2360802fce2bab641 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466d48f5698c6af1a7d6f1cce81b2d248ccdd0f13d7c85b6b61d30a msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=84a7c955143ce45834b0acdef085054ab1a321668d7045dafc67b3e189f66d msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=44cb770629debcb89480285522a1fd693b666884f7758f6f864c09c538c119 handshake=Noise_NNpsk2_25519_AESGCM_SHA256 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662547bddd25c5d196f5110f0e47e04cd720aa46674d274f35cc9219a msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466ad1970fd7307e7594135c3fbe2866e29c265002153e2342cf6a0 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=84c7ad0cff2af00d6c12896f0230233a99e1abeaef043747035d9a38c06f9e msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=4bdd4800b3abd620ce9f4c519428acf7912af8b6507aa3befecce2444d2614 handshake=Noise_KN_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466827d5016baa63241017945dea7aeb9be msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=d8eb7e92e6ffa800b669953e5a1b99fe268df1161d7293a1c1836f7dd2d55b msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=009f1432e8414277b5ddf687ae0daf50f76e24c5ed30b0d1e4af53544c70ad handshake=Noise_KNpsk0_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254169cf5ede5a37b6318901ccb41cfc0e6 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846625bfff2e7a6576de4563a805d0cc79ad msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=e3cfa09d18879571feb6c1b8656bd2c1768f636b70f269473f795eb26efe04 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=a2f6c5b843b9306af62414b072ef527322ee7c77fcbdcf3774c85a0f62ee29 handshake=Noise_KNpsk1_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662542b4b5f5a0d01587d693384d5fa9b816d msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466e2b2821c8dd067005f3942c533057774 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=2eba684f829bd3225ffd18163e51830268c3107086c6a5c6c8861324a84118 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=00b6cddef82e1313dd1f4a5e2e63aff31c9a39160698ee7b81b00e72c20082 handshake=Noise_KNpsk2_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662543212e39efee8148627b3aeb4e1a997d2 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c1a5d67a8aa44d84bc1d1310365f02a5 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=17bb34185e6ca8171a04f52a87e4b372b2a0c871444050890b9e6d64775a30 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=d607e4acbb0b137bb7956fe26d648088a9865b25376513351b0ed019e5c098 handshake=Noise_KN_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466fc79472c53cf5dde06848020738862f3268987d895428bdd974b msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=d8eb7e92e6ffa800b669953e5a1b99fe268df1161d7293a1c1836f7dd2d55b msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=009f1432e8414277b5ddf687ae0daf50f76e24c5ed30b0d1e4af53544c70ad handshake=Noise_KNpsk0_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254d65483c2c037a3715bfd2e8bceb4633a3758a492725e6cb94082 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466653bddb937e507c9febf96843ce9aedca6013fb23cd2c54fd3cf msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=e3cfa09d18879571feb6c1b8656bd2c1768f636b70f269473f795eb26efe04 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=a2f6c5b843b9306af62414b072ef527322ee7c77fcbdcf3774c85a0f62ee29 handshake=Noise_KNpsk1_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c7207c975f3cc6901b9d650f4f768838f45cb1899c96808a8b7c msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484664685702a41068df357c8ba5150d0e340cde8073a959298579680 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=2eba684f829bd3225ffd18163e51830268c3107086c6a5c6c8861324a84118 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=00b6cddef82e1313dd1f4a5e2e63aff31c9a39160698ee7b81b00e72c20082 handshake=Noise_KNpsk2_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254d109459bac52bf108d0aeee64b8e84f04273f7423b0ae575df25 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484665d5f1ae785b46ce05fded66b0c412e1d35aea492cdafed0410eb msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=17bb34185e6ca8171a04f52a87e4b372b2a0c871444050890b9e6d64775a30 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=d607e4acbb0b137bb7956fe26d648088a9865b25376513351b0ed019e5c098 handshake=Noise_KN_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466f4f7f9d6b31a498dbd6a5e3507e7dc97 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=d8eb7e92e6ffa800b669953e5a1b99fe268df1161d7293a1c1836f7dd2d55b msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=009f1432e8414277b5ddf687ae0daf50f76e24c5ed30b0d1e4af53544c70ad handshake=Noise_KNpsk0_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625439382eef6b7cd99fa9cd2ff31146a7e7 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466fbb960fdc82cf9a7808990194e3c706b msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=e3cfa09d18879571feb6c1b8656bd2c1768f636b70f269473f795eb26efe04 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=a2f6c5b843b9306af62414b072ef527322ee7c77fcbdcf3774c85a0f62ee29 handshake=Noise_KNpsk1_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625404c68e7f550e27c9cc7b2c2edb4de4a7 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484669ac747a0a01f904299ac44304fb4c552 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=2eba684f829bd3225ffd18163e51830268c3107086c6a5c6c8861324a84118 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=00b6cddef82e1313dd1f4a5e2e63aff31c9a39160698ee7b81b00e72c20082 handshake=Noise_KNpsk2_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254546bebfef90b0b870b4e9596efcc7447 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484664c8f298e9f683830ecef7654eac5efae msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=17bb34185e6ca8171a04f52a87e4b372b2a0c871444050890b9e6d64775a30 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=d607e4acbb0b137bb7956fe26d648088a9865b25376513351b0ed019e5c098 handshake=Noise_KN_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466fc79472c53cf5dde06842c7bbaddce7a78d729b83d1579fee94c msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=d8eb7e92e6ffa800b669953e5a1b99fe268df1161d7293a1c1836f7dd2d55b msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=009f1432e8414277b5ddf687ae0daf50f76e24c5ed30b0d1e4af53544c70ad handshake=Noise_KNpsk0_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254d65483c2c037a3715bfd42574061e8d814661165acbf6eedb5c6 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466653bddb937e507c9febfa60df671aeed8ee66f0e986dfeaa0865 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=e3cfa09d18879571feb6c1b8656bd2c1768f636b70f269473f795eb26efe04 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=a2f6c5b843b9306af62414b072ef527322ee7c77fcbdcf3774c85a0f62ee29 handshake=Noise_KNpsk1_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c7207c975f3cc6901b9da3e1a6491825efcc2dd70646ab8cb898 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484664685702a41068df357c8a9d8abd0235d963ad2dcf235a6f353f5 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=2eba684f829bd3225ffd18163e51830268c3107086c6a5c6c8861324a84118 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=00b6cddef82e1313dd1f4a5e2e63aff31c9a39160698ee7b81b00e72c20082 handshake=Noise_KNpsk2_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254d109459bac52bf108d0a86488e517a3e603907489b5fc4a7311b msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484665d5f1ae785b46ce05fdea603c6ef38009c36fe4846c921c6326b msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=17bb34185e6ca8171a04f52a87e4b372b2a0c871444050890b9e6d64775a30 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=d607e4acbb0b137bb7956fe26d648088a9865b25376513351b0ed019e5c098 handshake=Noise_NK_25519_AESGCM_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625418e3e3b9a33b9d5f680ee08fbf20d03f msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466a2c11719e1aac7b6b2efc4871618f8bf msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=95922788fcef822a17b42f450fa14d05d8e6a4377ca0aea3b4804f03db74a2 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=0976cd4a786c253b37489b6bc3867b2df0dddf9f939b218da54092c6d3eca4 handshake=Noise_NKpsk0_25519_AESGCM_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254f965755a00eab9d92efbcdfbcc9e3b63 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c07c73cd24ea666246bc2ce129914dd3 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=093acd47149fadf3574dd440428181edf9c61cc4a1b5ef815e8b779f1bbf40 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=2b8e170039917a61d4fe8acbd2147d50afafc32070458b51b666225614f364 handshake=Noise_NKpsk1_25519_AESGCM_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625461500ecd7d2df0e7b6517f899a562cdd msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484660c7c4d7f118e1fe8345ffceee554dc1b msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=51fd5d7489dae3d6a99766db0afe89c1d19ed91a80b1bb64f94e747360fd2c msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=be24f94a04505c8ab51768a80b388f2758ddab3b2fa3eebfeaceeff0130d78 handshake=Noise_NKpsk2_25519_AESGCM_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625498189a3c42ac5c0817de56867c43b2e5 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484668f7ced987ac0a5d56835254fc6374a82 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=d848f074d3d766c1a7770c51ceba699a16ad262790fc279e7dd2fcccfd4dca msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=51f74c4a80c3768dd6476fbb9c599efe5491567af3d18c8415d9d017821004 handshake=Noise_NK_25519_AESGCM_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662546cfcd5c91dd95543a236cd276e885b5c7a1c3890ca630f06543e msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466b3f3dd3e34414275ad733b2a5593f9b31485eecd7c12413912a9 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=95922788fcef822a17b42f450fa14d05d8e6a4377ca0aea3b4804f03db74a2 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=0976cd4a786c253b37489b6bc3867b2df0dddf9f939b218da54092c6d3eca4 handshake=Noise_NKpsk0_25519_AESGCM_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625485932c8c7615c8263798b4f9d548cb656be5a4eb30cd9a0485c9 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466cce9cb21a513f9de326cba676712ee32441eb2146407fba7b57e msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=093acd47149fadf3574dd440428181edf9c61cc4a1b5ef815e8b779f1bbf40 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=2b8e170039917a61d4fe8acbd2147d50afafc32070458b51b666225614f364 handshake=Noise_NKpsk1_25519_AESGCM_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662543f74b70b971271ffb3efb21dfeb1ea4ec9039c91a237de4027a5 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484669920e429a6643b44e75fa65798b735a87d8c1edbd6013455a404 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=51fd5d7489dae3d6a99766db0afe89c1d19ed91a80b1bb64f94e747360fd2c msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=be24f94a04505c8ab51768a80b388f2758ddab3b2fa3eebfeaceeff0130d78 handshake=Noise_NKpsk2_25519_AESGCM_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254537ac869369393768b2148856b6ab4aa465dbf8b6ff26007937a msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846695f32217406ccaa2da8f4a639bd9b5656007964aeaf74c7c377d msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=d848f074d3d766c1a7770c51ceba699a16ad262790fc279e7dd2fcccfd4dca msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=51f74c4a80c3768dd6476fbb9c599efe5491567af3d18c8415d9d017821004 handshake=Noise_NK_25519_AESGCM_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254f256569b87bb96d615490cfa4ca93b30 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484664918946d495163ba4efd4dfea52402eb msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=95922788fcef822a17b42f450fa14d05d8e6a4377ca0aea3b4804f03db74a2 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=0976cd4a786c253b37489b6bc3867b2df0dddf9f939b218da54092c6d3eca4 handshake=Noise_NKpsk0_25519_AESGCM_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254e6679a09e77ede865a31906c6f3c9537 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466833a2e7d79a0dbfc47f93bd7c4442646 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=093acd47149fadf3574dd440428181edf9c61cc4a1b5ef815e8b779f1bbf40 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=2b8e170039917a61d4fe8acbd2147d50afafc32070458b51b666225614f364 handshake=Noise_NKpsk1_25519_AESGCM_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625402b4cfd1e0bc207c3f2a5459c6993328 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466065a03c65cc319c55bde1813028060ce msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=51fd5d7489dae3d6a99766db0afe89c1d19ed91a80b1bb64f94e747360fd2c msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=be24f94a04505c8ab51768a80b388f2758ddab3b2fa3eebfeaceeff0130d78 handshake=Noise_NKpsk2_25519_AESGCM_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662546de0aeb2f4a18513ac55eea1fbbe4de8 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846626379fd9720128b0dbbaa6734fd5b9e0 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=d848f074d3d766c1a7770c51ceba699a16ad262790fc279e7dd2fcccfd4dca msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=51f74c4a80c3768dd6476fbb9c599efe5491567af3d18c8415d9d017821004 handshake=Noise_NK_25519_AESGCM_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662546cfcd5c91dd95543a2363b9bd07c092d8fff14687e5f48b43afc msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466b3f3dd3e34414275ad73c9d7e1d03e86e1580404241350ed9ab1 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=95922788fcef822a17b42f450fa14d05d8e6a4377ca0aea3b4804f03db74a2 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=0976cd4a786c253b37489b6bc3867b2df0dddf9f939b218da54092c6d3eca4 handshake=Noise_NKpsk0_25519_AESGCM_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625485932c8c7615c82637987b6d1508724221d9ac49e27a147f5b20 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466cce9cb21a513f9de326ccb24b4012111db3db7d41383ad139bf4 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=093acd47149fadf3574dd440428181edf9c61cc4a1b5ef815e8b779f1bbf40 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=2b8e170039917a61d4fe8acbd2147d50afafc32070458b51b666225614f364 handshake=Noise_NKpsk1_25519_AESGCM_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662543f74b70b971271ffb3ef260b21a3f29655bee689e501c2a16b89 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484669920e429a6643b44e75f92aa79146466904a0217560ee27b49df msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=51fd5d7489dae3d6a99766db0afe89c1d19ed91a80b1bb64f94e747360fd2c msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=be24f94a04505c8ab51768a80b388f2758ddab3b2fa3eebfeaceeff0130d78 handshake=Noise_NKpsk2_25519_AESGCM_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254537ac869369393768b21c12506b70b078d6cb28378d02e8d93af msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846695f32217406ccaa2da8ffcd2908a04cb425c65daad407f91f131 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=d848f074d3d766c1a7770c51ceba699a16ad262790fc279e7dd2fcccfd4dca msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=51f74c4a80c3768dd6476fbb9c599efe5491567af3d18c8415d9d017821004 handshake=Noise_KK_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662543f53f25dc2eca97efae6a4a4b847de06 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484660f506ffcf6b2781821b24b70b8fad884 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=0e79035855cdea04bc833d5ff63291042c6e12b0ac55ef2c4096deed1cbac2 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=c6dbcc2ac8f85338732b71a58f4c3be89bdfa7b2da8a8506ec4f1d2d9299a0 handshake=Noise_KKpsk0_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254f8ec97c143e2e9193574ea4989ebc3a2 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484668021ddcdb7eb8e89d8034de9248af340 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=13f09ec7877b005731a876958cec004a7f9c2734e971828082db441ce001c1 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=cf3a9cb9da7eb9bea19447b1f9bea60ac70124dfef886e9b82cd52f748c682 handshake=Noise_KKpsk1_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662542a366ea33985fc1669836b873058f89a msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484664aad05b9467f884f79f963ec5febb35f msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=96252868cb85131fc634b43f37c135da2b02902158369ec7a8e6b45b246732 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=52822ad96c98c7ebcf68cafe91b6f18929aad75af5424a973cdb0f004b3832 handshake=Noise_KKpsk2_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254b7cf6c9cefd4f1fb33dddd9f27acdb20 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484661fe30c2f7bbae74d87402b1cd73c4862 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=d219ab65f4416d18e67f501afa99f43009c0a1c2c78427b1dcbdd6cf020928 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=1c6b3e31392287e06fcc5a885ea8690e39a2d3d54e23f5aeca14fca3c2f053 handshake=Noise_KK_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254f076403f2e0cdd201c5aae9d1539c9ad90262eefea9c90a5397b msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466f12abbcda56565bf3fa3254fe35ad97f3e9d5e25aa296741ec3e msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=0e79035855cdea04bc833d5ff63291042c6e12b0ac55ef2c4096deed1cbac2 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=c6dbcc2ac8f85338732b71a58f4c3be89bdfa7b2da8a8506ec4f1d2d9299a0 handshake=Noise_KKpsk0_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625413c6b4c495bbc7b95432907247ab38b5bb507bcf4f32abbd490e msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466169cfd28ccd38213e17be5b967a6ff6de85f6949f26824243711 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=13f09ec7877b005731a876958cec004a7f9c2734e971828082db441ce001c1 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=cf3a9cb9da7eb9bea19447b1f9bea60ac70124dfef886e9b82cd52f748c682 handshake=Noise_KKpsk1_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254f45eb20acd443feff46beebe27c56ffdd58063a70d706f8640c6 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466d510ee9dd1b542ca5a0d0c5756779245766d964eef8f34867872 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=96252868cb85131fc634b43f37c135da2b02902158369ec7a8e6b45b246732 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=52822ad96c98c7ebcf68cafe91b6f18929aad75af5424a973cdb0f004b3832 handshake=Noise_KKpsk2_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662540590c32754712b9ce391e4773cd5b7c761ef65b6cb530ab10d8f msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466f1bd851e93bfded9a6c7d56b6672e23bdc4a53bdc9e10961b1f0 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=d219ab65f4416d18e67f501afa99f43009c0a1c2c78427b1dcbdd6cf020928 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=1c6b3e31392287e06fcc5a885ea8690e39a2d3d54e23f5aeca14fca3c2f053 handshake=Noise_KK_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254d05f754c90d580f21b243391fe987af4 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466f8f3babbd403b9665488570810b364dd msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=0e79035855cdea04bc833d5ff63291042c6e12b0ac55ef2c4096deed1cbac2 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=c6dbcc2ac8f85338732b71a58f4c3be89bdfa7b2da8a8506ec4f1d2d9299a0 handshake=Noise_KKpsk0_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625420f8e0f9c7579f754ce9b5e05f5cee81 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466b05668d3dcd247a08e099cbeb58174df msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=13f09ec7877b005731a876958cec004a7f9c2734e971828082db441ce001c1 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=cf3a9cb9da7eb9bea19447b1f9bea60ac70124dfef886e9b82cd52f748c682 handshake=Noise_KKpsk1_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662546bfe451377763da7a318dbfc124530f9 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484662f550d35da0ef73348c5f2a8be605444 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=96252868cb85131fc634b43f37c135da2b02902158369ec7a8e6b45b246732 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=52822ad96c98c7ebcf68cafe91b6f18929aad75af5424a973cdb0f004b3832 handshake=Noise_KKpsk2_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625456ad94f8b8869d6b972be9a552537a3c msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466dfd7a0cc157b4afc52ff249d573f1358 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=d219ab65f4416d18e67f501afa99f43009c0a1c2c78427b1dcbdd6cf020928 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=1c6b3e31392287e06fcc5a885ea8690e39a2d3d54e23f5aeca14fca3c2f053 handshake=Noise_KK_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254f076403f2e0cdd201c5a743d4aab448e6e3b29d4aa05628a5cbd msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466f12abbcda56565bf3fa37b196488daf515b7434096aa1638346b msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=0e79035855cdea04bc833d5ff63291042c6e12b0ac55ef2c4096deed1cbac2 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=c6dbcc2ac8f85338732b71a58f4c3be89bdfa7b2da8a8506ec4f1d2d9299a0 handshake=Noise_KKpsk0_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625413c6b4c495bbc7b95432535cc6716834442ddae5e177d5bfd397 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466169cfd28ccd38213e17b518f78c70703c52b0d8d51d4479b557a msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=13f09ec7877b005731a876958cec004a7f9c2734e971828082db441ce001c1 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=cf3a9cb9da7eb9bea19447b1f9bea60ac70124dfef886e9b82cd52f748c682 handshake=Noise_KKpsk1_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254f45eb20acd443feff46b315ad0366d803b7da09e6b84e12c1064 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466d510ee9dd1b542ca5a0dca75e69bc396eea2dadec726382e2030 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=96252868cb85131fc634b43f37c135da2b02902158369ec7a8e6b45b246732 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=52822ad96c98c7ebcf68cafe91b6f18929aad75af5424a973cdb0f004b3832 handshake=Noise_KKpsk2_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662540590c32754712b9ce391bf35caa325f1ed107ec12d5cb4fc49af msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466f1bd851e93bfded9a6c776e0614d573731a40e7f562f6f3c067f msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=d219ab65f4416d18e67f501afa99f43009c0a1c2c78427b1dcbdd6cf020928 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=1c6b3e31392287e06fcc5a885ea8690e39a2d3d54e23f5aeca14fca3c2f053 handshake=Noise_NX_25519_AESGCM_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466ba1de7566c661eeed804d8fba1bcf3071d59a4a7ee2095ae6e8d813b554ad81ee45f4a4b6c2e8cd75b923c050e1330749b0c56fbae778fd91060bca3512061cf msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=947e1b1a2798ef97094d7dbccd7244c92baf5e4d8b0e7ed5da78fbe1fdac76 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=ed42482e9b09e2f97dc931e1444f9d7a8b51241108b41cab53474327500596 handshake=Noise_NXpsk0_25519_AESGCM_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254600c4a8eb4f41bafda4465f2e9e34bae msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484661aa7a9691509a04c46a6ce79f30fdbc377a2158ca3967df0ea4b1bb18532ca8737927e184c0605e9641bc3974b037282ceae988c87be4c68494c1d4f2b705cb2 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=309e81a1ec83fd198e19b766e75f5e3a6ee55cd7b0119955211dcfcfdd0dae msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=92ac33cb48df9677f9a6528346e17cd89855368535e8ee3c8252291d7820a4 handshake=Noise_NXpsk1_25519_AESGCM_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662545b83011e8a447059f5a20533e49339a7 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466afe68fdc6ad2df579fc8c4647c9daa9bccf146281b1fd8a0c4a193c206e89182236eb3f634d1c039759312597c6b3d48389b835f65abd51fd8e9a844fcfa9d89 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=bd4ff6855a94bfd208d12eab8a615bd648d2e255bbca66ef2dcf95b6f64051 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=72f8827c79760073df771af24d5577a294e6c91391de79ad375277b91c899e handshake=Noise_NXpsk2_25519_AESGCM_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c32f9f7340e786f655274b1d55dddeb1 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466483412f9b4501d6e091c567f54851490683ba20583a2d46f9e46a34e1aef4d4f027e98fac3b55d80b833ac43e55d84d2597fbd6906b2ce5c0101b0c992bd7816 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=4e6a4d111017cdfee460438955caf3234610c1971e06d1143ca16c7b407a96 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=0f24650c4c6aa4a0ac25f0def8ac28890c64ad3bd787f101be1f6f3d868288 handshake=Noise_NX_25519_AESGCM_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466ba1de7566c661eeed804d8fba1bcf3071d59a4a7ee2095ae6e8d813b554ad81e4ad1b2e3dc131f7decf35551aaa64803118efe076183e491cbc8dbfa9e20298f8603da282b6cbbf303c8 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=947e1b1a2798ef97094d7dbccd7244c92baf5e4d8b0e7ed5da78fbe1fdac76 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=ed42482e9b09e2f97dc931e1444f9d7a8b51241108b41cab53474327500596 handshake=Noise_NXpsk0_25519_AESGCM_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254dc8c612be768de5f7f3df631297f55b318248d15e3475c151d8d msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484661aa7a9691509a04c46a6ce79f30fdbc377a2158ca3967df0ea4b1bb18532ca87a13b25dfb83dac18a8cbac87c6bc6992ef497397067bba94fb3a96ca3a1020c00a2ae479f2e60e977d68 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=309e81a1ec83fd198e19b766e75f5e3a6ee55cd7b0119955211dcfcfdd0dae msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=92ac33cb48df9677f9a6528346e17cd89855368535e8ee3c8252291d7820a4 handshake=Noise_NXpsk1_25519_AESGCM_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662547bb202abc57006587591d4d467cc7bcbd58800e3d148ce4963e9 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466afe68fdc6ad2df579fc8c4647c9daa9bccf146281b1fd8a0c4a193c206e89182e71c52c2ee8ffc027ee7460754ec704fb0f338043a3e469bd74c850e7f4502269fd8e69922b3ec7f014c msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=bd4ff6855a94bfd208d12eab8a615bd648d2e255bbca66ef2dcf95b6f64051 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=72f8827c79760073df771af24d5577a294e6c91391de79ad375277b91c899e handshake=Noise_NXpsk2_25519_AESGCM_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254cb0e968d6f6cf4ffa7b1a168a144a90d468d117045bcdac9ce2b msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466483412f9b4501d6e091c567f54851490683ba20583a2d46f9e46a34e1aef4d4f2f0c8a081791c4ee0f5abb8697ffc0c99562af1f3e104d1bc04df1b1a17a2ead35a5b569377336e90470 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=4e6a4d111017cdfee460438955caf3234610c1971e06d1143ca16c7b407a96 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=0f24650c4c6aa4a0ac25f0def8ac28890c64ad3bd787f101be1f6f3d868288 handshake=Noise_NX_25519_AESGCM_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466ba1de7566c661eeed804d8fba1bcf3071d59a4a7ee2095ae6e8d813b554ad81e607b7c6987c60ff865c745b0c6ef765be0580f5484546cf94bd3ecb0d2298226 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=947e1b1a2798ef97094d7dbccd7244c92baf5e4d8b0e7ed5da78fbe1fdac76 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=ed42482e9b09e2f97dc931e1444f9d7a8b51241108b41cab53474327500596 handshake=Noise_NXpsk0_25519_AESGCM_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625470fd0f29b580ff883963cdee7776787b msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484661aa7a9691509a04c46a6ce79f30fdbc377a2158ca3967df0ea4b1bb18532ca87d439f889f15a1819502b8356523b4d3a14b3906db2105a3a567cecce7699b721 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=309e81a1ec83fd198e19b766e75f5e3a6ee55cd7b0119955211dcfcfdd0dae msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=92ac33cb48df9677f9a6528346e17cd89855368535e8ee3c8252291d7820a4 handshake=Noise_NXpsk1_25519_AESGCM_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254ead4aca71459776346063860fc9dacef msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466afe68fdc6ad2df579fc8c4647c9daa9bccf146281b1fd8a0c4a193c206e8918205f730787beb926375b224bdd8c3ffd2b485a3a2e44ac9e33de0e3160438b266 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=bd4ff6855a94bfd208d12eab8a615bd648d2e255bbca66ef2dcf95b6f64051 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=72f8827c79760073df771af24d5577a294e6c91391de79ad375277b91c899e handshake=Noise_NXpsk2_25519_AESGCM_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662549d596409946ef9c77e9c61aaeaaad31b msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466483412f9b4501d6e091c567f54851490683ba20583a2d46f9e46a34e1aef4d4fd1622b6c789a6df165149281d1be9449a04338eb661d26528df109a269ed2a5d msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=4e6a4d111017cdfee460438955caf3234610c1971e06d1143ca16c7b407a96 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=0f24650c4c6aa4a0ac25f0def8ac28890c64ad3bd787f101be1f6f3d868288 handshake=Noise_NX_25519_AESGCM_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466ba1de7566c661eeed804d8fba1bcf3071d59a4a7ee2095ae6e8d813b554ad81eb15e8bfeea1d1766c1ca995bf2fc89f8118efe076183e491cbc8f2e50c3b6af6238ec0e37daffb0cc742 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=947e1b1a2798ef97094d7dbccd7244c92baf5e4d8b0e7ed5da78fbe1fdac76 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=ed42482e9b09e2f97dc931e1444f9d7a8b51241108b41cab53474327500596 handshake=Noise_NXpsk0_25519_AESGCM_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254dc8c612be768de5f7f3d2d79705307fcaf69908c306a29c5e2e2 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484661aa7a9691509a04c46a6ce79f30fdbc377a2158ca3967df0ea4b1bb18532ca87cd254354d4669c66db55d59ea0db0c57ef497397067bba94fb3a75d3a3b3804d73a62887f06cd31b17dc msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=309e81a1ec83fd198e19b766e75f5e3a6ee55cd7b0119955211dcfcfdd0dae msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=92ac33cb48df9677f9a6528346e17cd89855368535e8ee3c8252291d7820a4 handshake=Noise_NXpsk1_25519_AESGCM_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662547bb202abc57006587591865999d0fba3fb1daa6f307a1c5a69b9 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466afe68fdc6ad2df579fc8c4647c9daa9bccf146281b1fd8a0c4a193c206e89182883437826964719dfe774885fd82ed85b0f338043a3e469bd74c03833e4d31c6c4197118b2d0c23fe394 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=bd4ff6855a94bfd208d12eab8a615bd648d2e255bbca66ef2dcf95b6f64051 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=72f8827c79760073df771af24d5577a294e6c91391de79ad375277b91c899e handshake=Noise_NXpsk2_25519_AESGCM_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254cb0e968d6f6cf4ffa7b18efe9bd452f1b893c8e960b8be69195b msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466483412f9b4501d6e091c567f54851490683ba20583a2d46f9e46a34e1aef4d4fe228d02a04c8e97aca8ccf320bd8132d9562af1f3e104d1bc04dbc27c527aa4edf080cdd9962779f7718 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=4e6a4d111017cdfee460438955caf3234610c1971e06d1143ca16c7b407a96 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=0f24650c4c6aa4a0ac25f0def8ac28890c64ad3bd787f101be1f6f3d868288 handshake=Noise_KX_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846651b9d60eb501f5efa797765be5facecd1b54777890c04bcbd4c363392ec8020c6574a4c4d6b72b0eb5e4f7ddfa581d58df144e59de159afb7c8c8c882873e8f6 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=cef18cc9c074b7b65b0876c13b23ac88a40d8f0508e88ce059511c69cafe8e msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=2cb3ee4126b92633a230fa828a5d01e20577ad6957dbab9f547a0d321da1aa handshake=Noise_KXpsk0_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254fd769263bccd79587c7f736e1359352c msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484668140b6d6d8f57a44ea44a8faf051f109ab23fa8a11571923ab169aa41f1c145acaa50a4110b116973a047dc46fda6e45e79872d9a133db8635d3ef5f62c67f8c msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=741d43d667af84da98ce714d05b47f025f58390989a6017c317d906d89cef3 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=03cd0d03692885e37a8b0b6163e094c9a8d5a62383c15a0d43af0505985d69 handshake=Noise_KXpsk1_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625494e6dc9266f412da8940e5f1ed2928a1 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466a0bfaa51f5148f03b052ef9bcbe0a78ff41c171a105e9928b8eca5683674c22961d70956f724006d7c2c5f64c58fcc8b9e6d7c434b2bc8dfe67a122758b866ed msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=57271ed33c4dc921dde89c5e7920df0ab2a58361b19e4d6383e650da99e7fd msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=4719d03ef8bd3d51202cb10d97d8ed9a449b928b50944e20fc749fdd36882a handshake=Noise_KXpsk2_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c9c7f6571bb640878ca69055b410af39 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484664eb43ac79c1a09d29d9ee9abd60d01f24e07f95c9b57e6b228513d3b911a6bc5ad29b67154c895c55dca9525049a9c88bb1d43a542bd18b0ad443deb912abfdd msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=97fb83aaf881a57aef8a2ee5c92067bfb12be1ca9ff96ec05801a17ab59dc1 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=5980f6c58e2c33192316ff9db9684a41f98cff4c921dd99d10a147888cab96 handshake=Noise_KX_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846651b9d60eb501f5efa797765be5facecd1b54777890c04bcbd4c363392ec8020cffea7b7816cc8d3cbba422da8c5039188ad2715f430663cbef349f687f0f01cc0840853c3dd4a03ce7bc msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=cef18cc9c074b7b65b0876c13b23ac88a40d8f0508e88ce059511c69cafe8e msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=2cb3ee4126b92633a230fa828a5d01e20577ad6957dbab9f547a0d321da1aa handshake=Noise_KXpsk0_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625479403368521b32d522b60c39847630ecef1bd89c190bd2cb44fb msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484668140b6d6d8f57a44ea44a8faf051f109ab23fa8a11571923ab169aa41f1c145a32241706d4690b505402baf8a06ac03dc72401f783edd06f26aaa98ca33150b3f574651a160baec40c13 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=741d43d667af84da98ce714d05b47f025f58390989a6017c317d906d89cef3 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=03cd0d03692885e37a8b0b6163e094c9a8d5a62383c15a0d43af0505985d69 handshake=Noise_KXpsk1_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625456816aec771748a363fa2a63e3ea0a5168ce09326a42f6efc8b8 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466a0bfaa51f5148f03b052ef9bcbe0a78ff41c171a105e9928b8eca5683674c229549745c7795addacbbf9c25b7cc5137f185ab372ec13f203d0fe6467406ad4cc76392bb4aee1f7c753b8 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=57271ed33c4dc921dde89c5e7920df0ab2a58361b19e4d6383e650da99e7fd msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=4719d03ef8bd3d51202cb10d97d8ed9a449b928b50944e20fc749fdd36882a handshake=Noise_KXpsk2_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625403f860c4b0e5d136c74ff866a7ebba59b63ddf4984282f9a193c msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484664eb43ac79c1a09d29d9ee9abd60d01f24e07f95c9b57e6b228513d3b911a6bc58b6457503d60ae02750d4fddc6a3866ed9e2b7b665ba695e83536460bf805b4ed26df8efe3af02fd4d67 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=97fb83aaf881a57aef8a2ee5c92067bfb12be1ca9ff96ec05801a17ab59dc1 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=5980f6c58e2c33192316ff9db9684a41f98cff4c921dd99d10a147888cab96 handshake=Noise_KX_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846651b9d60eb501f5efa797765be5facecd1b54777890c04bcbd4c363392ec8020c59dd8e8bebc235878d857c6d84f0a5338eb5d49142fed0d622590da2f9ea200d msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=cef18cc9c074b7b65b0876c13b23ac88a40d8f0508e88ce059511c69cafe8e msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=2cb3ee4126b92633a230fa828a5d01e20577ad6957dbab9f547a0d321da1aa handshake=Noise_KXpsk0_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662540fbdb18c265d797f42d7536d571f3473 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484668140b6d6d8f57a44ea44a8faf051f109ab23fa8a11571923ab169aa41f1c145ad1708830ccf11c7e12c15ae550ba6b9ce92e7a01beb8af9f1ce00af37806dd10 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=741d43d667af84da98ce714d05b47f025f58390989a6017c317d906d89cef3 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=03cd0d03692885e37a8b0b6163e094c9a8d5a62383c15a0d43af0505985d69 handshake=Noise_KXpsk1_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662546046313eb7d85b39691f62081c58167c msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466a0bfaa51f5148f03b052ef9bcbe0a78ff41c171a105e9928b8eca5683674c229fc6c0e0e58ca821feb64676b38238320161795720ff76f68a12f005fcb10d883 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=57271ed33c4dc921dde89c5e7920df0ab2a58361b19e4d6383e650da99e7fd msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=4719d03ef8bd3d51202cb10d97d8ed9a449b928b50944e20fc749fdd36882a handshake=Noise_KXpsk2_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548b60f0d634971bb203b652ba1967b61a msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484664eb43ac79c1a09d29d9ee9abd60d01f24e07f95c9b57e6b228513d3b911a6bc5e426a250b6d1851e0988cc7e1e3d719f9b071823a8e301e71894a3e769e1e9fa msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=97fb83aaf881a57aef8a2ee5c92067bfb12be1ca9ff96ec05801a17ab59dc1 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=5980f6c58e2c33192316ff9db9684a41f98cff4c921dd99d10a147888cab96 handshake=Noise_KX_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846651b9d60eb501f5efa797765be5facecd1b54777890c04bcbd4c363392ec8020c7c436998be9c91ef0b5bf378deb15d158ad2715f430663cbef34c07c8fffbbe6e1d06b86643854167c10 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=cef18cc9c074b7b65b0876c13b23ac88a40d8f0508e88ce059511c69cafe8e msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=2cb3ee4126b92633a230fa828a5d01e20577ad6957dbab9f547a0d321da1aa handshake=Noise_KXpsk0_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625479403368521b32d522b66108a91f0ee0630b01d5e9d75894e97b msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484668140b6d6d8f57a44ea44a8faf051f109ab23fa8a11571923ab169aa41f1c145a15a68caffb32e07426fb150508d5a8edc72401f783edd06f26aa8076fe78659e21041dd0d33c189cefe9 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=741d43d667af84da98ce714d05b47f025f58390989a6017c317d906d89cef3 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=03cd0d03692885e37a8b0b6163e094c9a8d5a62383c15a0d43af0505985d69 handshake=Noise_KXpsk1_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625456816aec771748a363fa549a17755a6b8c1bd2ba5e506be3c0ad msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466a0bfaa51f5148f03b052ef9bcbe0a78ff41c171a105e9928b8eca5683674c22927af6ddc7a690cdb4d5a2980f751f89a185ab372ec13f203d0fea95291c45a6bd1ecd8d7646b9d8232d1 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=57271ed33c4dc921dde89c5e7920df0ab2a58361b19e4d6383e650da99e7fd msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=4719d03ef8bd3d51202cb10d97d8ed9a449b928b50944e20fc749fdd36882a handshake=Noise_KXpsk2_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625403f860c4b0e5d136c74f34c13ce247013edb3c379e4a24ac14df msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484664eb43ac79c1a09d29d9ee9abd60d01f24e07f95c9b57e6b228513d3b911a6bc5668549e52bbb134d9ff2d80daea26b9dd9e2b7b665ba695e83538dfe52c654f53bcdc88eea727bffe4ce msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=97fb83aaf881a57aef8a2ee5c92067bfb12be1ca9ff96ec05801a17ab59dc1 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=5980f6c58e2c33192316ff9db9684a41f98cff4c921dd99d10a147888cab96 handshake=Noise_XN_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484661b40ea2c38a51f959025c4dccfa89109 msg_2_payload= msg_2_ciphertext=503a8b472892ad3f5b51559452113c16ed3e184c13f944444437a34e31f439ff6700164dde01a283d026e511c871c6f0e8020d7872c914f667606b55934e2e99 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=6233ac2185ec7af41983156d39699d8449548f0b481d6d0749496ffa362e5e msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=085d31a2a8dfa0451b2080d1b516bf21503bd2abba540af2b97baad8ac7d60 handshake=Noise_XNpsk0_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254be60dc15acd4d448e54a81c36031b2bd msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466f001d2d0138680be35a3b247be41ddf9 msg_2_payload= msg_2_ciphertext=644acc467adf3b0fcf528112daa6473b5f7eccfda6f35e43c8ceacc5b36fdbe783cb198473d625c010ec9b15dbc16f4f484ee5e9afd0030c14ad672c27888cc5 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=89cbd646aeb2f177e721951f251ba49fa3301858d90e126b2624f075d4f129 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=20943736018249bb86246c5e6abc05a43318177fd1acf9f17fdbe66f0c8786 handshake=Noise_XNpsk1_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541b7a6a865a363291e581c34bc35c8365 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466b37f01c70f05506d6dac3d469cf12970 msg_2_payload= msg_2_ciphertext=b6247d8e9b00e51c28e179223285ba39a6d8a8cf6e9d30da6d45046a5bcc46ead5bd76c082595e3fa851fa68b226fed2f0e36857ce2b2c1bb6db5d1def71c553 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=8823a52a7820f4427e8bd2d71aee13f17e979b1095e2602f212c1a0fde7f8d msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=ed15c9431df4f8e30c7d69d8fcc1f3cba62eff9b8f0dca8439b1e63185873e handshake=Noise_XNpsk2_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662542d0c7264b68d5dc48dec2efebac21eb5 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484666ccb5e6f7f8a43fcc7c08ceb60ebd6dd msg_2_payload= msg_2_ciphertext=87cb6974ecc3d5ae746b5ad5a13889eeb64930c8b2d75ab050cea76ff88b0daf2cdaeaedd0347d1e3ea45daae0d82d651f6e5570c6f9ffb03740c5029abbd1d9 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=da8087eb4a0c87e6500c27c335fa688af01ce4ab4293ae99bd8457b38d33c2 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=7e8a728afbddb6786dcead1803d0a8cefb780f66989efcc00512c0c0b84e86 handshake=Noise_XNpsk3_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254a3b49c63b28e53c4ca60d9665141307f msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484663354690faf83da25e878325a2005f1c9 msg_2_payload= msg_2_ciphertext=f63edbeb454c2df86a311f7f3d7491fe197f6d6afa7a23b1c875ba31c93d2941a13e8327f351cec361b5967dab1ea7ce283091fe45f7139d7632d9a3d927737a msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=54db3e36bce2d3a19395309650bd3014b7e71eb3f2708a2b13adee825d2577 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=fb8ea9164c2c727cbdab7ad21c485b2fd73d7dbe30d39482241ab93994aea2 handshake=Noise_XN_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846612f372d7f26b78d4c7c9c9f08c104df736cc02ea331c83c6498d msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=503a8b472892ad3f5b51559452113c16ed3e184c13f944444437a34e31f439ff87991616ec896946bdfd5a2ff7ecab30b1d5d90b0180e4020e32b2905fa1fdf1abf0e17903d0fa11bd8d msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=6233ac2185ec7af41983156d39699d8449548f0b481d6d0749496ffa362e5e msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=085d31a2a8dfa0451b2080d1b516bf21503bd2abba540af2b97baad8ac7d60 handshake=Noise_XNpsk0_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625405e10984cac2c8b9431e3e5025938df4e39c942478bcc2722a54 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484664981c8d4906f552b923dffdde5a30fb4fd30cceb9091ef913503 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=644acc467adf3b0fcf528112daa6473b5f7eccfda6f35e43c8ceacc5b36fdbe77f7303d2484e680d0dcf1703bd006df162029804a05248513696b861f3a2d2627f36c2cb683bbbf99ddd msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=89cbd646aeb2f177e721951f251ba49fa3301858d90e126b2624f075d4f129 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=20943736018249bb86246c5e6abc05a43318177fd1acf9f17fdbe66f0c8786 handshake=Noise_XNpsk1_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c524c8eec1e25e136d78dc60a45cf7fb50893415f65319efb637 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466428012d547892abee56b6fc69ba0315682828117b88eb1fdab61 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=b6247d8e9b00e51c28e179223285ba39a6d8a8cf6e9d30da6d45046a5bcc46eabecda5d2c25c7b10b66f093bf41749a97a849041926ab49c36be5cadaf10f95a92bd053872927102b2d5 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=8823a52a7820f4427e8bd2d71aee13f17e979b1095e2602f212c1a0fde7f8d msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=ed15c9431df4f8e30c7d69d8fcc1f3cba62eff9b8f0dca8439b1e63185873e handshake=Noise_XNpsk2_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254785623d13d7d90f0389866c83a7a233d82456b10229518acb15b msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466d20b83210dbf4e12a39779088407fd878b5cee5e2b6f76a833ac msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=87cb6974ecc3d5ae746b5ad5a13889eeb64930c8b2d75ab050cea76ff88b0daf4fcff82bc91dec08d2fdc0da7c49231e2861bb4a561c81a29395619f3a27ba934977dc7d0a1334dbf516 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=da8087eb4a0c87e6500c27c335fa688af01ce4ab4293ae99bd8457b38d33c2 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=7e8a728afbddb6786dcead1803d0a8cefb780f66989efcc00512c0c0b84e86 handshake=Noise_XNpsk3_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254e23359ef5f50e0c7c53b5611a0d5eba739ae40af2b928c454691 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484663c23b78afaf9c3b0446d9fa54f1e1f8f7d2f79e8c53500e85fcc msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=f63edbeb454c2df86a311f7f3d7491fe197f6d6afa7a23b1c875ba31c93d294145cee44b4f3577448b2097fb2e75b732499943c385cd7d2e878c8b49fb5e7ccbb54cc89cd47e5e0b68c9 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=54db3e36bce2d3a19395309650bd3014b7e71eb3f2708a2b13adee825d2577 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=fb8ea9164c2c727cbdab7ad21c485b2fd73d7dbe30d39482241ab93994aea2 handshake=Noise_XN_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466e7d5bc062725904d0e112526293811b9 msg_2_payload= msg_2_ciphertext=503a8b472892ad3f5b51559452113c16ed3e184c13f944444437a34e31f439ff302f7d08f2b456cefb4b1898b3d59dc7b2c227d1b5776db819a910a3ada6f410 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=6233ac2185ec7af41983156d39699d8449548f0b481d6d0749496ffa362e5e msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=085d31a2a8dfa0451b2080d1b516bf21503bd2abba540af2b97baad8ac7d60 handshake=Noise_XNpsk0_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254f1aa09b43530ef5ef8da92a470629df9 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484665e93ce32ae9ed58913085363e1d5a366 msg_2_payload= msg_2_ciphertext=644acc467adf3b0fcf528112daa6473b5f7eccfda6f35e43c8ceacc5b36fdbe7e560c143da89678734b80155a6ffa08c02183ae0fa0cfb2ee8a2bd6576b2c8e7 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=89cbd646aeb2f177e721951f251ba49fa3301858d90e126b2624f075d4f129 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=20943736018249bb86246c5e6abc05a43318177fd1acf9f17fdbe66f0c8786 handshake=Noise_XNpsk1_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254dbdd21afbcb5201f3293e6b9b0b21741 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846619cb4d03a0688af431c043c964cc5d0c msg_2_payload= msg_2_ciphertext=b6247d8e9b00e51c28e179223285ba39a6d8a8cf6e9d30da6d45046a5bcc46ea39962cc6c99fbf9cb381353ee8374245874d4c279a323370bbb6373a8a000e16 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=8823a52a7820f4427e8bd2d71aee13f17e979b1095e2602f212c1a0fde7f8d msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=ed15c9431df4f8e30c7d69d8fcc1f3cba62eff9b8f0dca8439b1e63185873e handshake=Noise_XNpsk2_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254b1bd021ed3e3e5d4807ada02f9645d74 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846692b94bc6537d2fed9a3c770b66591637 msg_2_payload= msg_2_ciphertext=87cb6974ecc3d5ae746b5ad5a13889eeb64930c8b2d75ab050cea76ff88b0daf415213045fc25050c65d660b1e1b6a8589a8c628892a21e02b5c3f0ea78c5e9f msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=da8087eb4a0c87e6500c27c335fa688af01ce4ab4293ae99bd8457b38d33c2 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=7e8a728afbddb6786dcead1803d0a8cefb780f66989efcc00512c0c0b84e86 handshake=Noise_XNpsk3_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662549c583a80c1b9c72ff4fcab5c6642a61b msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466d97987c73974b0eaf6f990ab6e715b69 msg_2_payload= msg_2_ciphertext=f63edbeb454c2df86a311f7f3d7491fe197f6d6afa7a23b1c875ba31c93d294125e1b2c36a4607e8a34670736750fee5ac7d0a002482b07d7cc4a69115c88d30 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=54db3e36bce2d3a19395309650bd3014b7e71eb3f2708a2b13adee825d2577 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=fb8ea9164c2c727cbdab7ad21c485b2fd73d7dbe30d39482241ab93994aea2 handshake=Noise_XN_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846612f372d7f26b78d4c7c93deca890b478737fefc1db77d4a70c7d msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=503a8b472892ad3f5b51559452113c16ed3e184c13f944444437a34e31f439ffb3cda7ae4d197b2eba686c6de1039e57b1d5d90b0180e4020e325aade631cb7d75d78cb7a4be982b0e4a msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=6233ac2185ec7af41983156d39699d8449548f0b481d6d0749496ffa362e5e msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=085d31a2a8dfa0451b2080d1b516bf21503bd2abba540af2b97baad8ac7d60 handshake=Noise_XNpsk0_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625405e10984cac2c8b9431ef429d0a9e1e987fa9ab72ed768d453d2 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484664981c8d4906f552b923d648b1adfd98463b7de620c3809e54270 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=644acc467adf3b0fcf528112daa6473b5f7eccfda6f35e43c8ceacc5b36fdbe7befd4b86277538e5733008c9b549f39962029804a0524851369631704b259e55bf9c511ac01893651c08 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=89cbd646aeb2f177e721951f251ba49fa3301858d90e126b2624f075d4f129 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=20943736018249bb86246c5e6abc05a43318177fd1acf9f17fdbe66f0c8786 handshake=Noise_XNpsk1_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c524c8eec1e25e136d780cd029d91adbe0f2524363dd016b477d msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466428012d547892abee56b0265f0c9fe99b596e2291d0a3d9d0d3e msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=b6247d8e9b00e51c28e179223285ba39a6d8a8cf6e9d30da6d45046a5bcc46ea33c71af82b774d8fb8295a28eef160217a849041926ab49c36be63429a9c3a37f6fe3914421b8a79e348 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=8823a52a7820f4427e8bd2d71aee13f17e979b1095e2602f212c1a0fde7f8d msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=ed15c9431df4f8e30c7d69d8fcc1f3cba62eff9b8f0dca8439b1e63185873e handshake=Noise_XNpsk2_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254785623d13d7d90f03898f7fee58afe50dae23444110a6e7e9cd0 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466d20b83210dbf4e12a3972ece13ca75b4160abaac01fb0cbdbcbd msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=87cb6974ecc3d5ae746b5ad5a13889eeb64930c8b2d75ab050cea76ff88b0dafb71f25d3022bce2ac10652c064ebf0d32861bb4a561c81a29395a72e17a57f370259c04f0d0cb3899d80 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=da8087eb4a0c87e6500c27c335fa688af01ce4ab4293ae99bd8457b38d33c2 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=7e8a728afbddb6786dcead1803d0a8cefb780f66989efcc00512c0c0b84e86 handshake=Noise_XNpsk3_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254e23359ef5f50e0c7c53b7d4820e2923b0f9f60feec7466841622 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484663c23b78afaf9c3b0446d2b9018a12da1972a41e5aca5b0374147 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=f63edbeb454c2df86a311f7f3d7491fe197f6d6afa7a23b1c875ba31c93d2941b0f3595d303a638fc757eb81d7841a4a499943c385cd7d2e878c8d0d9ef63936a3804cdc64aabd99e829 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=54db3e36bce2d3a19395309650bd3014b7e71eb3f2708a2b13adee825d2577 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=fb8ea9164c2c727cbdab7ad21c485b2fd73d7dbe30d39482241ab93994aea2 handshake=Noise_IN_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548f40c5adb68f25624ae5b214ea767a6ec94d829d3d7b5e1ad1ba6f3e2138285f msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466cdeb70e577c726fba1c682d0cc9d58dc msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=942a03a9fbd149d80f827d68acb020b98a2988435155931aa6e87780e1ae0e msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=6c22a69895e4c940bed283b9a10ce57d83f09683827a283fda77d75d086c6e handshake=Noise_INpsk0_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662547c265cb3ca07c422159c05da5508b509330a9d97d67a3a8fea09e53fe4965fa404a45a7a007c03ec5b18911e3e5a11d686325db0c406eac3d84e1e705cd7e1c0 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846669eeb99c25d0285113c571b33c777dc2 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=702284b311f0bab378528420b7a5a4e829737ee3e6daf41517fda5fdfeadfb msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=52c5ed9e8e2fe3bb2a870b47b1380ef94a8578d3a895f4e799720902699fca handshake=Noise_INpsk1_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662544d56bb0c1876cf3c43d9e4704c3695912692be106f89aefc5f9a82faa4b8ed6d21fd0416e483d32cc8774dfcfdd0d384b277fc77f8a612755a568224a86f48e6 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846610fab43afb44de3edfc9d3039020a09b msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=594ecdb1619d52ce6094d23485ce71d1ba806bb3297be3e2aa8031b51f3fb9 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=703336a1f5ae2eff07442bbbe4797fb864c8038a890332e943234fe11e92e7 handshake=Noise_INpsk2_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c9b90bf88a0b8849c338ddcba137cc03b951bd2dc177071ee618d38f18d8171576e80df2eb20134ea61ecca66d604826193d3940232859387a7e6ab57d74bb41 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484665f13b26b4e47f377f079cba555e2c2e7 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=75c8cda123eca519ddae68fd5de69ae61696a8147e06b1b057478de9ca4dd0 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=477468334e5fe3fd833bedbdaa22c7030e03eb531402dd48df9ce98182ef08 handshake=Noise_IN_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548f40c5adb68f25624ae5b214ea767a6ec94d829d3d7b5e1ad1ba6f3e2138285f746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466e081945b5d5301fe42dadb6da0f788260c6252af7f41e986c5c2 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=942a03a9fbd149d80f827d68acb020b98a2988435155931aa6e87780e1ae0e msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=6c22a69895e4c940bed283b9a10ce57d83f09683827a283fda77d75d086c6e handshake=Noise_INpsk0_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662547c265cb3ca07c422159c05da5508b509330a9d97d67a3a8fea09e53fe4965fa404a45a7a007c03ec5b18911e3e5a11d609022778b13fa7b2d13986844231dd445a7fdf2deced73ed7dc6 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466245acc39d32cd111269cd3b4981cd32d0fc1dd3dbcd10c2ccd00 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=702284b311f0bab378528420b7a5a4e829737ee3e6daf41517fda5fdfeadfb msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=52c5ed9e8e2fe3bb2a870b47b1380ef94a8578d3a895f4e799720902699fca handshake=Noise_INpsk1_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662544d56bb0c1876cf3c43d9e4704c3695912692be106f89aefc5f9a82faa4b8ed6d21fd0416e483d32cc8774dfcfdd0d3849494d756adea0eee2f87617f98ac7dedd0342f13f2437853cac6 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466bb85a80b70fd80c7647ad87182859bce0d29d69890b8fddcad49 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=594ecdb1619d52ce6094d23485ce71d1ba806bb3297be3e2aa8031b51f3fb9 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=703336a1f5ae2eff07442bbbe4797fb864c8038a890332e943234fe11e92e7 handshake=Noise_INpsk2_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c9b90bf88a0b8849c338ddcba137cc03b951bd2dc177071ee618d38f18d8171576e80df2eb20134ea61ecca66d60482696650307415ef3e84d9de5db5ddbb0c6edb37e0652d8f8a58b7b msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466bda119e70ff1a807b1f5c259b407bd4480b60a637c4e94aed69b msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=75c8cda123eca519ddae68fd5de69ae61696a8147e06b1b057478de9ca4dd0 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=477468334e5fe3fd833bedbdaa22c7030e03eb531402dd48df9ce98182ef08 handshake=Noise_IN_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548f40c5adb68f25624ae5b214ea767a6ec94d829d3d7b5e1ad1ba6f3e2138285f msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466b8070f1a05f109f179e7d3cb6327b9ff msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=942a03a9fbd149d80f827d68acb020b98a2988435155931aa6e87780e1ae0e msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=6c22a69895e4c940bed283b9a10ce57d83f09683827a283fda77d75d086c6e handshake=Noise_INpsk0_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662547c265cb3ca07c422159c05da5508b509330a9d97d67a3a8fea09e53fe4965fa459403c6046385d6af1f458771895e2fab6c321b290160c5bd68c6a7c621388ad msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484661e03dc287297fc7ff86bc8c7810284ea msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=702284b311f0bab378528420b7a5a4e829737ee3e6daf41517fda5fdfeadfb msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=52c5ed9e8e2fe3bb2a870b47b1380ef94a8578d3a895f4e799720902699fca handshake=Noise_INpsk1_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662544d56bb0c1876cf3c43d9e4704c3695912692be106f89aefc5f9a82faa4b8ed6d83c17fa055704307c8811d1b0e0ad295f02971305459fdd7f965b0feb5b7ab6b msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846628f89ed04b07e0e9e94742792dc39554 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=594ecdb1619d52ce6094d23485ce71d1ba806bb3297be3e2aa8031b51f3fb9 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=703336a1f5ae2eff07442bbbe4797fb864c8038a890332e943234fe11e92e7 handshake=Noise_INpsk2_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c9b90bf88a0b8849c338ddcba137cc03b951bd2dc177071ee618d38f18d8171506626ab4985988f259d4b3030f1cecd90c4c6d1aa93d4213ad6adf172946bd3e msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484663096c40b47d26caec9bce34e223bc3db msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=75c8cda123eca519ddae68fd5de69ae61696a8147e06b1b057478de9ca4dd0 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=477468334e5fe3fd833bedbdaa22c7030e03eb531402dd48df9ce98182ef08 handshake=Noise_IN_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548f40c5adb68f25624ae5b214ea767a6ec94d829d3d7b5e1ad1ba6f3e2138285f746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466e081945b5d5301fe42dabcc010cb04cf66f06d25106d39cc52c8 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=942a03a9fbd149d80f827d68acb020b98a2988435155931aa6e87780e1ae0e msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=6c22a69895e4c940bed283b9a10ce57d83f09683827a283fda77d75d086c6e handshake=Noise_INpsk0_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662547c265cb3ca07c422159c05da5508b509330a9d97d67a3a8fea09e53fe4965fa459403c6046385d6af1f458771895e2fa09022778b13fa7b2d1391f421b1293b7d5da70d030b158d7cc98 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466245acc39d32cd111269c53d0795705caaf644f5bd95501f560b9 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=702284b311f0bab378528420b7a5a4e829737ee3e6daf41517fda5fdfeadfb msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=52c5ed9e8e2fe3bb2a870b47b1380ef94a8578d3a895f4e799720902699fca handshake=Noise_INpsk1_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662544d56bb0c1876cf3c43d9e4704c3695912692be106f89aefc5f9a82faa4b8ed6d83c17fa055704307c8811d1b0e0ad2959494d756adea0eee2f8785d82292d8f8ed078e246a2fb78d65e1 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466bb85a80b70fd80c7647ae5822e9159b0bef8a8d773460386dc8b msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=594ecdb1619d52ce6094d23485ce71d1ba806bb3297be3e2aa8031b51f3fb9 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=703336a1f5ae2eff07442bbbe4797fb864c8038a890332e943234fe11e92e7 handshake=Noise_INpsk2_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c9b90bf88a0b8849c338ddcba137cc03b951bd2dc177071ee618d38f18d8171506626ab4985988f259d4b3030f1cecd996650307415ef3e84d9d01a03ce746f46e4a8128825ca5788c4a msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466bda119e70ff1a807b1f540d5adbfebb77d74f37e87a47d4df9a0 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=75c8cda123eca519ddae68fd5de69ae61696a8147e06b1b057478de9ca4dd0 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=477468334e5fe3fd833bedbdaa22c7030e03eb531402dd48df9ce98182ef08 handshake=Noise_XK_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c050317e287f01c5a4a9f6f37a94856a msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466ea8cc87b9a11903d7f303d57269ff01c msg_2_payload= msg_2_ciphertext=065a23c2f62fb1bed15cb6ecbd9267c0dc7524d31ee9367258f443517df4b46717fa1a7d40a1fe3f74d4072a798f56f68670975962e5e284bdbc195ce67b8083 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=7043c98fbdd02d209268778851ae3117aa9cb3b29737867eb75e0718e8acfa msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=21069488a4bddda5c5211d9c5b80c1c5e42c4e65e5cd3040c613272ac05c07 handshake=Noise_XKpsk0_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254f2190213b518df1b9dc5abd926f7f12e msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484664beb6a04f3934e2aa1ce0eecdac1fda7 msg_2_payload= msg_2_ciphertext=f2fccf5e2aa6632808766b744399eb8a442020fcc5d2a516b5faa1a6b3561ca556b896b594f7c06e6228c1e05d4a3d1cc6c648d7bafbf389b519577c9a89945d msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=c18790dcb28ed5ebef55be13986db9dd2b9ed2133da67d370de3f1334ac9fc msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=808fe9194364bc33125f5a83c2cece78bbc1e85d7eabbc015dbd9b661e8a75 handshake=Noise_XKpsk1_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625486461e79ac43ef4a2cfea92f000ded06 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846602646e9b0c0f3a8cdf4bb57b005e9237 msg_2_payload= msg_2_ciphertext=f67e4c95336d43f8f72939e99f678331124ae5f5d9bd5e40a41ddded5a0a1b12ede3d82b8736b89315c15e0f4afeef04516b890c51b8302bb5a325bec3ecfba9 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=5b12ab52b1ee79a1114c3407e153f320863dfc86a0d98764f62651c50e2ede msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=c5f2aed3a22d04a2107aca55f25a31366bc246ed6b52d3e71a413409d3e1ce handshake=Noise_XKpsk2_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254d5b4ca0da34839493aa0ac72dd63d23b msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466805f13e0cb0646004ef00f7da87a5766 msg_2_payload= msg_2_ciphertext=0bb72e926efbf321955a792b7ccb45a295c6d5f031f59648c9662b709a8df50723987232b9f4da9ca839b69be56589a440adc771cc7e3c6f62aefb962d0ca355 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=974c226eca2032beaa7dc8e9ee1ac58e566cb305fbc79cca8ffa77eb6a02d0 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=94e1425470776282f7e9751698cc7ba2ae5dc0cb3c8d9b189021f6b94e65ec handshake=Noise_XKpsk3_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254fe849be95b0f77879a684979c7af0544 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846682d5e55e0f9af1439418f4fbd8f974e2 msg_2_payload= msg_2_ciphertext=c1a1778bfba62342d38b2dc7c5042d7e809efc74a6d780d2d7589673e27a3a1a31e539e0855f6ea1b0ff3d61a12da8e10959cb26e02e0815e3ec5a58808352ae msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=f4b75252b4249d95ebbc815bee87953b2bc4d6bc1ca89237d9196ab363b7fe msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=f0a47d13ace24e87f0b5319eea0bc141a410d4d1ae2705e4a0dc5fd168c867 handshake=Noise_XK_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254496dd4fd65bcb73030e1a50f16936b093497a8bde429c662e917 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466ea95f04183becb2895dabdafa5b7d048a62812a4cdc993d14f40 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=065a23c2f62fb1bed15cb6ecbd9267c0dc7524d31ee9367258f443517df4b467b299f23b7566cb23e20882c3ec1a0f6aad26e0baa7ec90d7741c99f08177caf8918d56c694da03de81bd msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=7043c98fbdd02d209268778851ae3117aa9cb3b29737867eb75e0718e8acfa msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=21069488a4bddda5c5211d9c5b80c1c5e42c4e65e5cd3040c613272ac05c07 handshake=Noise_XKpsk0_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662542423e50f21aff9ad1af4d952df961bc129edc38ab98728a8e058 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846654da6d875f5739c5ad31fb962eb44d8e77fb94b5bf87722578a6 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=f2fccf5e2aa6632808766b744399eb8a442020fcc5d2a516b5faa1a6b3561ca5b56f60bb281bd60c6cb5312f4584d043b1d0c753b4af23154da6f47b34d3b8e7aca54c7dfbf9f8f14796 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=c18790dcb28ed5ebef55be13986db9dd2b9ed2133da67d370de3f1334ac9fc msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=808fe9194364bc33125f5a83c2cece78bbc1e85d7eabbc015dbd9b661e8a75 handshake=Noise_XKpsk1_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662545e026b56dc562c44666a4b04568f0485cef1c5067b4484d10d7c msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466020430cef83f07cba7618e4b4de18d8f43a09e70021b8d5c701d msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=f67e4c95336d43f8f72939e99f678331124ae5f5d9bd5e40a41ddded5a0a1b12a73c4e9ad20e003306bf0682e5c662c2eadb761ca33e775aea82e39bce172ef4fdf75a28142fc4375066 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=5b12ab52b1ee79a1114c3407e153f320863dfc86a0d98764f62651c50e2ede msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=c5f2aed3a22d04a2107aca55f25a31366bc246ed6b52d3e71a413409d3e1ce handshake=Noise_XKpsk2_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625429519d9da85dd8bb5090f154872c67bb1a86e0ecd5dc14d0dd77 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484660f4d74c505f803c540657f2f648cf45b3ec7222c71c4d9b8574e msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=0bb72e926efbf321955a792b7ccb45a295c6d5f031f59648c9662b709a8df5075091175fc7e05098a89b8eb66fcbcc153ceb21a2f48b1ad5b7f41c741e6ebde723a3f28fa1cdca225fdd msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=974c226eca2032beaa7dc8e9ee1ac58e566cb305fbc79cca8ffa77eb6a02d0 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=94e1425470776282f7e9751698cc7ba2ae5dc0cb3c8d9b189021f6b94e65ec handshake=Noise_XKpsk3_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254a6f963df7b04718a9a3aecf6f1900be93d1d923389bd9009f140 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466a13bb0d71fd337f74bd5d2c13987667845b0ac7dc84cdbc516c1 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=c1a1778bfba62342d38b2dc7c5042d7e809efc74a6d780d2d7589673e27a3a1a27c2812e02c1c55e91c5143c3dc09ec208eab30f236b34955872b84b93506853f91d7e0a0fa565b63612 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=f4b75252b4249d95ebbc815bee87953b2bc4d6bc1ca89237d9196ab363b7fe msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=f0a47d13ace24e87f0b5319eea0bc141a410d4d1ae2705e4a0dc5fd168c867 handshake=Noise_XK_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254adeaa7a4d551515273fda940aa4a5c8a msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466ef86a45510611db0c587343c9bc1598a msg_2_payload= msg_2_ciphertext=065a23c2f62fb1bed15cb6ecbd9267c0dc7524d31ee9367258f443517df4b467af8e83092060a7ae3419acc16ff01de79bd94e38a1517cc2bec944e49148c8fb msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=7043c98fbdd02d209268778851ae3117aa9cb3b29737867eb75e0718e8acfa msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=21069488a4bddda5c5211d9c5b80c1c5e42c4e65e5cd3040c613272ac05c07 handshake=Noise_XKpsk0_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254629272b173021b86c6bb347f567e0a6f msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466173b83666da49fc7fd72ff392de6600b msg_2_payload= msg_2_ciphertext=f2fccf5e2aa6632808766b744399eb8a442020fcc5d2a516b5faa1a6b3561ca51e31645083c4afd11906f23987a4afbf39430cf3f5285787fa12bff00fd46615 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=c18790dcb28ed5ebef55be13986db9dd2b9ed2133da67d370de3f1334ac9fc msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=808fe9194364bc33125f5a83c2cece78bbc1e85d7eabbc015dbd9b661e8a75 handshake=Noise_XKpsk1_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254bf1c11388fc68b4c1d166db401a26682 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484669560df6a9977cbf93d0a0cea6aa07b63 msg_2_payload= msg_2_ciphertext=f67e4c95336d43f8f72939e99f678331124ae5f5d9bd5e40a41ddded5a0a1b128dce5e889350cf0ab7bdddbb06a6751c2f2c12b5cf714cf4d2e18eece5562d83 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=5b12ab52b1ee79a1114c3407e153f320863dfc86a0d98764f62651c50e2ede msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=c5f2aed3a22d04a2107aca55f25a31366bc246ed6b52d3e71a413409d3e1ce handshake=Noise_XKpsk2_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c9fe5233a2995e81a524c16aad452566 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466071dd09d6ce273e11d8798d8b12d2ce9 msg_2_payload= msg_2_ciphertext=0bb72e926efbf321955a792b7ccb45a295c6d5f031f59648c9662b709a8df50744a858e35dc73078e6dddca9a9697eb0dfc90b9ed958f8f0655807591acea472 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=974c226eca2032beaa7dc8e9ee1ac58e566cb305fbc79cca8ffa77eb6a02d0 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=94e1425470776282f7e9751698cc7ba2ae5dc0cb3c8d9b189021f6b94e65ec handshake=Noise_XKpsk3_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254b9f5585baf18efad7e93d7dec1071901 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466a99a71b8f92e54977d070f1f10271671 msg_2_payload= msg_2_ciphertext=c1a1778bfba62342d38b2dc7c5042d7e809efc74a6d780d2d7589673e27a3a1a730cd354af59adfbfa3e6ec4bd08bc99aff4955676fbde51360f35a9a510f72b msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=f4b75252b4249d95ebbc815bee87953b2bc4d6bc1ca89237d9196ab363b7fe msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=f0a47d13ace24e87f0b5319eea0bc141a410d4d1ae2705e4a0dc5fd168c867 handshake=Noise_XK_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254496dd4fd65bcb73030e122934282a79fa89a268ffff61fb58356 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466ea95f04183becb2895daa2e377fc2cb1b7500945abce23064a11 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=065a23c2f62fb1bed15cb6ecbd9267c0dc7524d31ee9367258f443517df4b46762a479a461f55eba0779622a07538dabad26e0baa7ec90d7741c5aa49162b67b7a86591ed7080b6b60f6 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=7043c98fbdd02d209268778851ae3117aa9cb3b29737867eb75e0718e8acfa msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=21069488a4bddda5c5211d9c5b80c1c5e42c4e65e5cd3040c613272ac05c07 handshake=Noise_XKpsk0_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662542423e50f21aff9ad1af4c5a676bf5dc0f8a46df2ed5acfecfae6 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846654da6d875f5739c5ad31647583fd0cf33e43619573396b31e006 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=f2fccf5e2aa6632808766b744399eb8a442020fcc5d2a516b5faa1a6b3561ca54e6e5e30d1fd0fa830ee2ce7be13e55ab1d0c753b4af23154da6432ba9b1bde756e4eba9c12bfb132acd msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=c18790dcb28ed5ebef55be13986db9dd2b9ed2133da67d370de3f1334ac9fc msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=808fe9194364bc33125f5a83c2cece78bbc1e85d7eabbc015dbd9b661e8a75 handshake=Noise_XKpsk1_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662545e026b56dc562c44666a0b32c0f7ef20395ed050bf7ce26fe0dd msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466020430cef83f07cba7613bcc24dd903e5ade856baf212f0f228c msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=f67e4c95336d43f8f72939e99f678331124ae5f5d9bd5e40a41ddded5a0a1b12a912e09376977a94197b3cc225e0e569eadb761ca33e775aea82d000ceefd76c3ff19449df3a1af2f503 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=5b12ab52b1ee79a1114c3407e153f320863dfc86a0d98764f62651c50e2ede msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=c5f2aed3a22d04a2107aca55f25a31366bc246ed6b52d3e71a413409d3e1ce handshake=Noise_XKpsk2_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625429519d9da85dd8bb5090f9c0bc4acb54b3ba8a24ec56fa5f4ba0 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484660f4d74c505f803c54065e454d0a3bdf2ef4a40b24693c281ae2a msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=0bb72e926efbf321955a792b7ccb45a295c6d5f031f59648c9662b709a8df5072540b38091cd1530656d7015185d682f3ceb21a2f48b1ad5b7f4094a2660dedd7fafa40dc6febe793f19 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=974c226eca2032beaa7dc8e9ee1ac58e566cb305fbc79cca8ffa77eb6a02d0 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=94e1425470776282f7e9751698cc7ba2ae5dc0cb3c8d9b189021f6b94e65ec handshake=Noise_XKpsk3_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254a6f963df7b04718a9a3a3e16e953cef0de71cf553539d8859d24 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466a13bb0d71fd337f74bd528c12f0b90fde211edca976ede0a3292 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=c1a1778bfba62342d38b2dc7c5042d7e809efc74a6d780d2d7589673e27a3a1a5fdd43d30c8689a043ef99c917b9f36308eab30f236b34955872cb86d6b3e197c9e019fc833ba40868a2 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=f4b75252b4249d95ebbc815bee87953b2bc4d6bc1ca89237d9196ab363b7fe msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=f0a47d13ace24e87f0b5319eea0bc141a410d4d1ae2705e4a0dc5fd168c867 handshake=Noise_IK_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625419d6fab175300a577115c701c41ed681373f0432f81d3bf8676bd05216cd1919ba2eaa418fdd8e09ae59d7cf57869de42789c3b9ca915c2cacf009f9d0e4436e msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846623c019a124da3f096e964fe624cf65db msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=80a75e75c8e8d2e9c2a6c7bc6e550c4997d6d2b45429a530821c4aa5d36f27 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=b8475410da62a98493d33a1e669f8f56dd8f61d449b53bd375299c3435424a handshake=Noise_IKpsk0_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254694ead724bb690ad27ce3893ebd8394b455e44e362122cce141b66200c2ac5a3db8bb908bbf1254f7f74801e5058e5e819dd00881b21a04144c1824606c0c078 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466dc8096770cbc501e31c8d2275ea75642 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=2471b2688160616fc0bd108fde1be5848e763d448a018f8f9052697444a95a msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=e48f8d2d66ccb8f59321228086764d403dac49de50617604bd4e1399ec7714 handshake=Noise_IKpsk1_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254d090a76917ed86b1ca3f8af8ac5c0803d5b3b290ab95fa415d8bf2f9200a59fc34c54450e0a71f213dbb91f5a5843c28a1b1e94ea7a8c729788b074f894477f7 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846635c80f45db0193be6c76fa63c43b2230 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=245e2f9694b825a856dc97709fcc450870d23dd07637b57d21268ad60016e4 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=977eb8234bef8ece7a14c771fa5019aae42c0f4655d4e1ffbfdb4a96def193 handshake=Noise_IKpsk2_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662540322be5210eec7e84567f5b4ad376b908b7c38a587eb71776e0661a6ca9f3ef251962835db06e694781bcf163d3cb38dfe6ffdada1fcf40492123fd5eae6c0c9 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466f9d3c922ccf0a76efc90a08b4d23df61 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=c033f4a3312af700a5a655f6992bcad095ceb5af11b02027cecd87ef65738c msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=3363987af8578ae96cb358858a859ef8060129a05d85700d8a9c4955c599c1 handshake=Noise_IK_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625419d6fab175300a577115c701c41ed681373f0432f81d3bf8676bd05216cd1919ba2eaa418fdd8e09ae59d7cf57869de4e6d8177aa9777fe9b843100e255aee76034f61b96b52af38660c msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846658a7bb8caac509783390e5a04df4a3ca570b2bcdf65f8c1c40cd msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=80a75e75c8e8d2e9c2a6c7bc6e550c4997d6d2b45429a530821c4aa5d36f27 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=b8475410da62a98493d33a1e669f8f56dd8f61d449b53bd375299c3435424a handshake=Noise_IKpsk0_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254694ead724bb690ad27ce3893ebd8394b455e44e362122cce141b66200c2ac5a3db8bb908bbf1254f7f74801e5058e5e817106241219f60be8d1a7770f3def3c59038d187a53c0362f190 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466f6bef292d60d7dd4c6d157f33e863b7b6d53ba0113ae21d8deea msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=2471b2688160616fc0bd108fde1be5848e763d448a018f8f9052697444a95a msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=e48f8d2d66ccb8f59321228086764d403dac49de50617604bd4e1399ec7714 handshake=Noise_IKpsk1_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254d090a76917ed86b1ca3f8af8ac5c0803d5b3b290ab95fa415d8bf2f9200a59fc34c54450e0a71f213dbb91f5a5843c28720b9cbc2e1f0e39ae53c6fe9b31a70aa73d77909aafd3d3c36b msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c92aa230bccd4126f41b8aa35f2c0e1b7d53e57df197dc13feb7 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=245e2f9694b825a856dc97709fcc450870d23dd07637b57d21268ad60016e4 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=977eb8234bef8ece7a14c771fa5019aae42c0f4655d4e1ffbfdb4a96def193 handshake=Noise_IKpsk2_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662540322be5210eec7e84567f5b4ad376b908b7c38a587eb71776e0661a6ca9f3ef251962835db06e694781bcf163d3cb38d2dbe7ee0a408573e5466e702c802dce4b432bd175dff1a5caae4 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466574ad0a465f5fa10665727be848a181ffd21211d5aa7d5be8e28 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=c033f4a3312af700a5a655f6992bcad095ceb5af11b02027cecd87ef65738c msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=3363987af8578ae96cb358858a859ef8060129a05d85700d8a9c4955c599c1 handshake=Noise_IK_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625419d6fab175300a577115c701c41ed681373f0432f81d3bf8676bd05216cd1919e61b75ccef0c0cf0b216fcdf371d0859ab50373f8c7b70a239f8cc8318e6075b msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466bb50a12b50b0b1b43fc6725181315302 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=80a75e75c8e8d2e9c2a6c7bc6e550c4997d6d2b45429a530821c4aa5d36f27 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=b8475410da62a98493d33a1e669f8f56dd8f61d449b53bd375299c3435424a handshake=Noise_IKpsk0_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254694ead724bb690ad27ce3893ebd8394b455e44e362122cce141b66200c2ac5a340048ce6c8456ff4837c29fe67256f81c751b0c269239a167fbf0300dfb648a3 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846666d2b48b1cea39effcb0d05417086092 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=2471b2688160616fc0bd108fde1be5848e763d448a018f8f9052697444a95a msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=e48f8d2d66ccb8f59321228086764d403dac49de50617604bd4e1399ec7714 handshake=Noise_IKpsk1_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254d090a76917ed86b1ca3f8af8ac5c0803d5b3b290ab95fa415d8bf2f9200a59fc0aef8b6d695b38b638d8a84ff6029bfa1389fc6a2c64763e1546d48733e7a69f msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846681140ff7535a34e76cec240241c16675 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=245e2f9694b825a856dc97709fcc450870d23dd07637b57d21268ad60016e4 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=977eb8234bef8ece7a14c771fa5019aae42c0f4655d4e1ffbfdb4a96def193 handshake=Noise_IKpsk2_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662540322be5210eec7e84567f5b4ad376b908b7c38a587eb71776e0661a6ca9f3ef2da7e079ebdd84739c3bce2764827999b754f95e803096d0591567119765f495e msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466848adcd10e9bc9826df50f4b6bc66b29 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=c033f4a3312af700a5a655f6992bcad095ceb5af11b02027cecd87ef65738c msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=3363987af8578ae96cb358858a859ef8060129a05d85700d8a9c4955c599c1 handshake=Noise_IK_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625419d6fab175300a577115c701c41ed681373f0432f81d3bf8676bd05216cd1919e61b75ccef0c0cf0b216fcdf371d0859e6d8177aa9777fe9b8435bb6f8202c3acd9051a9aee0a63e76f6 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846658a7bb8caac5097833909e90778571d34ce0e5b6ea4c3a76f102 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=80a75e75c8e8d2e9c2a6c7bc6e550c4997d6d2b45429a530821c4aa5d36f27 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=b8475410da62a98493d33a1e669f8f56dd8f61d449b53bd375299c3435424a handshake=Noise_IKpsk0_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254694ead724bb690ad27ce3893ebd8394b455e44e362122cce141b66200c2ac5a340048ce6c8456ff4837c29fe67256f8117106241219f60be8d1ad5cce3624dd12b08c8095b0abfe558a2 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466f6bef292d60d7dd4c6d103923a164717d1f2c43d4a0be832d29f msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=2471b2688160616fc0bd108fde1be5848e763d448a018f8f9052697444a95a msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=e48f8d2d66ccb8f59321228086764d403dac49de50617604bd4e1399ec7714 handshake=Noise_IKpsk1_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254d090a76917ed86b1ca3f8af8ac5c0803d5b3b290ab95fa415d8bf2f9200a59fc0aef8b6d695b38b638d8a84ff6029bfa720b9cbc2e1f0e39ae53481de7823a9ec40e8e82d4e52bdbe833 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c92aa230bccd4126f41bba00c0183e8a92b2d41d3874e2d39c67 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=245e2f9694b825a856dc97709fcc450870d23dd07637b57d21268ad60016e4 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=977eb8234bef8ece7a14c771fa5019aae42c0f4655d4e1ffbfdb4a96def193 handshake=Noise_IKpsk2_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662540322be5210eec7e84567f5b4ad376b908b7c38a587eb71776e0661a6ca9f3ef2da7e079ebdd84739c3bce2764827999b2dbe7ee0a408573e5466b25ab358115f0cafc7c888119dfb98cc msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466574ad0a465f5fa106657b9f7927e737f39dbed9fe3bf511849f9 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=c033f4a3312af700a5a655f6992bcad095ceb5af11b02027cecd87ef65738c msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=3363987af8578ae96cb358858a859ef8060129a05d85700d8a9c4955c599c1 handshake=Noise_XX_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484665393019dbd6f438795da206db0886610b26108e424142c2e9b5fd1f7ea70cde8767ce62d7e3c0e9bcefe4ab872c0505b9e824df091b74ffe10a2b32809cab21f msg_2_payload= msg_2_ciphertext=e610eadc4b00c17708bf223f29a66f02342fbedf6c0044736544b9271821ae40e70144cecd9d265dffdc5bb8e051c3f83db32a425e04d8f510c58a43325fbc56 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=9ea1da1ec3bfecfffab213e537ed1791bfa887dd9c631351b3f63d6315ab9a msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=217c5111fad7afde33bd28abaff3def88a57ab50515115d23a10f28621f842 handshake=Noise_XXpsk0_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662547f10774870f2c18bd60e3a1629fee0e9 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466807dca8877a33959186ac0181ac963a7dd13a134ae4a2191da2bedd96911f7b1f2d8f840385aff491d71970b02691ec2ab2beffd1b374db8c8f15cabcb3fddf5 msg_2_payload= msg_2_ciphertext=099fd29f5cad05f9d2c9be076d04e80a092e181fa13a4e844386e360defdca4ea1c15be27443d30d40db0e319f9e614f40a41d90532d7a3684ebc440d9bb73eb msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=99521768e8b75eae6d56db072601817fd0606206ca444b02f911562521e4fd msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=ab15274dff9f222379cd9feac0e4a82b7fb61fc0c79372dd9c07d283b1e765 handshake=Noise_XXpsk1_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254b6dcbceafe33638fea90c80dd1e8d203 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484667017a62eaf03e7998188e6751f9fcac8bc79848fad62102c1936a2af6aef691c0d9fd04c9fe5018b678e0a6d7333ffaa5860ab1d5bc128e25eff7403eaa53864 msg_2_payload= msg_2_ciphertext=8f83154157fddfe88c38ce42a13b74127986fd61dc310450deb5ff6a181fa057639b6fba5e0842781640b7b7c5cf8bdf19ee4436359d40f4214c59aaa2971736 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=776c311a7a1a1a31a0fa9950b6435a8116fc986c30aefb84b1de1a1ea3e0cf msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=c79820d7cd308ba3da226008598c022aeb8f084dde84fee307293a3634e331 handshake=Noise_XXpsk2_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662544cff7d0c96d894314bd03f327cbac98f msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466bc9f39c99cf603e2db23dbe9ce2adec44a572047d4a1d3f8c0df894e11f5bd7fa2fdaa0856557bcc2c4276a81ce70f63fa33069acf2dc7b13f505aa0cfda1372 msg_2_payload= msg_2_ciphertext=b58fc4f341feab3fe253ee6489ad653afe49fcc6eea1f18a892b1a8febc146eed9bacb291dfc7a05015e8a9ff6c4aea6f5090a8fe040a0628bf348f670144762 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=fc4829fa5f449a9aca1577156e58691997a90a5a55b7aa6401257535595eb9 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=b069da251403dba1f073a2fea640f5a8cc91d1f012a01c1fa87435a8492030 handshake=Noise_XXpsk3_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254e3443cc5cde4af71a33c6b56cbc00ea8 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466bb1259f77345353d70dcef1e97d161dd9c3324e72b46203ebe87dcb40159eb6683aae01b5e9a0d3b45f0cc22a1eba217aa52f541c089a733541cbace7919e264 msg_2_payload= msg_2_ciphertext=a702c30239110afbb8afacb639f961e5c2574c3fe59ee6069c0f5f5414ea249379e58f0d514bb0f277ffe5ae6e6aecf9f4c58681a8586ac9878e6b9a086f4e40 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=187cadad4158250d0af49c2aea3bedc34aee2cc962336fbe649527ca78e48c msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=91de652b73884e25506003fe72969748b9092a4518be9c6e4911a52b60375f handshake=Noise_XX_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484665393019dbd6f438795da206db0886610b26108e424142c2e9b5fd1f7ea70cde8c9f29dcec8d3ab554f4a5330657867fe4917917195c8cf360e08d6dc5f71baf875ec6e3bfc7afda4c9c2 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=e610eadc4b00c17708bf223f29a66f02342fbedf6c0044736544b9271821ae40232c55cd96d1350af861f6a04978f7d5e070c07602c6b84d25a331242a71c50ae31dd4c164267fd48bd2 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=9ea1da1ec3bfecfffab213e537ed1791bfa887dd9c631351b3f63d6315ab9a msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=217c5111fad7afde33bd28abaff3def88a57ab50515115d23a10f28621f842 handshake=Noise_XXpsk0_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662542dfece4dae76dc5ac85cb897862e0637e7403c75bb5761111b83 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466807dca8877a33959186ac0181ac963a7dd13a134ae4a2191da2bedd96911f7b1549721eaf8b8212a701886c355be87e686ae9e443b823f0d58eceab3e52ff4d365f9b6793b5a6e913e82 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=099fd29f5cad05f9d2c9be076d04e80a092e181fa13a4e844386e360defdca4e476fccf79130a33fd25244336598bf55637ea8dea2acb6fd2e6c98213519f6f2d25947620be6979e3858 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=99521768e8b75eae6d56db072601817fd0606206ca444b02f911562521e4fd msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=ab15274dff9f222379cd9feac0e4a82b7fb61fc0c79372dd9c07d283b1e765 handshake=Noise_XXpsk1_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548b1c5b18c538c8c63ca5d317942e39790c9a490ec0349924c9f1 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484667017a62eaf03e7998188e6751f9fcac8bc79848fad62102c1936a2af6aef691c0ad62dc8498b97040b8a96630d1c68a6f8fbe4180e999511b4e3bfa3e0ae626aa97e13adc6eeaa2d4310 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=8f83154157fddfe88c38ce42a13b74127986fd61dc310450deb5ff6a181fa057acf4829f9429fc717589b9998148cf0580a72833458eaac993ba86ca4314f11ac370f7fb7a1d92360504 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=776c311a7a1a1a31a0fa9950b6435a8116fc986c30aefb84b1de1a1ea3e0cf msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=c79820d7cd308ba3da226008598c022aeb8f084dde84fee307293a3634e331 handshake=Noise_XXpsk2_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625444c72fdfcc26b692b2435ad02e6c7f0c07226d2edd62204fbe9c msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466bc9f39c99cf603e2db23dbe9ce2adec44a572047d4a1d3f8c0df894e11f5bd7f45cdfbefb68a646406aebe4c1987a2686d93f50fbd193f60379e3691036e92cb41993381816ab66d1ea3 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=b58fc4f341feab3fe253ee6489ad653afe49fcc6eea1f18a892b1a8febc146ee526267e460783c68aefd8a71354f3919ae4d3c4c228a97bbbbef8021883cd1832050c4b17c7b02155569 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=fc4829fa5f449a9aca1577156e58691997a90a5a55b7aa6401257535595eb9 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=b069da251403dba1f073a2fea640f5a8cc91d1f012a01c1fa87435a8492030 handshake=Noise_XXpsk3_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662545d791aebd7b1ff3a73ba5c27944833f62facffa3b38f7ec45f9f msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466bb1259f77345353d70dcef1e97d161dd9c3324e72b46203ebe87dcb40159eb66954fa813c5770391ff0e4006fa005462b1bfa8057f6e8f62584a272b0eec13b6cf6a75a736ddf5d0d3cd msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=a702c30239110afbb8afacb639f961e5c2574c3fe59ee6069c0f5f5414ea2493ab8dbfb3e1f6148b9c0d93e8d9ebf5183e3be30d1cb36cf2cd66eccebe0493ead2ba5f2bfae0d821ce21 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=187cadad4158250d0af49c2aea3bedc34aee2cc962336fbe649527ca78e48c msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=91de652b73884e25506003fe72969748b9092a4518be9c6e4911a52b60375f handshake=Noise_XX_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484665393019dbd6f438795da206db0886610b26108e424142c2e9b5fd1f7ea70cde8545f22cc3b52e6cf83a9266ed4850a7a3460f29794110cc1e4c4b5241c939f90 msg_2_payload= msg_2_ciphertext=e610eadc4b00c17708bf223f29a66f02342fbedf6c0044736544b9271821ae406561124920ea641646ea97786397ad23ab2f0dbf49fc3e46328b481b0924438c msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=9ea1da1ec3bfecfffab213e537ed1791bfa887dd9c631351b3f63d6315ab9a msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=217c5111fad7afde33bd28abaff3def88a57ab50515115d23a10f28621f842 handshake=Noise_XXpsk0_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254fbf84632d6f2ee3f0f542ed012795e4a msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466807dca8877a33959186ac0181ac963a7dd13a134ae4a2191da2bedd96911f7b1aaf8f55fffe1c50fc9ee9c46feba7bf8b04117ac48bc436c3818f5ec5ee45db1 msg_2_payload= msg_2_ciphertext=099fd29f5cad05f9d2c9be076d04e80a092e181fa13a4e844386e360defdca4e9b9f67a4e8a1de4333f67defea7fd8f4e39466651c8681fea507cfa7f3bfe155 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=99521768e8b75eae6d56db072601817fd0606206ca444b02f911562521e4fd msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=ab15274dff9f222379cd9feac0e4a82b7fb61fc0c79372dd9c07d283b1e765 handshake=Noise_XXpsk1_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254709a9d93b489223c7fa509f35c2c19af msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484667017a62eaf03e7998188e6751f9fcac8bc79848fad62102c1936a2af6aef691c503cbdb4cdc7d576fc13f89c8322308ebed27aa285cc83ac65c8ba19224c22a7 msg_2_payload= msg_2_ciphertext=8f83154157fddfe88c38ce42a13b74127986fd61dc310450deb5ff6a181fa0574ab7d599dfa195ed182e163ebd919f8648105379593b3f75dc78fd0dd274bbec msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=776c311a7a1a1a31a0fa9950b6435a8116fc986c30aefb84b1de1a1ea3e0cf msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=c79820d7cd308ba3da226008598c022aeb8f084dde84fee307293a3634e331 handshake=Noise_XXpsk2_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254bdfc6a80d9f928922f8dd436a4005e3c msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466bc9f39c99cf603e2db23dbe9ce2adec44a572047d4a1d3f8c0df894e11f5bd7f29af04d33962ddd8a7c6a4c775f29008ef90fbab2ec1b7782668304fcd060294 msg_2_payload= msg_2_ciphertext=b58fc4f341feab3fe253ee6489ad653afe49fcc6eea1f18a892b1a8febc146ee0decb17e6bf529ac042e8ec4b2226614d28c6c9477b1f2d0bdbee3b53eaaac81 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=fc4829fa5f449a9aca1577156e58691997a90a5a55b7aa6401257535595eb9 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=b069da251403dba1f073a2fea640f5a8cc91d1f012a01c1fa87435a8492030 handshake=Noise_XXpsk3_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662545b2f4adfa73e9ba5320d7dad00152ab9 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466bb1259f77345353d70dcef1e97d161dd9c3324e72b46203ebe87dcb40159eb666198ef90bf6d0b1a0e76374ae604ac12c54156a8210758dea8c50d8720b4533f msg_2_payload= msg_2_ciphertext=a702c30239110afbb8afacb639f961e5c2574c3fe59ee6069c0f5f5414ea2493bf47ccd868daf2dc792d2a6493790f4a804d0508de91173260899064d056c042 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=187cadad4158250d0af49c2aea3bedc34aee2cc962336fbe649527ca78e48c msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=91de652b73884e25506003fe72969748b9092a4518be9c6e4911a52b60375f handshake=Noise_XX_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484665393019dbd6f438795da206db0886610b26108e424142c2e9b5fd1f7ea70cde847f6866f15c3cd3f864f7ed682f1711a4917917195c8cf360e080035dfa88af5c6e9b820278e6016f7d7 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=e610eadc4b00c17708bf223f29a66f02342fbedf6c0044736544b9271821ae403bbe475185a4a265a50e1d43bdaeee7fe070c07602c6b84d25a3b4064af5be30115a052069038f5002a3 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=9ea1da1ec3bfecfffab213e537ed1791bfa887dd9c631351b3f63d6315ab9a msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=217c5111fad7afde33bd28abaff3def88a57ab50515115d23a10f28621f842 handshake=Noise_XXpsk0_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662542dfece4dae76dc5ac85c1825d578f5381e8a6ca0ff8b782f9c86 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466807dca8877a33959186ac0181ac963a7dd13a134ae4a2191da2bedd96911f7b103f1588855356691eb8e399bd3cfd5f486ae9e443b823f0d58ec04fb2ea6275da3194a478e2d24af9a23 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=099fd29f5cad05f9d2c9be076d04e80a092e181fa13a4e844386e360defdca4e8223254ae6ec8e2f94404c1b2cfbf633637ea8dea2acb6fd2e6cf013d5bcd43885c658750a9d5af5c7ec msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=99521768e8b75eae6d56db072601817fd0606206ca444b02f911562521e4fd msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=ab15274dff9f222379cd9feac0e4a82b7fb61fc0c79372dd9c07d283b1e765 handshake=Noise_XXpsk1_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548b1c5b18c538c8c63ca5dd70a54c15168915bf5edbab2df12bf2 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484667017a62eaf03e7998188e6751f9fcac8bc79848fad62102c1936a2af6aef691c29dfd353ee7b2c1ac5031544aa7e2814f8fbe4180e999511b4e32e3fa0a009cdc7b9c20ce6b5787f9fcf msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=8f83154157fddfe88c38ce42a13b74127986fd61dc310450deb5ff6a181fa057d96927eaac505ff481efa6f1c092dd1880a72833458eaac993ba5e19641750e4f2195fa3af7b5f369a1a msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=776c311a7a1a1a31a0fa9950b6435a8116fc986c30aefb84b1de1a1ea3e0cf msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=c79820d7cd308ba3da226008598c022aeb8f084dde84fee307293a3634e331 handshake=Noise_XXpsk2_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625444c72fdfcc26b692b243fd1e0d69cd5735b9af404ae7ddc7f15e msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466bc9f39c99cf603e2db23dbe9ce2adec44a572047d4a1d3f8c0df894e11f5bd7f9ed5a62a0d63ccfc5b60d1420eb1d4ac6d93f50fbd193f60379e2140cdb6860d1460b007be5c8064da95 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=b58fc4f341feab3fe253ee6489ad653afe49fcc6eea1f18a892b1a8febc146ee309032b5b433c34b4982844c2cc0e449ae4d3c4c228a97bbbbef52a9e44f4a52de079ba231a6b68a45c9 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=fc4829fa5f449a9aca1577156e58691997a90a5a55b7aa6401257535595eb9 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=b069da251403dba1f073a2fea640f5a8cc91d1f012a01c1fa87435a8492030 handshake=Noise_XXpsk3_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662545d791aebd7b1ff3a73ba67c693699d548895df3e86b1204b11fe msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466bb1259f77345353d70dcef1e97d161dd9c3324e72b46203ebe87dcb40159eb6603c900a563c48b22719b49f31437cfe9b1bfa8057f6e8f62584a5a0257c9eede97ecbafd2890e6551923 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=a702c30239110afbb8afacb639f961e5c2574c3fe59ee6069c0f5f5414ea2493462db30239ac36a9b70292f81f30fb9d3e3be30d1cb36cf2cd66b2c4bb6a84a19a1a06ab7ba66b78b51d msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=187cadad4158250d0af49c2aea3bedc34aee2cc962336fbe649527ca78e48c msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=91de652b73884e25506003fe72969748b9092a4518be9c6e4911a52b60375f handshake=Noise_IX_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548f40c5adb68f25624ae5b214ea767a6ec94d829d3d7b5e1ad1ba6f3e2138285f msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466dafa2f50bec421c6e061a97013b8d9d582911be531e7e463f108e9389c74d589e2173945cfe456788f1608bdbf6a9c2b34c089108e662e613ac961e8dbc9973b msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=40c12ccfdf59f44d7cfc8c7dfe8a1bf739107c31aebcfc9f4caee7dc9099c1 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=c3beff2f2144bb23f7fae6fd03578c40f1ef01140d1721a9e895958d52d749 handshake=Noise_IXpsk0_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254a91f197ee337c37f7558ccd2074c61fa06784cb2e6325bde19d184ae68e6e2f7c5fbaa3a25628896bcd7c942ae437a7a87c84b7586565643e6ee0655cda423d7 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484661b13bcef5c9664ec91e1fe0a4cc3e93850404c874f059b5f5b83d938d3f52f3e20d6a62ed81ee66161a8c14b2863f63ca88e762840a3c3700c6b382593438f14 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=55e01923ed15f82aaf69393cd6b0d110fd22ba39dcf8207e5c8fb4195a70b2 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=5f5e31e3d5052cfc8537d909b3a5fcc1ccb0cab5d18d251ebeef84a4b1291e handshake=Noise_IXpsk1_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541e878f7607084d4358e3208e796d5ee88ad8308f9923074721451e423633bc5d1e769a44d8f7165f9ea0fd7975979d4fdbeff3a05fc29dddb9a32a6f56f3a181 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484662e0bb8499ca20b384a845a39c290e882f1265f343e60402d87f7f0a692cef64aed150f315e4e68d26f4660e3466e88ee0495de1450357491205f38deb68cc300 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=5d4fce475e4aecd6ab801c48e89b67c13944bfa41cfc1626fafdf6cec81ca3 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=ed29ef74538577291ee8371eaca37b99b83075b1bb24f983424bb7a25c9c86 handshake=Noise_IXpsk2_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625459d797d678b29e8942571b69bc6342f0db2a1e4ec05bbfb2463649f5975c40086e1ad80e495a50a4f4542fe96b7616dce2a7cc1f2e96e85edceb2682deb0dac0 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466745c5b31c6f91c0cc8c3ae7c831e8bb738ef935be56395d0873b630272c030e86d6c4411d18d8fbcf7778e8d4ca089246f78101a9d83e153aab291dfaca58c94 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=d3ac1bd570b82aabc14ba11621d5fd435b751272ebe757406ff922de938d5c msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=a198c97f2c167512d40ab32fbb13c9e32ae975836561a5829ba67500cbb6da handshake=Noise_IX_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548f40c5adb68f25624ae5b214ea767a6ec94d829d3d7b5e1ad1ba6f3e2138285f746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466dafa2f50bec421c6e061a97013b8d9d582911be531e7e463f108e9389c74d589194a720639279eaac9d876aa00c2ece2e8761a2ca307ad49797cd0cea8728f2de0b353ea74d3206276e7 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=40c12ccfdf59f44d7cfc8c7dfe8a1bf739107c31aebcfc9f4caee7dc9099c1 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=c3beff2f2144bb23f7fae6fd03578c40f1ef01140d1721a9e895958d52d749 handshake=Noise_IXpsk0_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254a91f197ee337c37f7558ccd2074c61fa06784cb2e6325bde19d184ae68e6e2f7c5fbaa3a25628896bcd7c942ae437a7aaf6d3b1fcdb3d8b4b960dfb37a0ba15ad240169da3792d74764f msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484661b13bcef5c9664ec91e1fe0a4cc3e93850404c874f059b5f5b83d938d3f52f3ea6c0faf70b81e4686242650bcbb0c110a9cac6dcfc56cd3154b1e658fe0219a8b54d08d5d6e41d78d2b2 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=55e01923ed15f82aaf69393cd6b0d110fd22ba39dcf8207e5c8fb4195a70b2 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=5f5e31e3d5052cfc8537d909b3a5fcc1ccb0cab5d18d251ebeef84a4b1291e handshake=Noise_IXpsk1_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541e878f7607084d4358e3208e796d5ee88ad8308f9923074721451e423633bc5d1e769a44d8f7165f9ea0fd7975979d4fc0e1d27b58cf97cb222256a1edd2ab44b910c8140d4e2b4690e0 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484662e0bb8499ca20b384a845a39c290e882f1265f343e60402d87f7f0a692cef64a66496d0efa8152e6bfe8a2a2f01c2372ffce0d6e6c24e5933f5c8ef7a18d167e99f292e70e7d023e5d58 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=5d4fce475e4aecd6ab801c48e89b67c13944bfa41cfc1626fafdf6cec81ca3 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=ed29ef74538577291ee8371eaca37b99b83075b1bb24f983424bb7a25c9c86 handshake=Noise_IXpsk2_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625459d797d678b29e8942571b69bc6342f0db2a1e4ec05bbfb2463649f5975c40086e1ad80e495a50a4f4542fe96b7616dc9416d6c2f17c1f823e517767c4777936ee38c25aa7909362a631 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466745c5b31c6f91c0cc8c3ae7c831e8bb738ef935be56395d0873b630272c030e82a6e818375056d17651f621b08a6ca2f3a9706957d7bf986e2612cbb0ea0f3bcf6bc5f2120a9335a4c17 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=d3ac1bd570b82aabc14ba11621d5fd435b751272ebe757406ff922de938d5c msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=a198c97f2c167512d40ab32fbb13c9e32ae975836561a5829ba67500cbb6da handshake=Noise_IX_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548f40c5adb68f25624ae5b214ea767a6ec94d829d3d7b5e1ad1ba6f3e2138285f msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466dafa2f50bec421c6e061a97013b8d9d582911be531e7e463f108e9389c74d589086054f914b582ee1157d334cc2285b0040b4468e33e04ac80cb099169d516d8 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=40c12ccfdf59f44d7cfc8c7dfe8a1bf739107c31aebcfc9f4caee7dc9099c1 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=c3beff2f2144bb23f7fae6fd03578c40f1ef01140d1721a9e895958d52d749 handshake=Noise_IXpsk0_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254a91f197ee337c37f7558ccd2074c61fa06784cb2e6325bde19d184ae68e6e2f7127226d6423aee99c69f7fe7f1519f7bdef89bc28f30e4d31bd0144c659a67f8 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484661b13bcef5c9664ec91e1fe0a4cc3e93850404c874f059b5f5b83d938d3f52f3e3d7958a73d23d96ff791d7a09dd76b4faf040e5aae642241824179c0d8283d12 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=55e01923ed15f82aaf69393cd6b0d110fd22ba39dcf8207e5c8fb4195a70b2 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=5f5e31e3d5052cfc8537d909b3a5fcc1ccb0cab5d18d251ebeef84a4b1291e handshake=Noise_IXpsk1_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541e878f7607084d4358e3208e796d5ee88ad8308f9923074721451e423633bc5d36dc199e0216a43e03de5bf3c64456a06356b5f1cccee247341e7139c92f79c6 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484662e0bb8499ca20b384a845a39c290e882f1265f343e60402d87f7f0a692cef64af697b08e044030d3090eaaed4751659063846cc79067c9c33723a8becb43f6cd msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=5d4fce475e4aecd6ab801c48e89b67c13944bfa41cfc1626fafdf6cec81ca3 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=ed29ef74538577291ee8371eaca37b99b83075b1bb24f983424bb7a25c9c86 handshake=Noise_IXpsk2_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625459d797d678b29e8942571b69bc6342f0db2a1e4ec05bbfb2463649f5975c4008bca99e5fe64bd7f59f9c37a10403d8d14b1615d40596696d4e6c3b32a55fbf4b msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466745c5b31c6f91c0cc8c3ae7c831e8bb738ef935be56395d0873b630272c030e85aa03f2d4d61e222a2ebdef29b4652d1dbabae33699f4f0aac9ad1000e5d5e58 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=d3ac1bd570b82aabc14ba11621d5fd435b751272ebe757406ff922de938d5c msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=a198c97f2c167512d40ab32fbb13c9e32ae975836561a5829ba67500cbb6da handshake=Noise_IX_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548f40c5adb68f25624ae5b214ea767a6ec94d829d3d7b5e1ad1ba6f3e2138285f746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466dafa2f50bec421c6e061a97013b8d9d582911be531e7e463f108e9389c74d58943c11157db485d61bcaa6d51bcd3251fe8761a2ca307ad49797cecb71b657aee8eec2c351eb5368ef14f msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=40c12ccfdf59f44d7cfc8c7dfe8a1bf739107c31aebcfc9f4caee7dc9099c1 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=c3beff2f2144bb23f7fae6fd03578c40f1ef01140d1721a9e895958d52d749 handshake=Noise_IXpsk0_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254a91f197ee337c37f7558ccd2074c61fa06784cb2e6325bde19d184ae68e6e2f7127226d6423aee99c69f7fe7f1519f7baf6d3b1fcdb3d8b4b9600be4f2dfc45f94e73292417c3764424e msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484661b13bcef5c9664ec91e1fe0a4cc3e93850404c874f059b5f5b83d938d3f52f3ea278af51752e31746b5e7a8e38fbfb4aa9cac6dcfc56cd3154b18cb5958a8adfbab8090a26084474ccc9 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=55e01923ed15f82aaf69393cd6b0d110fd22ba39dcf8207e5c8fb4195a70b2 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=5f5e31e3d5052cfc8537d909b3a5fcc1ccb0cab5d18d251ebeef84a4b1291e handshake=Noise_IXpsk1_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541e878f7607084d4358e3208e796d5ee88ad8308f9923074721451e423633bc5d36dc199e0216a43e03de5bf3c64456a0c0e1d27b58cf97cb2222ca38d777b3404140852ac27381a72b65 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484662e0bb8499ca20b384a845a39c290e882f1265f343e60402d87f7f0a692cef64aefb82f6c91194d02d31b7e243b5266deffce0d6e6c24e5933f5c1055c6cd239df4ac4a2b751ac57172a6 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=5d4fce475e4aecd6ab801c48e89b67c13944bfa41cfc1626fafdf6cec81ca3 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=ed29ef74538577291ee8371eaca37b99b83075b1bb24f983424bb7a25c9c86 handshake=Noise_IXpsk2_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625459d797d678b29e8942571b69bc6342f0db2a1e4ec05bbfb2463649f5975c4008bca99e5fe64bd7f59f9c37a10403d8d19416d6c2f17c1f823e51ea085f223d835b5cdb3dbbc997748dd0 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466745c5b31c6f91c0cc8c3ae7c831e8bb738ef935be56395d0873b630272c030e8112d7dfed0b36fbd90f66a4865905ff13a9706957d7bf986e2615ddc0e1023ec5831d8b1c3a6bca38ee6 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=d3ac1bd570b82aabc14ba11621d5fd435b751272ebe757406ff922de938d5c msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=a198c97f2c167512d40ab32fbb13c9e32ae975836561a5829ba67500cbb6da handshake=Noise_N_25519_AESGCM_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625471bcc2ec91fac5d2551b8a08e39ae5ab msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=374a734846ea8b76251255d17bae5b5313087ff42afa23ed42a5b5bf325804 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=922037b8012e37d18adb6827375085f06f034888ea3f625dfc91d424334290 handshake=Noise_Npsk0_25519_AESGCM_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254340a10ebcc2642dfbcf5af7f2bf975a9 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=e20e59bdd4cb2aa25691345a5b462b2cf85084b15643091c4fc173f16dc5d7 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=68c7d8986c79c6f8b4589765ef1cc903024c6e8759bf05776335d9e065abe7 handshake=Noise_Npsk1_25519_AESGCM_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254bd29db2d71093718be3c9068ae19b028 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=3caf03e7b531dd629d062fa119ea14d08939bf79327005f276b9a99c5400f0 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=4638116fe8341f36f69c2e646687fd4f6b5b5f10dec581a9ca8202f016f8f8 handshake=Noise_N_25519_AESGCM_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254df115f83f13b64589fecddf876dd30eb9ba694948e5169479513 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=374a734846ea8b76251255d17bae5b5313087ff42afa23ed42a5b5bf325804 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=922037b8012e37d18adb6827375085f06f034888ea3f625dfc91d424334290 handshake=Noise_Npsk0_25519_AESGCM_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625406dd68c4f13f48b25468230d7cef980524e27eaabc8ba348da29 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=e20e59bdd4cb2aa25691345a5b462b2cf85084b15643091c4fc173f16dc5d7 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=68c7d8986c79c6f8b4589765ef1cc903024c6e8759bf05776335d9e065abe7 handshake=Noise_Npsk1_25519_AESGCM_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c13a66d1ae511893d991fdd6649d5aa540467596b854ff69e59e msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=3caf03e7b531dd629d062fa119ea14d08939bf79327005f276b9a99c5400f0 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=4638116fe8341f36f69c2e646687fd4f6b5b5f10dec581a9ca8202f016f8f8 handshake=Noise_N_25519_AESGCM_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254ceb26e62698f0a9d16577f5fcb929fb3 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=374a734846ea8b76251255d17bae5b5313087ff42afa23ed42a5b5bf325804 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=922037b8012e37d18adb6827375085f06f034888ea3f625dfc91d424334290 handshake=Noise_Npsk0_25519_AESGCM_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c84f374576798a9ac7c4e4f3d6fb1660 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=e20e59bdd4cb2aa25691345a5b462b2cf85084b15643091c4fc173f16dc5d7 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=68c7d8986c79c6f8b4589765ef1cc903024c6e8759bf05776335d9e065abe7 handshake=Noise_Npsk1_25519_AESGCM_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662545b20f16a10cf8aec5558e9615c798606 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=3caf03e7b531dd629d062fa119ea14d08939bf79327005f276b9a99c5400f0 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=4638116fe8341f36f69c2e646687fd4f6b5b5f10dec581a9ca8202f016f8f8 handshake=Noise_N_25519_AESGCM_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254df115f83f13b64589fec852ae179184185e9d29fed35f4d235dc msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=374a734846ea8b76251255d17bae5b5313087ff42afa23ed42a5b5bf325804 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=922037b8012e37d18adb6827375085f06f034888ea3f625dfc91d424334290 handshake=Noise_Npsk0_25519_AESGCM_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625406dd68c4f13f48b25468727d65e4f2c438542b1a8181a53dcc73 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=e20e59bdd4cb2aa25691345a5b462b2cf85084b15643091c4fc173f16dc5d7 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=68c7d8986c79c6f8b4589765ef1cc903024c6e8759bf05776335d9e065abe7 handshake=Noise_Npsk1_25519_AESGCM_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c13a66d1ae511893d9916e916af9cabdd72bf1d4e58c91685c96 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=3caf03e7b531dd629d062fa119ea14d08939bf79327005f276b9a99c5400f0 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=4638116fe8341f36f69c2e646687fd4f6b5b5f10dec581a9ca8202f016f8f8 handshake=Noise_K_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254cc4041bbf40e26aea2c61f36b29dfda1 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=aca1ae00ed718c11ae8f91c3c289db54dca4fba284098248984158f4afb15a msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=334cde4d2b9e7189be333e05c4e8ca8cbe9a7e9e3170dc61abf51906f95f9b handshake=Noise_Kpsk0_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254f6463591c0d8b8fd209cf3c80579bfed msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=7736979bc1fc8d5c7d42c92ea41ee59e97d59faafe791a2e3d58c8e8fb9929 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=03236fadebc8f6a18ecb878d1ac2b78a3cf0e0024d0fb5d8b9d105ea194980 handshake=Noise_Kpsk1_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254443d03b8955d57e4fcbdf961645c0db9 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=1429bc785fdc4adc51006b72f574c963bc97309e22feb0b54f8b944292af3b msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=c74d5a471091962d858c65542df842172e2e95a85bfe0eea2c6be86c8bfd89 handshake=Noise_K_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625428f2b400a063dbdce02b182da650e11fdf8ee63bffbdb9263e2d msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=aca1ae00ed718c11ae8f91c3c289db54dca4fba284098248984158f4afb15a msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=334cde4d2b9e7189be333e05c4e8ca8cbe9a7e9e3170dc61abf51906f95f9b handshake=Noise_Kpsk0_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c2b61d59cbbc7e45c9743b816be7edfacba1a21c0b4ea6499687 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=7736979bc1fc8d5c7d42c92ea41ee59e97d59faafe791a2e3d58c8e8fb9929 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=03236fadebc8f6a18ecb878d1ac2b78a3cf0e0024d0fb5d8b9d105ea194980 handshake=Noise_Kpsk1_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662549b08ff5e93b809df01a6974598eabce902b5dca3bef8fdd0ae9f msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=1429bc785fdc4adc51006b72f574c963bc97309e22feb0b54f8b944292af3b msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=c74d5a471091962d858c65542df842172e2e95a85bfe0eea2c6be86c8bfd89 handshake=Noise_K_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662545452dfe8670e01ec6c7ddf716617ac9e msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=aca1ae00ed718c11ae8f91c3c289db54dca4fba284098248984158f4afb15a msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=334cde4d2b9e7189be333e05c4e8ca8cbe9a7e9e3170dc61abf51906f95f9b handshake=Noise_Kpsk0_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254091a3df37d8ffa0d9c758bac64d545e2 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=7736979bc1fc8d5c7d42c92ea41ee59e97d59faafe791a2e3d58c8e8fb9929 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=03236fadebc8f6a18ecb878d1ac2b78a3cf0e0024d0fb5d8b9d105ea194980 handshake=Noise_Kpsk1_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625467fbf473495da6b5e23acf5bb6fe9b22 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=1429bc785fdc4adc51006b72f574c963bc97309e22feb0b54f8b944292af3b msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=c74d5a471091962d858c65542df842172e2e95a85bfe0eea2c6be86c8bfd89 handshake=Noise_K_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625428f2b400a063dbdce02b5c28836b6e5fda2325068eb862efefce msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=aca1ae00ed718c11ae8f91c3c289db54dca4fba284098248984158f4afb15a msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=334cde4d2b9e7189be333e05c4e8ca8cbe9a7e9e3170dc61abf51906f95f9b handshake=Noise_Kpsk0_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c2b61d59cbbc7e45c974869c028f5d84ed2aef938dd851ef00bd msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=7736979bc1fc8d5c7d42c92ea41ee59e97d59faafe791a2e3d58c8e8fb9929 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=03236fadebc8f6a18ecb878d1ac2b78a3cf0e0024d0fb5d8b9d105ea194980 handshake=Noise_Kpsk1_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662549b08ff5e93b809df01a6287cee688e3c750260ad541a39378ee2 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=1429bc785fdc4adc51006b72f574c963bc97309e22feb0b54f8b944292af3b msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=c74d5a471091962d858c65542df842172e2e95a85bfe0eea2c6be86c8bfd89 handshake=Noise_X_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625427b9e233a46e236bc3b949c842a23bd75b3d6d717dbf3aa4a3cfaa59a42e6a50f3540c9b1fdc8ca68fb6b8f9081e9b28194a52a70998dd4ec3fc2088ad06f966 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=601398a290497a3ecf22851d05f53b34fa1fc4a47a0371df1f5c540a1ecf61 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=04edfc327b91e91bb67f5a069e5afbf154ebcf196baf843dce5d22f58f04e7 handshake=Noise_Xpsk0_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254806e8e97beb9d15190981ce5f4080aeb28c7e1c743a3d676a62c14f688c70a7c7ea2fe760f1224179cc5e79e1e6510512dda2314f768816ac53546834a0e3615 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=d3fabb12ea23bcec3493f543912515d7ad5ed8e58e9a9998ae5044d2f27c32 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=5b47a6a68e47e6c22c90a55fb3bff11a8a0bbb84813887d2d7ba0e96dfd36c handshake=Noise_Xpsk1_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662546fa09d3ca0fdbbc71df8bb16ff941b7488f0c070e770859b7026d4058df16697a5eb1d97cf498e8a907dd916557c3564006c7097ab7bb6106508c504c44b9cbc msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=48b987b047342448756adb8c63d3e45f96b4be90f221b0406ab00e95f7219c msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=451d0097fdecb5f4a7e61ef341bdb66a8bbdaf5b1a650d05e7b0f5e29f26ac handshake=Noise_X_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625427b9e233a46e236bc3b949c842a23bd75b3d6d717dbf3aa4a3cfaa59a42e6a50f3540c9b1fdc8ca68fb6b8f9081e9b28ea4c05b652dbf8aff85830c628e63acd02c85425c685c650b07e msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=601398a290497a3ecf22851d05f53b34fa1fc4a47a0371df1f5c540a1ecf61 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=04edfc327b91e91bb67f5a069e5afbf154ebcf196baf843dce5d22f58f04e7 handshake=Noise_Xpsk0_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254806e8e97beb9d15190981ce5f4080aeb28c7e1c743a3d676a62c14f688c70a7c7ea2fe760f1224179cc5e79e1e651051ab45b08deb5664fd49b358927839000e24fd90d598c3c57ee99d msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=d3fabb12ea23bcec3493f543912515d7ad5ed8e58e9a9998ae5044d2f27c32 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=5b47a6a68e47e6c22c90a55fb3bff11a8a0bbb84813887d2d7ba0e96dfd36c handshake=Noise_Xpsk1_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662546fa09d3ca0fdbbc71df8bb16ff941b7488f0c070e770859b7026d4058df16697a5eb1d97cf498e8a907dd916557c3564f54ded2eef286aa4c8f398f33f44b433c3e830e471f72ed3db02 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=48b987b047342448756adb8c63d3e45f96b4be90f221b0406ab00e95f7219c msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=451d0097fdecb5f4a7e61ef341bdb66a8bbdaf5b1a650d05e7b0f5e29f26ac handshake=Noise_X_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625427b9e233a46e236bc3b949c842a23bd75b3d6d717dbf3aa4a3cfaa59a42e6a50e9a53f4b77ba9c212a5ca41f911c099159e23701989c18e59ba9ffc746d06b61 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=601398a290497a3ecf22851d05f53b34fa1fc4a47a0371df1f5c540a1ecf61 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=04edfc327b91e91bb67f5a069e5afbf154ebcf196baf843dce5d22f58f04e7 handshake=Noise_Xpsk0_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254806e8e97beb9d15190981ce5f4080aeb28c7e1c743a3d676a62c14f688c70a7c70240353a0960993446dad6546c6a59e0df5ae06d7bc29f93ccdcc03a66ed9e5 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=d3fabb12ea23bcec3493f543912515d7ad5ed8e58e9a9998ae5044d2f27c32 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=5b47a6a68e47e6c22c90a55fb3bff11a8a0bbb84813887d2d7ba0e96dfd36c handshake=Noise_Xpsk1_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662546fa09d3ca0fdbbc71df8bb16ff941b7488f0c070e770859b7026d4058df16697a6910630c6924a577f719acb8ee3181ca49a434aad229419e4f52a88ba17496e msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=48b987b047342448756adb8c63d3e45f96b4be90f221b0406ab00e95f7219c msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=451d0097fdecb5f4a7e61ef341bdb66a8bbdaf5b1a650d05e7b0f5e29f26ac handshake=Noise_X_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625427b9e233a46e236bc3b949c842a23bd75b3d6d717dbf3aa4a3cfaa59a42e6a50e9a53f4b77ba9c212a5ca41f911c0991ea4c05b652dbf8aff858319c0516c6e9079711b89e419c5825b1 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=601398a290497a3ecf22851d05f53b34fa1fc4a47a0371df1f5c540a1ecf61 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=04edfc327b91e91bb67f5a069e5afbf154ebcf196baf843dce5d22f58f04e7 handshake=Noise_Xpsk0_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254806e8e97beb9d15190981ce5f4080aeb28c7e1c743a3d676a62c14f688c70a7c70240353a0960993446dad6546c6a59eab45b08deb5664fd49b37733e0f59b46f6a5688e03dc408d5133 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=d3fabb12ea23bcec3493f543912515d7ad5ed8e58e9a9998ae5044d2f27c32 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=5b47a6a68e47e6c22c90a55fb3bff11a8a0bbb84813887d2d7ba0e96dfd36c handshake=Noise_Xpsk1_25519_AESGCM_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662546fa09d3ca0fdbbc71df8bb16ff941b7488f0c070e770859b7026d4058df16697a6910630c6924a577f719acb8ee3181cf54ded2eef286aa4c8f37ef95f1e47c89dc3f7afa0b2effc7d5a msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=48b987b047342448756adb8c63d3e45f96b4be90f221b0406ab00e95f7219c msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=451d0097fdecb5f4a7e61ef341bdb66a8bbdaf5b1a650d05e7b0f5e29f26ac handshake=Noise_NN_25519_AESGCM_SHA512 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466546c757b1dee39fe34639f8e59d36b90 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=9a465eef7a497d636aacec6f177a46820045154c6dc21cc887158ff7178f5f msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=a889eab9dcbdd768c92201eb7092fb3e9e2d1c87321fe70f6bd261b21a9aa1 handshake=Noise_NNpsk0_25519_AESGCM_SHA512 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662544ee81f7b223bb25827a6c6c707001dd3 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466b0e7e624ccf4642b46e401e8b574cfa1 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=2c2a25a39ec72b321405393e10c51caec56f8da5af863eb3d5875cbc99afe9 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=31d8991d2ddb026d6ea7e4a1b1bf6388d87fa21d793547514f645d4724523a handshake=Noise_NNpsk1_25519_AESGCM_SHA512 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254e4ed6d14e51cbd37289127ac1c818458 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846604d0bbf97d4b0d35616ddd8e3293e340 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=293dbf6b4293997b1f3609daa237dcf09ec2a79911ef69d311075b231f83cb msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=89ef11a27e48c5d96b7d4562a8ef782ede9b361e0efe9faacc97c90d361058 handshake=Noise_NNpsk2_25519_AESGCM_SHA512 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254da9fb0ab9e465a7ae90061d62fc67048 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466fa2036b0d82fc4c002454692a98cf138 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=5375de65fffa56df1d6e3e66a913430fe313c3418fdeda2e43afb34efd29c7 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=979f3f045a786f9677281e84a4a5df198ec6a826f5969acc228ab6d1cda049 handshake=Noise_NN_25519_AESGCM_SHA512 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466295bdf92326b33d62ca816fc6e8d84b579611812fea2df8204c8 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=9a465eef7a497d636aacec6f177a46820045154c6dc21cc887158ff7178f5f msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=a889eab9dcbdd768c92201eb7092fb3e9e2d1c87321fe70f6bd261b21a9aa1 handshake=Noise_NNpsk0_25519_AESGCM_SHA512 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625437af6d133d63144ae694f990d6e209b9fc4b7cd0f5ca1307e06b msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466823c7e1e048fa3767e86e0d471622865d0683936feec93cb113c msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=2c2a25a39ec72b321405393e10c51caec56f8da5af863eb3d5875cbc99afe9 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=31d8991d2ddb026d6ea7e4a1b1bf6388d87fa21d793547514f645d4724523a handshake=Noise_NNpsk1_25519_AESGCM_SHA512 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254b4d6af33ed485a97c7b78e7d1348afa4323f56148bcd00e812d4 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484664410c5cc3bcf499527e4b6a7df87d8b5007c28b75228d5a62a41 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=293dbf6b4293997b1f3609daa237dcf09ec2a79911ef69d311075b231f83cb msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=89ef11a27e48c5d96b7d4562a8ef782ede9b361e0efe9faacc97c90d361058 handshake=Noise_NNpsk2_25519_AESGCM_SHA512 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662543e1214c67afb95f49d730eb2108ee24b3d646e4aff196aafde03 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846646e5b3a50b77fce5d9d013a0cc1d6bb43389bd89bfae89fdffc6 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=5375de65fffa56df1d6e3e66a913430fe313c3418fdeda2e43afb34efd29c7 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=979f3f045a786f9677281e84a4a5df198ec6a826f5969acc228ab6d1cda049 handshake=Noise_NN_25519_AESGCM_SHA512 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466cf2b3d8441501153c7ad77fff102d4ad msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=9a465eef7a497d636aacec6f177a46820045154c6dc21cc887158ff7178f5f msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=a889eab9dcbdd768c92201eb7092fb3e9e2d1c87321fe70f6bd261b21a9aa1 handshake=Noise_NNpsk0_25519_AESGCM_SHA512 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254e1f68ba6e11a996f2eaf8e6cb3b13ffa msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484662175601186f38e8e4a7912983c06a531 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=2c2a25a39ec72b321405393e10c51caec56f8da5af863eb3d5875cbc99afe9 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=31d8991d2ddb026d6ea7e4a1b1bf6388d87fa21d793547514f645d4724523a handshake=Noise_NNpsk1_25519_AESGCM_SHA512 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625400265a786349e17fbf3e17b4741a0f71 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466ad5a7a0e7c3373008afa12e20e32f4bc msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=293dbf6b4293997b1f3609daa237dcf09ec2a79911ef69d311075b231f83cb msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=89ef11a27e48c5d96b7d4562a8ef782ede9b361e0efe9faacc97c90d361058 handshake=Noise_NNpsk2_25519_AESGCM_SHA512 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662540d8253a4f31ebf4711fa4bad845bf9d0 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466ec4107be3f3458a3c348dfda74cb2480 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=5375de65fffa56df1d6e3e66a913430fe313c3418fdeda2e43afb34efd29c7 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=979f3f045a786f9677281e84a4a5df198ec6a826f5969acc228ab6d1cda049 handshake=Noise_NN_25519_AESGCM_SHA512 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466295bdf92326b33d62ca8984f94b14878d51ba9ce00d1d3ff8a2d msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=9a465eef7a497d636aacec6f177a46820045154c6dc21cc887158ff7178f5f msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=a889eab9dcbdd768c92201eb7092fb3e9e2d1c87321fe70f6bd261b21a9aa1 handshake=Noise_NNpsk0_25519_AESGCM_SHA512 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625437af6d133d63144ae6948b6affd3e6efdabe0650147eedb0be22 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466823c7e1e048fa3767e86d07cedbf0af0e30b9bf2390a8a6891c5 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=2c2a25a39ec72b321405393e10c51caec56f8da5af863eb3d5875cbc99afe9 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=31d8991d2ddb026d6ea7e4a1b1bf6388d87fa21d793547514f645d4724523a handshake=Noise_NNpsk1_25519_AESGCM_SHA512 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254b4d6af33ed485a97c7b76404c4af6bd734344a8deb859a576eb0 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484664410c5cc3bcf499527e474b5995606d95c03e01d927792b13f20 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=293dbf6b4293997b1f3609daa237dcf09ec2a79911ef69d311075b231f83cb msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=89ef11a27e48c5d96b7d4562a8ef782ede9b361e0efe9faacc97c90d361058 handshake=Noise_NNpsk2_25519_AESGCM_SHA512 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662543e1214c67afb95f49d731e6796c13bf0aff823ea8ff9d0a0c167 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846646e5b3a50b77fce5d9d054b5a59fddb6f6f965ad8a102b98c3e7 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=5375de65fffa56df1d6e3e66a913430fe313c3418fdeda2e43afb34efd29c7 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=979f3f045a786f9677281e84a4a5df198ec6a826f5969acc228ab6d1cda049 handshake=Noise_KN_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466f72c1a277693fd38269f8a99291c5da2 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=7f85b724b0d10b19b9f18ba74dc10bc28c187a1505e32a1b7ddb76fc381c60 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=7b27b15d8102e55eb6b5e7c02d5c1309289aa197b383424bb8d70268d1270f handshake=Noise_KNpsk0_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662544b68b11ecf5211c5fda412733efd29ca msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484663cbd6e15bfac1b01f644ac427edfc442 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=c41244c39a4dc4bbd816e4383b36aeb29b39b1a4cd3375c8ee7db0f744b131 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=cbcc5c8eedfe981223357f4d43f13be03b9c6ee905ad052bb319a97d31e22c handshake=Noise_KNpsk1_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254ed5eac382bc8e0e9fd781c2da8b87220 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466176a5de05f62ccb244d937a1aa4740e4 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=90abc79cc783c1390801576ba8ef427a7cc56945b010efdd7b649ad1dbf654 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=a414c63f43213f517dbe5b9ca2fe9013e406135d0b085f6718825d67d1b829 handshake=Noise_KNpsk2_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c0bb61207231b261590226d6bd0ae06f msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c2392623d2b637e821625b49207eeb58 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=aaaeaecd7573c689b8d4ccbc5770cb22d0af475f726df807fc07e57aca7fe8 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=1ee45b0cdba6411256525be9e7e44e1042d2c5402d080fdd0de28944e38b2a handshake=Noise_KN_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466d680843f299d5b026581d284e8e375b8d3fb53a0e005ce9714f7 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=7f85b724b0d10b19b9f18ba74dc10bc28c187a1505e32a1b7ddb76fc381c60 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=7b27b15d8102e55eb6b5e7c02d5c1309289aa197b383424bb8d70268d1270f handshake=Noise_KNpsk0_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c078e4e4c58ada7cb779610e8a2238b1012f7082cb66c772cfc9 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466ab8d646d386089d58257871d3f64ce46e5a812c674583d1ccdf4 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=c41244c39a4dc4bbd816e4383b36aeb29b39b1a4cd3375c8ee7db0f744b131 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=cbcc5c8eedfe981223357f4d43f13be03b9c6ee905ad052bb319a97d31e22c handshake=Noise_KNpsk1_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254484735eb56d9c231711a4a49f1b0e91368939fe01abaafeda157 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466955eb77ae3722bb9b8c14c019d2261382b06c17e895bfe86f3dc msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=90abc79cc783c1390801576ba8ef427a7cc56945b010efdd7b649ad1dbf654 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=a414c63f43213f517dbe5b9ca2fe9013e406135d0b085f6718825d67d1b829 handshake=Noise_KNpsk2_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254222c68cd4874356be9500e89b00ff544ace940b5729f086c3219 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466f47863d9cb0059460bd645d3cf5c91821534a353e6358b048322 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=aaaeaecd7573c689b8d4ccbc5770cb22d0af475f726df807fc07e57aca7fe8 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=1ee45b0cdba6411256525be9e7e44e1042d2c5402d080fdd0de28944e38b2a handshake=Noise_KN_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466edfd9f5e801b157d7af36200f0962b2a msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=7f85b724b0d10b19b9f18ba74dc10bc28c187a1505e32a1b7ddb76fc381c60 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=7b27b15d8102e55eb6b5e7c02d5c1309289aa197b383424bb8d70268d1270f handshake=Noise_KNpsk0_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254017d026ae69e905da4fa3527befbe8a1 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c903feabcdd078005d691951aa948363 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=c41244c39a4dc4bbd816e4383b36aeb29b39b1a4cd3375c8ee7db0f744b131 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=cbcc5c8eedfe981223357f4d43f13be03b9c6ee905ad052bb319a97d31e22c handshake=Noise_KNpsk1_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254d1ff777c50a19ec441934658f96590fb msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846654b54d2e6cdea2573e3a4b7e84607e8f msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=90abc79cc783c1390801576ba8ef427a7cc56945b010efdd7b649ad1dbf654 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=a414c63f43213f517dbe5b9ca2fe9013e406135d0b085f6718825d67d1b829 handshake=Noise_KNpsk2_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254d845f0d6e394c2c4577a7543e7e781c4 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484665445832471db03c2530f8279f43e913b msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=aaaeaecd7573c689b8d4ccbc5770cb22d0af475f726df807fc07e57aca7fe8 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=1ee45b0cdba6411256525be9e7e44e1042d2c5402d080fdd0de28944e38b2a handshake=Noise_KN_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466d680843f299d5b0265815e4064f0df3ea5eeef9535edc1a29e1b msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=7f85b724b0d10b19b9f18ba74dc10bc28c187a1505e32a1b7ddb76fc381c60 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=7b27b15d8102e55eb6b5e7c02d5c1309289aa197b383424bb8d70268d1270f handshake=Noise_KNpsk0_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c078e4e4c58ada7cb779bd109ef1e5c961b7ffb99ec6d65744b0 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466ab8d646d386089d5825772141b5d91cba7a101d5ce077f7eec01 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=c41244c39a4dc4bbd816e4383b36aeb29b39b1a4cd3375c8ee7db0f744b131 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=cbcc5c8eedfe981223357f4d43f13be03b9c6ee905ad052bb319a97d31e22c handshake=Noise_KNpsk1_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254484735eb56d9c231711a830caaff9108765bb21ac3cfc49d99eb msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466955eb77ae3722bb9b8c17991fc2b411ec54030c87e11b2f67cf1 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=90abc79cc783c1390801576ba8ef427a7cc56945b010efdd7b649ad1dbf654 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=a414c63f43213f517dbe5b9ca2fe9013e406135d0b085f6718825d67d1b829 handshake=Noise_KNpsk2_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254222c68cd4874356be9509397dc032d89ade799a5a2591d9a6b32 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466f47863d9cb0059460bd69e5cf4f459a34ce682b7e725dbbedae3 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=aaaeaecd7573c689b8d4ccbc5770cb22d0af475f726df807fc07e57aca7fe8 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=1ee45b0cdba6411256525be9e7e44e1042d2c5402d080fdd0de28944e38b2a handshake=Noise_NK_25519_AESGCM_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254f4de59ddee9ea99d5e8aa53446f9bac9 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846600c26d78fb1fda00ee777962da982403 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=3c3b3e1a1b22cdec195cb8c43f3d694269cd55421d0895cca7696e8c298c1c msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=13d838829d7fb57425535f1586944638fc6bbf339797c76dca3220ef1ac3c6 handshake=Noise_NKpsk0_25519_AESGCM_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625442eba9e36fd2c74a614ad95028e3f5a0 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c4add52345e59d58759ba764f67ed9bc msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=977b3bc4c37ed85bb2f14db182740fe80d5f46a53fdc0a94ab5c45c457524e msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=0c2b02468bfcafd95de5eb7f367545a23c4569540a3ad7c8f586f9df3906ca handshake=Noise_NKpsk1_25519_AESGCM_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662545bea413ae247b1489d5d76dc47a98732 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846680c1ccc3ceb11995d9a9c688519e916c msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=dafa613d0ecf78ca534bf648499e98d5d3b22807a64149f12b45f27b397b16 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=917876a5cd379ec833d3b8e3bae24aaba92e63c316d40872b543fb60f9ad16 handshake=Noise_NKpsk2_25519_AESGCM_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c4be6444813fede19be6aef74e85031c msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846607ef2728f791c670472e5a41e1e6b31f msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=eaf9eace39e81e51a53ae9eabd917d2605ce13bdcf089338a62b554225f230 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=d0c1580eea13c076581792052cc5ea1617c4093fd54657130b273ccb55f1b9 handshake=Noise_NK_25519_AESGCM_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254479d6d76c8b559feebf4a71f42ce483ff0cf117f668906babd12 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846621612afe71fb7bc67dafcd0d83506c6becdad3daac83d5b90b24 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=3c3b3e1a1b22cdec195cb8c43f3d694269cd55421d0895cca7696e8c298c1c msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=13d838829d7fb57425535f1586944638fc6bbf339797c76dca3220ef1ac3c6 handshake=Noise_NKpsk0_25519_AESGCM_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625410bac85a9bf99c7fdd478913e038b7ccc97518c9cad9e1533646 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466e2cc032cc4ae7da4eda9f47aa7c37ad99015588c190bac9a8387 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=977b3bc4c37ed85bb2f14db182740fe80d5f46a53fdc0a94ab5c45c457524e msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=0c2b02468bfcafd95de5eb7f367545a23c4569540a3ad7c8f586f9df3906ca handshake=Noise_NKpsk1_25519_AESGCM_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625482751e4f02de3f742d89f17b30414fb1151dd7eb34dba83103cf msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484664376773ce777a22ce76c89b02c0c992849ecf119f5ecddb511c6 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=dafa613d0ecf78ca534bf648499e98d5d3b22807a64149f12b45f27b397b16 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=917876a5cd379ec833d3b8e3bae24aaba92e63c316d40872b543fb60f9ad16 handshake=Noise_NKpsk2_25519_AESGCM_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662542d0dcc1bd68cfc5ae3bd0b87c08f23c69ce1b3cccd83f5204db1 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466df4695624544314012baea976075677efc6eb4417112883ebd7c msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=eaf9eace39e81e51a53ae9eabd917d2605ce13bdcf089338a62b554225f230 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=d0c1580eea13c076581792052cc5ea1617c4093fd54657130b273ccb55f1b9 handshake=Noise_NK_25519_AESGCM_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254bccd4635d2891ae46fa388fcb277b5bb msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484668479b6648e2a13c0900168a46748457f msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=3c3b3e1a1b22cdec195cb8c43f3d694269cd55421d0895cca7696e8c298c1c msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=13d838829d7fb57425535f1586944638fc6bbf339797c76dca3220ef1ac3c6 handshake=Noise_NKpsk0_25519_AESGCM_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625446261dfdaaf4ca0a1e51254bbf6b3a71 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466a1fae0771c98fdec558518fc919cbd4f msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=977b3bc4c37ed85bb2f14db182740fe80d5f46a53fdc0a94ab5c45c457524e msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=0c2b02468bfcafd95de5eb7f367545a23c4569540a3ad7c8f586f9df3906ca handshake=Noise_NKpsk1_25519_AESGCM_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254ac3a9c9d8550f06f3de2b891e96395cb msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466bf809f989b8fbf9c10f6d31438caa613 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=dafa613d0ecf78ca534bf648499e98d5d3b22807a64149f12b45f27b397b16 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=917876a5cd379ec833d3b8e3bae24aaba92e63c316d40872b543fb60f9ad16 handshake=Noise_NKpsk2_25519_AESGCM_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254b9b01234febc4f0392461ae38c5ee4a8 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846661ff269ec62bf942fe8d6c85a773b1d2 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=eaf9eace39e81e51a53ae9eabd917d2605ce13bdcf089338a62b554225f230 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=d0c1580eea13c076581792052cc5ea1617c4093fd54657130b273ccb55f1b9 handshake=Noise_NK_25519_AESGCM_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254479d6d76c8b559feebf467ad4b7003f368eb3929dca92e160bad msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846621612afe71fb7bc67daf8931a9010b74ab201a6ab9a6224cc78d msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=3c3b3e1a1b22cdec195cb8c43f3d694269cd55421d0895cca7696e8c298c1c msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=13d838829d7fb57425535f1586944638fc6bbf339797c76dca3220ef1ac3c6 handshake=Noise_NKpsk0_25519_AESGCM_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625410bac85a9bf99c7fdd476360ac387c559fc40fa57bc0de8f2b03 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466e2cc032cc4ae7da4eda923f9aad27b1e981be207dc57be28e47c msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=977b3bc4c37ed85bb2f14db182740fe80d5f46a53fdc0a94ab5c45c457524e msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=0c2b02468bfcafd95de5eb7f367545a23c4569540a3ad7c8f586f9df3906ca handshake=Noise_NKpsk1_25519_AESGCM_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625482751e4f02de3f742d89bba6ef6aea9975aae58faccbb8541cf7 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484664376773ce777a22ce76c25463e4d298635ca65941beae4337859 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=dafa613d0ecf78ca534bf648499e98d5d3b22807a64149f12b45f27b397b16 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=917876a5cd379ec833d3b8e3bae24aaba92e63c316d40872b543fb60f9ad16 handshake=Noise_NKpsk2_25519_AESGCM_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662542d0dcc1bd68cfc5ae3bd27ac7960aa606e9dec412a6c64323ea2 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466df4695624544314012ba66257a4a39bb5b6289e32409329b7bda msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=eaf9eace39e81e51a53ae9eabd917d2605ce13bdcf089338a62b554225f230 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=d0c1580eea13c076581792052cc5ea1617c4093fd54657130b273ccb55f1b9 handshake=Noise_KK_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254cbe8f77ad210ff754922c56591edaf17 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466b9198d85a19fe670094c3f65b567f3b5 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=6b689fca5f9af8029b40d692f66dab834d9b1ad71ef02e12f0ec068a93ba55 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=126650ec27e76d0de04fc556ef662a4a0cd619b62daacd5110dc43bfe1c1ba handshake=Noise_KKpsk0_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254cfc494240128ca1a452dedf604a4aa1c msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466e88e00d5fc2996457fd334c4f011f7cc msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=d15b43ffc8c33b514f6b1d1cb5a9baac7bb9e8ab7fa60db501342d4369c737 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=6bd6bdae40d6880a9cf6572e48db7cde278aa1dedd855791167a093d62b2dc handshake=Noise_KKpsk1_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625437534665c31a179f15fb392f7617e6b4 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846651a78581524074d4053423c2a7380160 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=5ee8fab16de07e20d98cd7a3cfcd72d229520670746f1fcaaa1127c729994d msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=ee6791cd8c9a12ecd260c7efcf6d0b094f05828949743f7f1da36d2fead3bd handshake=Noise_KKpsk2_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625493708ed5d90a001924c0e673e87cb122 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484669f5abbd68865b250dfbf71912d44074b msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=0304f4a07a39789848204b1ac1fe2004f035cbb474b1e3f4f11b6f09aaff19 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=14bb951739a8ed231acc6348dcbe342ea124dd4d53a4a463ef415ebd15cb0d handshake=Noise_KK_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254983397660911ddae03feba9474c170c3f303fd4d39625083903a msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466beeba4b2e28bbb5d84eea1eb61d690d124b95b3c9f26a166fb5f msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=6b689fca5f9af8029b40d692f66dab834d9b1ad71ef02e12f0ec068a93ba55 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=126650ec27e76d0de04fc556ef662a4a0cd619b62daacd5110dc43bfe1c1ba handshake=Noise_KKpsk0_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625432687ae9f41a125bbb260be5b0199fb6934a0986470429e21cc4 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466678c53d1c8fb7d77e1c7ad887a31a56e2c7281c1bcb3bd549a7d msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=d15b43ffc8c33b514f6b1d1cb5a9baac7bb9e8ab7fa60db501342d4369c737 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=6bd6bdae40d6880a9cf6572e48db7cde278aa1dedd855791167a093d62b2dc handshake=Noise_KKpsk1_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548b75e1a1de629bd7bac048614be9ce38bd0c0f0100160ff1dcd5 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484664bf2a2da8c86239618ed75c5a3a80f84f18e853c86a6c6137b98 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=5ee8fab16de07e20d98cd7a3cfcd72d229520670746f1fcaaa1127c729994d msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=ee6791cd8c9a12ecd260c7efcf6d0b094f05828949743f7f1da36d2fead3bd handshake=Noise_KKpsk2_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254797f85753395023883c29179f22e141c07c0d0940712f6c0224f msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484663fc5041accf40fbcf106a268de93fd43bd8ce67eec5bec522977 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=0304f4a07a39789848204b1ac1fe2004f035cbb474b1e3f4f11b6f09aaff19 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=14bb951739a8ed231acc6348dcbe342ea124dd4d53a4a463ef415ebd15cb0d handshake=Noise_KK_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625481294976bf2915b8d25846e070a8faf3 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846683c72d35f421d61ea833ffb5a5ececc1 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=6b689fca5f9af8029b40d692f66dab834d9b1ad71ef02e12f0ec068a93ba55 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=126650ec27e76d0de04fc556ef662a4a0cd619b62daacd5110dc43bfe1c1ba handshake=Noise_KKpsk0_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662545511775bf252b7b7798b5aa47a6d2bf4 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466e6927b5da0967848b5cca6d9441ea950 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=d15b43ffc8c33b514f6b1d1cb5a9baac7bb9e8ab7fa60db501342d4369c737 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=6bd6bdae40d6880a9cf6572e48db7cde278aa1dedd855791167a093d62b2dc handshake=Noise_KKpsk1_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254782f9ea5e938f3a83cd596e21dc38f26 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466108c204a27ee44abec42ab2e2155c7f1 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=5ee8fab16de07e20d98cd7a3cfcd72d229520670746f1fcaaa1127c729994d msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=ee6791cd8c9a12ecd260c7efcf6d0b094f05828949743f7f1da36d2fead3bd handshake=Noise_KKpsk2_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662546cfe8fea278b52605acdaed61a076cff msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484661aea6d52c5f57bdb87846f3b20633e01 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=0304f4a07a39789848204b1ac1fe2004f035cbb474b1e3f4f11b6f09aaff19 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=14bb951739a8ed231acc6348dcbe342ea124dd4d53a4a463ef415ebd15cb0d handshake=Noise_KK_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254983397660911ddae03fe246b376afbd5d094b0fa701a84bdcd3e msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466beeba4b2e28bbb5d84ee8142c6b37c508edf518dbad16a09b062 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=6b689fca5f9af8029b40d692f66dab834d9b1ad71ef02e12f0ec068a93ba55 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=126650ec27e76d0de04fc556ef662a4a0cd619b62daacd5110dc43bfe1c1ba handshake=Noise_KKpsk0_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625432687ae9f41a125bbb266304cfeeda44b8ac9eb1338ef6f186a7 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466678c53d1c8fb7d77e1c79d4704436e55e97648d81807db8a43ba msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=d15b43ffc8c33b514f6b1d1cb5a9baac7bb9e8ab7fa60db501342d4369c737 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=6bd6bdae40d6880a9cf6572e48db7cde278aa1dedd855791167a093d62b2dc handshake=Noise_KKpsk1_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548b75e1a1de629bd7bac046d9df733cd3c96d735b2b5338c09281 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484664bf2a2da8c86239618ed437962b82a34484359e590b7252d01b7 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=5ee8fab16de07e20d98cd7a3cfcd72d229520670746f1fcaaa1127c729994d msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=ee6791cd8c9a12ecd260c7efcf6d0b094f05828949743f7f1da36d2fead3bd handshake=Noise_KKpsk2_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254797f85753395023883c2c7495a1b13f1976fa9ebbf898a1054d0 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484663fc5041accf40fbcf106a311f7eaa3ab0eb5bef5f28fa9ef0055 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=0304f4a07a39789848204b1ac1fe2004f035cbb474b1e3f4f11b6f09aaff19 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=14bb951739a8ed231acc6348dcbe342ea124dd4d53a4a463ef415ebd15cb0d handshake=Noise_NX_25519_AESGCM_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466ac104e4413b3e6091ab98f8902f898f750341010fc28130905edcfa84df5b5ff78b8851e94c6c17bd270a7a37e6708c2d69210ebf8c5da2c7babd825d14ba61a msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=50f23b250835f62aeee57429ea276cce9ce465b1fa5bd01cb8041bc9ae7722 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=681c16d92b2ed840ea2096ee1445c6d699f71659c0aa98c115fd2be24a4e6a handshake=Noise_NXpsk0_25519_AESGCM_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254128719fddfb85978a91462e8016a3b7c msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484666c4fbd20d2daae06cfee3a4044de5f045844d2d23c127c77abb5006a1727e9b0d65cf665ef2c2cf4b9b6abc1b2eb38c3795451e327b76fb59eb66315301bc415 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=e8a9c8176161c87470eb1bbe4a5ffe8bd08cc293b80f57f244c10ddbbe368d msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=38d5a75a6dd18e71d5f6555c7edeac938ed79a312ac10077fd8fc8d82ad81b handshake=Noise_NXpsk1_25519_AESGCM_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548f68a3d756a50740b15842b4246d40c9 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484661d6f6e3ddf23875e0592cb924daf3d8126d3008e0d245a8ced1dbfb1286387dedccda427697bf1517a2ce36d5d4dfab9647ec2d26dee1cf6281f4b3217c2e7be msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=0253fb688077f49bb12859d7f33c3988a23b855e14bb9963008bb5e8ada039 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=d296bf8aac74a67761c7c5666f2922d68ab6e431aa6b4004b9fd8cd626cbee handshake=Noise_NXpsk2_25519_AESGCM_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254a3a8c0e25d9cbfd7880c6d3feacf6066 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466fc485d9c0d76abdbc722684433571ab05ce22a12c92fb1ef81296edd14429f57af4cb353cb580e67a53f1d03fc6c7bede73fcb3b753dc767dfc38016c3dc3102 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=8b285956fce83786691fb9e5a48f6571ee16435da742caa84e27606c8c0417 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=43a9eb08fe5a95969a4eb076b238e5eba3913319b0b74142bc47a35b1fcace handshake=Noise_NX_25519_AESGCM_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466ac104e4413b3e6091ab98f8902f898f750341010fc28130905edcfa84df5b5ff50d0f6181f350f6b280c29e87598a257ff5df3365fc12cae7322ea77df156a499836d833f1c218000c9f msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=50f23b250835f62aeee57429ea276cce9ce465b1fa5bd01cb8041bc9ae7722 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=681c16d92b2ed840ea2096ee1445c6d699f71659c0aa98c115fd2be24a4e6a handshake=Noise_NXpsk0_25519_AESGCM_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662544c087d6fe10c8862ed749092cff7288bbb82d14d6c00f86f0974 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484666c4fbd20d2daae06cfee3a4044de5f045844d2d23c127c77abb5006a1727e9b07e867dd2c4ea66642d27c3ae9feeaea47089b9aede3e5674a1829bd4a5d8b3b057de516d4bf5318a2fa9 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=e8a9c8176161c87470eb1bbe4a5ffe8bd08cc293b80f57f244c10ddbbe368d msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=38d5a75a6dd18e71d5f6555c7edeac938ed79a312ac10077fd8fc8d82ad81b handshake=Noise_NXpsk1_25519_AESGCM_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662549b88c66c5db16c076955495c7289c3499a801ca5a1840f075d1e msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484661d6f6e3ddf23875e0592cb924daf3d8126d3008e0d245a8ced1dbfb1286387de90ab182bc2fb03dd6955f7ae27b74c7077b45b9ff2a8c8130a47ece321f582f42765af8ce6cecc9dab7f msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=0253fb688077f49bb12859d7f33c3988a23b855e14bb9963008bb5e8ada039 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=d296bf8aac74a67761c7c5666f2922d68ab6e431aa6b4004b9fd8cd626cbee handshake=Noise_NXpsk2_25519_AESGCM_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254dad9df4c8fe65e76706807c4b6f3261a2ab9dd864826a4105018 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466fc485d9c0d76abdbc722684433571ab05ce22a12c92fb1ef81296edd14429f57352b4c17d9ec7183cafe3bed352923f60758d553d3fe9be0c2f52ed6cbe5bc8146067bee786a4921f2b4 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=8b285956fce83786691fb9e5a48f6571ee16435da742caa84e27606c8c0417 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=43a9eb08fe5a95969a4eb076b238e5eba3913319b0b74142bc47a35b1fcace handshake=Noise_NX_25519_AESGCM_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466ac104e4413b3e6091ab98f8902f898f750341010fc28130905edcfa84df5b5fffd5c64064a663cc1f8f0e59775f3d93db4e7d95dd77b5928935227a3bbfef59a msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=50f23b250835f62aeee57429ea276cce9ce465b1fa5bd01cb8041bc9ae7722 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=681c16d92b2ed840ea2096ee1445c6d699f71659c0aa98c115fd2be24a4e6a handshake=Noise_NXpsk0_25519_AESGCM_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662545386451c97b61e92eddb55d435aa604f msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484666c4fbd20d2daae06cfee3a4044de5f045844d2d23c127c77abb5006a1727e9b0fb77c4cfa310f7eb93a6b23b45f1c6dfc7b695808fdeb14bbcdf420040e859a3 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=e8a9c8176161c87470eb1bbe4a5ffe8bd08cc293b80f57f244c10ddbbe368d msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=38d5a75a6dd18e71d5f6555c7edeac938ed79a312ac10077fd8fc8d82ad81b handshake=Noise_NXpsk1_25519_AESGCM_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254e6b06ac4ec214355f45fa8353f935109 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484661d6f6e3ddf23875e0592cb924daf3d8126d3008e0d245a8ced1dbfb1286387de45b77dee817b10ee56198c4aeb08eaf24446e360a7d53fff28c2d680bbfd97ae msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=0253fb688077f49bb12859d7f33c3988a23b855e14bb9963008bb5e8ada039 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=d296bf8aac74a67761c7c5666f2922d68ab6e431aa6b4004b9fd8cd626cbee handshake=Noise_NXpsk2_25519_AESGCM_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254006ef9622a9fef1a70a559a801e0b3c5 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466fc485d9c0d76abdbc722684433571ab05ce22a12c92fb1ef81296edd14429f571c5eeee49093a423c6b4acd63e27a510e1abef38197787ac2ec2d692f837e495 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=8b285956fce83786691fb9e5a48f6571ee16435da742caa84e27606c8c0417 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=43a9eb08fe5a95969a4eb076b238e5eba3913319b0b74142bc47a35b1fcace handshake=Noise_NX_25519_AESGCM_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466ac104e4413b3e6091ab98f8902f898f750341010fc28130905edcfa84df5b5ff10abab009c4e0ae9e6fe931c4b3a2db2ff5df3365fc12cae7322c0d6356a6fd2ae2b72c9b68520749403 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=50f23b250835f62aeee57429ea276cce9ce465b1fa5bd01cb8041bc9ae7722 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=681c16d92b2ed840ea2096ee1445c6d699f71659c0aa98c115fd2be24a4e6a handshake=Noise_NXpsk0_25519_AESGCM_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662544c087d6fe10c8862ed7448bb4f10327d492edf33de25e98a29f0 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484666c4fbd20d2daae06cfee3a4044de5f045844d2d23c127c77abb5006a1727e9b0cb6829c168ec40755cb9791148c71e9b7089b9aede3e5674a182ddb40f356db56ba4f9af3bd611e9c363 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=e8a9c8176161c87470eb1bbe4a5ffe8bd08cc293b80f57f244c10ddbbe368d msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=38d5a75a6dd18e71d5f6555c7edeac938ed79a312ac10077fd8fc8d82ad81b handshake=Noise_NXpsk1_25519_AESGCM_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662549b88c66c5db16c0769556dd7aaeacf1e9daf99473ed45b7449e5 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484661d6f6e3ddf23875e0592cb924daf3d8126d3008e0d245a8ced1dbfb1286387de97e23ace6ec8210a1f5045c76214305477b45b9ff2a8c8130a47b7170d66956ae33fd7bcce1e8df4c94f msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=0253fb688077f49bb12859d7f33c3988a23b855e14bb9963008bb5e8ada039 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=d296bf8aac74a67761c7c5666f2922d68ab6e431aa6b4004b9fd8cd626cbee handshake=Noise_NXpsk2_25519_AESGCM_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254dad9df4c8fe65e767068bdb6e296baddfa4c82b21bbcc228d06f msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466fc485d9c0d76abdbc722684433571ab05ce22a12c92fb1ef81296edd14429f57ee712f3e89a116cf1ad6e3ad414d7a320758d553d3fe9be0c2f5b3bf317650ef3f796be8958b8619f595 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=8b285956fce83786691fb9e5a48f6571ee16435da742caa84e27606c8c0417 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=43a9eb08fe5a95969a4eb076b238e5eba3913319b0b74142bc47a35b1fcace handshake=Noise_KX_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846672f4561972c0066d2edb9ec3f6e06061d9efd85e8e09eea4f7b55e051881ed2d461f07a142019054861b74148fc944f2e8d3d02e24ba2ac639ffb67a06cf941c msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=b455e7160f810c5bc83b94c63932a10a218f6558daa7c9408d619d960d2796 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=f2afc54621ee01e366836724674abfef6e64777e77ec15067c04d59d9209a4 handshake=Noise_KXpsk0_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548430ae3a453831ae8a72cf799518925e msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846616cadc6a5849f99f04d636b30b52105083d64100bee3bb0069b4f03ee5528920b0e6c7d5cd255c95ce396140e6463b697b3fef9bb639280d1e8ef58e2cc57896 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=95f4eba61bd217fca6eeac0a5a0a96f68e11a0d0c49dd2e288a8e4e2b17feb msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=7df0beb173488e9c5778a1af08cbff1aa3337839a0ece825a2a502a0b05bc0 handshake=Noise_KXpsk1_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662545c23b090b7eba082e987ffde36222281 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466ea2829785aa59d7e2f1df56d98f6239f2a267a4c2001acb54d556932c40595e08d08fa0a460ac311e155c1961457907cc0a4d7e1108630ca5899c30604b20475 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=db708006c85bb5c1cdb6fab482f0179cb466ef1ac02d2a5d897ab5e93cda4e msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=8a2c4b83b0a27cce3a7347e01d5d11e47a2979bc41d5b8c4b7419640ef6afd handshake=Noise_KXpsk2_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625450e8db962a84fca6873e83064a5444db msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846661d4c7b7bc2b1ee4596b72cc8f00e533cfe7c236f9b8deb95ad7fd92c14165e5a8d3903706ccda48ece8fff18fd25fcbc7742a1ecbd81dee525c0bc58eb20fe0 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=41c1facc56421dd154d1435a4f33d5b5a243d389e0b460bdf6ea6362a8dcb1 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=3aaefa2606543d87e25894c5eaed9eed40ceca80106c62822593046c03ae39 handshake=Noise_KX_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846672f4561972c0066d2edb9ec3f6e06061d9efd85e8e09eea4f7b55e051881ed2d3c473a344d1071574c284e14408c92b58539d798b2be574927e85b225447321ee1eca1a9e701c541dfc4 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=b455e7160f810c5bc83b94c63932a10a218f6558daa7c9408d619d960d2796 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=f2afc54621ee01e366836724674abfef6e64777e77ec15067c04d59d9209a4 handshake=Noise_KXpsk0_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541a278e53378151225fdc24a27a0350908629f692f9235d8b579a msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846616cadc6a5849f99f04d636b30b52105083d64100bee3bb0069b4f03ee55289202bbe89689c2b31e623a1ff6083a686213eb28814fe4ae279902deca97b1bf6dd106c9b325fda721e8e45 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=95f4eba61bd217fca6eeac0a5a0a96f68e11a0d0c49dd2e288a8e4e2b17feb msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=7df0beb173488e9c5778a1af08cbff1aa3337839a0ece825a2a502a0b05bc0 handshake=Noise_KXpsk1_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541963a6cc03347872d41cd292b29b87d22c488ec89f15cadc0304 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466ea2829785aa59d7e2f1df56d98f6239f2a267a4c2001acb54d556932c40595e0ff2d81ce4e2b85ccd5b50e3d9385951e978f1e633d310614bfa6c9af1eb5389105299f943c88ef268de0 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=db708006c85bb5c1cdb6fab482f0179cb466ef1ac02d2a5d897ab5e93cda4e msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=8a2c4b83b0a27cce3a7347e01d5d11e47a2979bc41d5b8c4b7419640ef6afd handshake=Noise_KXpsk2_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254b687a1a128f62ce6ad4869118737b15a42084f3c92aebc30d267 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846661d4c7b7bc2b1ee4596b72cc8f00e533cfe7c236f9b8deb95ad7fd92c14165e50a8d064f224ac761b6d7c1c6c8eb50293f03deb388775b780f1a4d2ab7129b40773b857884e7fa3781ba msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=41c1facc56421dd154d1435a4f33d5b5a243d389e0b460bdf6ea6362a8dcb1 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=3aaefa2606543d87e25894c5eaed9eed40ceca80106c62822593046c03ae39 handshake=Noise_KX_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846672f4561972c0066d2edb9ec3f6e06061d9efd85e8e09eea4f7b55e051881ed2d1d615544c66e1cb785f80a256fa65b2fa178f825837d657176e150e7ce6f245c msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=b455e7160f810c5bc83b94c63932a10a218f6558daa7c9408d619d960d2796 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=f2afc54621ee01e366836724674abfef6e64777e77ec15067c04d59d9209a4 handshake=Noise_KXpsk0_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254f158d8a926103237627624b7994e5cea msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846616cadc6a5849f99f04d636b30b52105083d64100bee3bb0069b4f03ee55289209cd64d6c3bbcf800f969aa8df01d86fe7072004c1b4554700eb5909209e0dab7 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=95f4eba61bd217fca6eeac0a5a0a96f68e11a0d0c49dd2e288a8e4e2b17feb msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=7df0beb173488e9c5778a1af08cbff1aa3337839a0ece825a2a502a0b05bc0 handshake=Noise_KXpsk1_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662543d791c8f0b6f7c80957817be26d2892d msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466ea2829785aa59d7e2f1df56d98f6239f2a267a4c2001acb54d556932c40595e00680a79b2539691fef9292119bcf76716a9952ab10be0f6024bf192f1769921a msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=db708006c85bb5c1cdb6fab482f0179cb466ef1ac02d2a5d897ab5e93cda4e msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=8a2c4b83b0a27cce3a7347e01d5d11e47a2979bc41d5b8c4b7419640ef6afd handshake=Noise_KXpsk2_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254b9a3396c47f801921ad02dbae48fc985 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846661d4c7b7bc2b1ee4596b72cc8f00e533cfe7c236f9b8deb95ad7fd92c14165e594f70660f3cee9026c4f1dbad7e0f4ad0cbf817f2b3cb5e211e95723c228e6a8 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=41c1facc56421dd154d1435a4f33d5b5a243d389e0b460bdf6ea6362a8dcb1 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=3aaefa2606543d87e25894c5eaed9eed40ceca80106c62822593046c03ae39 handshake=Noise_KX_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846672f4561972c0066d2edb9ec3f6e06061d9efd85e8e09eea4f7b55e051881ed2dc41c3031529d4ad19d8b7d219ee949ba8539d798b2be574927e893bc2be2e90d5f23a332ce63e9b6af53 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=b455e7160f810c5bc83b94c63932a10a218f6558daa7c9408d619d960d2796 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=f2afc54621ee01e366836724674abfef6e64777e77ec15067c04d59d9209a4 handshake=Noise_KXpsk0_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541a278e53378151225fdcdac5afdbdd2dc7dedc8295b2873efbe7 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846616cadc6a5849f99f04d636b30b52105083d64100bee3bb0069b4f03ee55289203975f934fe65246ce4d017fc344204863eb28814fe4ae279902d812f17f5fdeec17d2be7cfe9c15fe371 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=95f4eba61bd217fca6eeac0a5a0a96f68e11a0d0c49dd2e288a8e4e2b17feb msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=7df0beb173488e9c5778a1af08cbff1aa3337839a0ece825a2a502a0b05bc0 handshake=Noise_KXpsk1_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541963a6cc03347872d41c5e0ed0f6f3e8e1bb772a98ffc1f921a3 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466ea2829785aa59d7e2f1df56d98f6239f2a267a4c2001acb54d556932c40595e0add7a52cc2a82263c610384ed971faaf978f1e633d310614bfa6c7981a371f1daaf7743d4b65531bfac4 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=db708006c85bb5c1cdb6fab482f0179cb466ef1ac02d2a5d897ab5e93cda4e msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=8a2c4b83b0a27cce3a7347e01d5d11e47a2979bc41d5b8c4b7419640ef6afd handshake=Noise_KXpsk2_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254b687a1a128f62ce6ad483da6460c40931a96fa6bd046991ec6fa msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846661d4c7b7bc2b1ee4596b72cc8f00e533cfe7c236f9b8deb95ad7fd92c14165e5c17fef40ec942d9af58b9f2084f7d7343f03deb388775b780f1a06a1f31cd098cde068559214e75a9613 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=41c1facc56421dd154d1435a4f33d5b5a243d389e0b460bdf6ea6362a8dcb1 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=3aaefa2606543d87e25894c5eaed9eed40ceca80106c62822593046c03ae39 handshake=Noise_XN_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484667ebc7d2d516cca269396ef67d295ec39 msg_2_payload= msg_2_ciphertext=1ab983aef2af5558802d787fec340c612a9332b5ad54d9d76bea87516becc239cae582f922483a710bdadf4d3d4104b83912d0022b4c80366819f93508567e42 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=d195f8befc66baa201a18c4064909ebe8502e0f9b5e961314b61fd125d247d msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=86591937ccc7873fb61286c7d019e73daf8b40ec33dcc9d1fffe1c9a16dd4c handshake=Noise_XNpsk0_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254d6ce88b9c3416bd1b1fd48bd564b7d8b msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484662736201c798b5d138492b71ca9303c38 msg_2_payload= msg_2_ciphertext=b1fa0b5e1310eb981ee2e54af06f5f88b5a9d0140be4b3bc6b2946a937e40d7ffcc250ffbcda3b2f9620ebf6eac14a59a1210630e2445733f2e46646501b9357 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=553b9158015420d2b4692c4b30b0fb26ade7adfa1fcbcc182e90b7244054b3 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=2383835c704affed54b3525f4d7f63064538ce838cd706c9197aff8881fb31 handshake=Noise_XNpsk1_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254967f2f01403b1579c67ebc37850a3984 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484667d7227bc0115068aaaad4d8b7fc66cdb msg_2_payload= msg_2_ciphertext=8d7c08550caffdd7302901d1ef368326f22321a4511debccbbd532ccb7d96f286ec78fbd90058b6b4e4a015560082c19ca281643f095da37cf820411c2d087d0 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=eb2dbb2a68310558e3a1ca71a2257cd6f28ddfd99fa854dc8011d812e90101 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=80c84ea17aa9f0d18602ab87eb20259a858074a95e5f076907e632667db5fb handshake=Noise_XNpsk2_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662546ca3cd19431029b33d5dca3bc873f8bb msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466e0071d3b01d6039361134ab45ac8b078 msg_2_payload= msg_2_ciphertext=57d0d36040aea7cc919054c726a651796718f907af000923de50022aac735ff60d17220a0c76cc92c0f6fbd59b2137d761b604bd4022323157834edcf5e479a9 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=078228238d9d65d53d9910156e32b61af70cac329a27000c3968d942f325af msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=eaa3e5c640ca8998164b6fa6e2c3546393076d09e3f87493d20b91f3fbadd2 handshake=Noise_XNpsk3_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662547cbc94fd1c4c0d0998ff4e6d7a365759 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466a9868d34a16223d571df967ef2c2a815 msg_2_payload= msg_2_ciphertext=83cbff8b883cab6302654c8d6d6e50a3e7323d9024018c648cf98824f0e880ab5995de92829e6723630bac7f2f6ab19656155b0561d7998e25c283903c34fece msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=62620d455bce603e36d0e324deb5ae87a2a3ac98b56a0de4b3cd02e98e285e msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=37668ce320aa3b29cd5dd49bfc5fd63474ff03fade3bf0dde6164fa0030b64 handshake=Noise_XN_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484669bc42f905f6cea8c6d21736310fecc3db8d9b6e67b39bdfeaf21 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=1ab983aef2af5558802d787fec340c612a9332b5ad54d9d76bea87516becc239d9d0e972486a926167ac22ff38795bb8d5ff457d78cb9ee139f97cf0aa00153beac61936bd612bd689fe msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=d195f8befc66baa201a18c4064909ebe8502e0f9b5e961314b61fd125d247d msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=86591937ccc7873fb61286c7d019e73daf8b40ec33dcc9d1fffe1c9a16dd4c handshake=Noise_XNpsk0_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254383b83be44ec842dd3006898b7004b470de5cd728369d9d0bbb7 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484665933b46f951a73becfa372a5ae6db01ed6238a0edb6dbf4c6cd4 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=b1fa0b5e1310eb981ee2e54af06f5f88b5a9d0140be4b3bc6b2946a937e40d7faf234bc6d125f13bbc03b3123995036cb9e89a78f9efa643f1cdd386afe537a04caf8573a64da952a302 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=553b9158015420d2b4692c4b30b0fb26ade7adfa1fcbcc182e90b7244054b3 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=2383835c704affed54b3525f4d7f63064538ce838cd706c9197aff8881fb31 handshake=Noise_XNpsk1_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625447a625a9ed5dd10375d8ee2e1a8b6de55f4bb41c7afd0ba7530f msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484661977595c1b822311d2db73d33c2217e9e61c48015261e4bf2ccb msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=8d7c08550caffdd7302901d1ef368326f22321a4511debccbbd532ccb7d96f28a88b4c55350214e5105354ff79021a3346fe0bfca84667d86819739dbee501a7a7ad383e6ac4fc93d3a4 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=eb2dbb2a68310558e3a1ca71a2257cd6f28ddfd99fa854dc8011d812e90101 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=80c84ea17aa9f0d18602ab87eb20259a858074a95e5f076907e632667db5fb handshake=Noise_XNpsk2_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662540dc8226f2f99fa7085ced52daea87b8eba61c0a8bceba13e8296 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c9fd0e03c736f0dbe83784fd835dbcccc6aa205422101c0b7562 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=57d0d36040aea7cc919054c726a651796718f907af000923de50022aac735ff6dc185e9cc4a822dc22082b1e9c705d953214f3e01388aa3cd4912e5cde0319b158974a4c910c12436a81 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=078228238d9d65d53d9910156e32b61af70cac329a27000c3968d942f325af msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=eaa3e5c640ca8998164b6fa6e2c3546393076d09e3f87493d20b91f3fbadd2 handshake=Noise_XNpsk3_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662546c1aa61ab88ff9a43d1c80d505b1c6efb80ce50a5643b362d0df msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484661588ca3f0797a06d1b63b044f56d827811dcbc1f646a8def6f2d msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=83cbff8b883cab6302654c8d6d6e50a3e7323d9024018c648cf98824f0e880abe8fa324069e8d159ca0a8dc4b0cafdecd4d7fe0f1353b05c118a548b145e78bb26f3b9d520fe9b4d1514 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=62620d455bce603e36d0e324deb5ae87a2a3ac98b56a0de4b3cd02e98e285e msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=37668ce320aa3b29cd5dd49bfc5fd63474ff03fade3bf0dde6164fa0030b64 handshake=Noise_XN_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c9e8710f7b46475111899a331cb6d0a7 msg_2_payload= msg_2_ciphertext=1ab983aef2af5558802d787fec340c612a9332b5ad54d9d76bea87516becc239067cd1d54113d19c1f71c83a1edf288d743f8a931b93cb162a125f6042ef548f msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=d195f8befc66baa201a18c4064909ebe8502e0f9b5e961314b61fd125d247d msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=86591937ccc7873fb61286c7d019e73daf8b40ec33dcc9d1fffe1c9a16dd4c handshake=Noise_XNpsk0_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662547a92e7a29e352f7a1fdbf917a7d408fb msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c95d0a8a41a3cfbe098066ef8799cedc msg_2_payload= msg_2_ciphertext=b1fa0b5e1310eb981ee2e54af06f5f88b5a9d0140be4b3bc6b2946a937e40d7f7c035f20b8c89981b5d78bd802ffcbf57049af8a3bf01842bf9401424fbc2522 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=553b9158015420d2b4692c4b30b0fb26ade7adfa1fcbcc182e90b7244054b3 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=2383835c704affed54b3525f4d7f63064538ce838cd706c9197aff8881fb31 handshake=Noise_XNpsk1_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662549e5174a2db0e02e89ce6700b7f724e98 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466e3f9c5d3216d0bbc1c9732c02fb6d958 msg_2_payload= msg_2_ciphertext=8d7c08550caffdd7302901d1ef368326f22321a4511debccbbd532ccb7d96f2866581032bd9ef4ec605c89f9a9c11d3c934b44c76b19fb9e874055521d8c2126 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=eb2dbb2a68310558e3a1ca71a2257cd6f28ddfd99fa854dc8011d812e90101 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=80c84ea17aa9f0d18602ab87eb20259a858074a95e5f076907e632667db5fb handshake=Noise_XNpsk2_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625463a521446358f262e7d5a60de7721239 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466b360a6b915076e4a46f0df191ef44a2a msg_2_payload= msg_2_ciphertext=57d0d36040aea7cc919054c726a651796718f907af000923de50022aac735ff63edb6b8db36b3614c4a99a8f0439dd35a25669a26992d38212997d2e2b956544 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=078228238d9d65d53d9910156e32b61af70cac329a27000c3968d942f325af msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=eaa3e5c640ca8998164b6fa6e2c3546393076d09e3f87493d20b91f3fbadd2 handshake=Noise_XNpsk3_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254a4e95d8a6ec9259c7fd75328ebf841c3 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846667d638565845ccfec1044160484c0212 msg_2_payload= msg_2_ciphertext=83cbff8b883cab6302654c8d6d6e50a3e7323d9024018c648cf98824f0e880abb946e9e4e1a540c904ceae9d7fc3a3e23df2179a425d076051527f20bd5c157d msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=62620d455bce603e36d0e324deb5ae87a2a3ac98b56a0de4b3cd02e98e285e msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=37668ce320aa3b29cd5dd49bfc5fd63474ff03fade3bf0dde6164fa0030b64 handshake=Noise_XN_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484669bc42f905f6cea8c6d2152688b2db7a4a5e6bad2eb5e6bb6d67f msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=1ab983aef2af5558802d787fec340c612a9332b5ad54d9d76bea87516becc2394be6087d956d1e4a61de19f946b938e2d5ff457d78cb9ee139f9ce920104afac59a4bcdd664d58ab4463 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=d195f8befc66baa201a18c4064909ebe8502e0f9b5e961314b61fd125d247d msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=86591937ccc7873fb61286c7d019e73daf8b40ec33dcc9d1fffe1c9a16dd4c handshake=Noise_XNpsk0_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254383b83be44ec842dd30040829f1859c3e6575f749244de0bf9df msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484665933b46f951a73becfa39241e5fb3addacb4201d1c842fdc6574 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=b1fa0b5e1310eb981ee2e54af06f5f88b5a9d0140be4b3bc6b2946a937e40d7fdafd771902eb11c326abd30b61887b86b9e89a78f9efa643f1cd8bf6e2fca221a8f95cd1b592d021fdb4 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=553b9158015420d2b4692c4b30b0fb26ade7adfa1fcbcc182e90b7244054b3 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=2383835c704affed54b3525f4d7f63064538ce838cd706c9197aff8881fb31 handshake=Noise_XNpsk1_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625447a625a9ed5dd10375d810bbf4dbff81da99b343d240f9c1992d msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484661977595c1b822311d2db413251d1961135b14cb2786f7a030b70 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=8d7c08550caffdd7302901d1ef368326f22321a4511debccbbd532ccb7d96f28cd00b064a19fdb50dd2e68909f34604546fe0bfca84667d8681934aa1779b419c87ead0d4ef509d932ac msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=eb2dbb2a68310558e3a1ca71a2257cd6f28ddfd99fa854dc8011d812e90101 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=80c84ea17aa9f0d18602ab87eb20259a858074a95e5f076907e632667db5fb handshake=Noise_XNpsk2_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662540dc8226f2f99fa7085cec3a3e87c17df7992d06de1d5c72dea3f msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c9fd0e03c736f0dbe8371d3f702aab8074e52ade0b150397a2cd msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=57d0d36040aea7cc919054c726a651796718f907af000923de50022aac735ff670a9f1e667c41afe15ce41ee90c3a6d83214f3e01388aa3cd4913253f8982aa4c23b7af239ac6e88ce91 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=078228238d9d65d53d9910156e32b61af70cac329a27000c3968d942f325af msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=eaa3e5c640ca8998164b6fa6e2c3546393076d09e3f87493d20b91f3fbadd2 handshake=Noise_XNpsk3_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662546c1aa61ab88ff9a43d1ca8c9a354f488d3f1cd4c6f8efd232fd5 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484661588ca3f0797a06d1b636d50b498f7a84254af07424ed1b25094 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=83cbff8b883cab6302654c8d6d6e50a3e7323d9024018c648cf98824f0e880abf4c9c1c27f2965b5afe799f44cb4f89cd4d7fe0f1353b05c118a7017a7949d7f7851ece83e0bf5e9fb6f msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=62620d455bce603e36d0e324deb5ae87a2a3ac98b56a0de4b3cd02e98e285e msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=37668ce320aa3b29cd5dd49bfc5fd63474ff03fade3bf0dde6164fa0030b64 handshake=Noise_IN_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548f40c5adb68f25624ae5b214ea767a6ec94d829d3d7b5e1ad1ba6f3e2138285f msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c9ab17086eb52ba02f54fe48b11cf7ae msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=d4e08cc4a109b93413b9f2b93a90c3b52d328130346ae8a7a65693bbdfffb3 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=2bf0d845c35d0b63452e9477083d9c35feb7263cebf00828ce84fba88f94c0 handshake=Noise_INpsk0_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625405262b1f9b84cdb310908a65b2d6408f13ec9efef6a1b52c2bf0daaffe1e42204de45bf028283b88c60ab5cc2745b8e8c6cf4e30f5e4d01f7a36153c4d2028b1 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466fcf90b48cc4034aefda82a6593ca634e msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=7d8f33663563115c594ca28b2fe01e8dae1cf498b312ceb4c18fc55a005cc6 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=36f1d5c7339b870e822497f1a014c1032e3268d62ea5bc7f80264b2de3535d handshake=Noise_INpsk1_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c205846663809a031f5a191bd9323566dc3c824c7273fa31a5fc1d54a8e951aa4f4a2c01331090fe2dc47358b134f4983e57f6e050a654d43575149488e4d962 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484660f9cecdffa97451986964e6b181e2961 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=79d1215e41ae753d5c8dafc474355e4b7af8ec2d84f13444f3d1c7bea75e53 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=216ecf739142ee4ce72573b4e79f765df31be2022377fee7e9847f558a6187 handshake=Noise_INpsk2_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541906307774eb6ae1a18c731b2af6d9bcf09b69e5b9b66678a3b968edb6550e7dc123f2506c770de516702097583503973ef95ff80d31b363f0e2637b8df344c7 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466ac222e4b2d2f6d105228f1f6eaab97ff msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=f18b76b773ad92a0551eaaccac2822ef7c89e2e4141b493494a5671432e538 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=b500b236900edd4ce3a74e0f021fc0b93bb677a8a0417996474ad1b3ad40f8 handshake=Noise_IN_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548f40c5adb68f25624ae5b214ea767a6ec94d829d3d7b5e1ad1ba6f3e2138285f746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466578e11ef9be6d820631037dc05abdcb236c57a2567ba93669ab0 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=d4e08cc4a109b93413b9f2b93a90c3b52d328130346ae8a7a65693bbdfffb3 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=2bf0d845c35d0b63452e9477083d9c35feb7263cebf00828ce84fba88f94c0 handshake=Noise_INpsk0_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625405262b1f9b84cdb310908a65b2d6408f13ec9efef6a1b52c2bf0daaffe1e42204de45bf028283b88c60ab5cc2745b8e87016ea492791838b92f00800e636883dc626eb2f3895011a139e msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466217778ef3116b94146df592ed848106664bcbfff47169058bda2 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=7d8f33663563115c594ca28b2fe01e8dae1cf498b312ceb4c18fc55a005cc6 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=36f1d5c7339b870e822497f1a014c1032e3268d62ea5bc7f80264b2de3535d handshake=Noise_INpsk1_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c205846663809a031f5a191bd9323566dc3c824c7273fa31a5fc1d54a8e951aa4f4a2c01331090fe2dc47358b134f4985722e0d190fada548c133472917187cdb527644e700547c52b28 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466471b4496207cea9199841fc64e1bb1b5b788be9d1689e4540867 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=79d1215e41ae753d5c8dafc474355e4b7af8ec2d84f13444f3d1c7bea75e53 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=216ecf739142ee4ce72573b4e79f765df31be2022377fee7e9847f558a6187 handshake=Noise_INpsk2_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541906307774eb6ae1a18c731b2af6d9bcf09b69e5b9b66678a3b968edb6550e7dc123f2506c770de516702097583503971cf56370e4abe94a9f67eda71c22f885de116aa378e1cd96eced msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846643ad2c9a96755f8efbbcf40b385fe808da55ab103c66dd8c1542 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=f18b76b773ad92a0551eaaccac2822ef7c89e2e4141b493494a5671432e538 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=b500b236900edd4ce3a74e0f021fc0b93bb677a8a0417996474ad1b3ad40f8 handshake=Noise_IN_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548f40c5adb68f25624ae5b214ea767a6ec94d829d3d7b5e1ad1ba6f3e2138285f msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846648988f7cb5d85b5c5c03e276b86fe50f msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=d4e08cc4a109b93413b9f2b93a90c3b52d328130346ae8a7a65693bbdfffb3 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=2bf0d845c35d0b63452e9477083d9c35feb7263cebf00828ce84fba88f94c0 handshake=Noise_INpsk0_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625405262b1f9b84cdb310908a65b2d6408f13ec9efef6a1b52c2bf0daaffe1e422032e60c283f594634358c6ade5821244600d8d2e6dea60137b4f10b074ba7193d msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466b1e5ecbcc832e6ac1a8414797bb920cb msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=7d8f33663563115c594ca28b2fe01e8dae1cf498b312ceb4c18fc55a005cc6 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=36f1d5c7339b870e822497f1a014c1032e3268d62ea5bc7f80264b2de3535d handshake=Noise_INpsk1_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c205846663809a031f5a191bd9323566dc3c824c7273fa31a5fc1d54a8e951aa6ec025aad0d8f9cb26a27d5d1176d9a994077aab03b577f2e8039e4366bc6245 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466d663e6ac3d33e23ad323622c476fe906 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=79d1215e41ae753d5c8dafc474355e4b7af8ec2d84f13444f3d1c7bea75e53 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=216ecf739142ee4ce72573b4e79f765df31be2022377fee7e9847f558a6187 handshake=Noise_INpsk2_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541906307774eb6ae1a18c731b2af6d9bcf09b69e5b9b66678a3b968edb6550e7dfee517c34ceeba54fee005b95e94e05103161169f40b807a26d7d3bf013b7f85 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484664813a5e72f6b66ec89e411840f84ba80 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=f18b76b773ad92a0551eaaccac2822ef7c89e2e4141b493494a5671432e538 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=b500b236900edd4ce3a74e0f021fc0b93bb677a8a0417996474ad1b3ad40f8 handshake=Noise_IN_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548f40c5adb68f25624ae5b214ea767a6ec94d829d3d7b5e1ad1ba6f3e2138285f746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466578e11ef9be6d82063107b23e9a7cdafd87a02d15059693b866a msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=d4e08cc4a109b93413b9f2b93a90c3b52d328130346ae8a7a65693bbdfffb3 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=2bf0d845c35d0b63452e9477083d9c35feb7263cebf00828ce84fba88f94c0 handshake=Noise_INpsk0_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625405262b1f9b84cdb310908a65b2d6408f13ec9efef6a1b52c2bf0daaffe1e422032e60c283f594634358c6ade582124467016ea492791838b92f08ea1ce07ac1c29aaca2ba2e6be8aae6f msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466217778ef3116b94146df5f06a4a59dfcbb765ff9ffaf65d3063d msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=7d8f33663563115c594ca28b2fe01e8dae1cf498b312ceb4c18fc55a005cc6 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=36f1d5c7339b870e822497f1a014c1032e3268d62ea5bc7f80264b2de3535d handshake=Noise_INpsk1_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c205846663809a031f5a191bd9323566dc3c824c7273fa31a5fc1d54a8e951aa6ec025aad0d8f9cb26a27d5d1176d9a95722e0d190fada548c13cebafccf5db40ddec9c8ee4edbf85e68 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466471b4496207cea9199840fb7d1bf618aa15eb0b74b90a0a8f9b4 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=79d1215e41ae753d5c8dafc474355e4b7af8ec2d84f13444f3d1c7bea75e53 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=216ecf739142ee4ce72573b4e79f765df31be2022377fee7e9847f558a6187 handshake=Noise_INpsk2_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541906307774eb6ae1a18c731b2af6d9bcf09b69e5b9b66678a3b968edb6550e7dfee517c34ceeba54fee005b95e94e0511cf56370e4abe94a9f67f486bb56720c1832a61683a3ebde2eec msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846643ad2c9a96755f8efbbcab063bc3e701c9facb3668c1589ea2d6 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=f18b76b773ad92a0551eaaccac2822ef7c89e2e4141b493494a5671432e538 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=b500b236900edd4ce3a74e0f021fc0b93bb677a8a0417996474ad1b3ad40f8 handshake=Noise_XK_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662543fba394be81d461ec599092e9a40c636 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466a35be554752bb77f40ac980146ef9278 msg_2_payload= msg_2_ciphertext=5e88a8a22bc7df4d8b6c85eaa581a819ec04c6588a193d2af0de37da0e24a50f5b0d67595a3683f9866af793c510e046dc9c0208b821af4c16a9f2678739fc1e msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=e1b55532068a924fa7cd262612a53c9eb0b4925df7819a9afe61509d63a879 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=94b7b8c259658fd03b54749fdd35464a286a6ba9cc9ff76833f20736f632db handshake=Noise_XKpsk0_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254628f0972a8c6dffd9b1f6b0a9c692591 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846662111ca7ab008976bb43e298b4703b93 msg_2_payload= msg_2_ciphertext=b0582dab6c55505ee245bc3b96ea140a212c8fbc6d0c6a6dea3b66264af8080a9d84d415bacadb301ac578f87f03cc2a39d9f3a2d69b434c539916222b7571ba msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=b21379d73f20b8effdf93a82f86a09520c92cd743a4323b1f048fad80e3ccf msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=85a2892049d45dac297850412a71011489b13831bbc1eb3551361d1a81866b handshake=Noise_XKpsk1_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254084e3679207acaf00c8676cf14887de0 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484663c5452c9722f395c25e4f50ed320d648 msg_2_payload= msg_2_ciphertext=5270bd250e9904a246463d7d975d9724fa0c1fca24e20f8cc19143e7f37ae1b6fdf66ce9da187377f6eac6601c773cc7a6e523730abc032a0739dffa836a2833 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=3e92cd13d2b9922ccfff54653579cb0e8153c3adbe0ef016ff62c30e5aec77 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=9c7f77109e64326d3c01369a3542137cfec0e8bb550fe4f16211a7d0d5aa47 handshake=Noise_XKpsk2_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625460572f2e213e1bab8056917df9f342a9 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466e2cfb743b4c24761d3e753548ffcf885 msg_2_payload= msg_2_ciphertext=742c8b64404bd353aed4f94bd8608eaf78dc3be24690bf93956dac0021c8d510c830e3307d1325cfc6fe40abea2205adbc648ae8591fa6beb570b50ebf18dc30 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=55d51d54c345abe9038b8b5b1032052740bee5daacb8812810eed8e1086c4c msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=52f5cf6aa3f6c12c3d8333f70bfde158d17af6c68ab496010b6ac61d404a5c handshake=Noise_XKpsk3_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254f3c24b47ca37d062ffa5a82d96a68807 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466f7fa4fbea714e7bb8cde3e281568e80c msg_2_payload= msg_2_ciphertext=657cf68657783f22da2bc73c370cf967b4e5113479533ff00447e6e1e0d61c8ea86453b71ca934e88c911840807682451a674a5237f6a5c037d4500bdbbdf51b msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=a5bb42f69e02b04f540695c05ec8af9ba7f8075e540d9a4721a72b900dda50 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=57fe584b6806f892abc12e9876cb93f2dee7e798a2da2b40d18cedc51abde6 handshake=Noise_XK_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548a7b8f977e8c05a05432685828169a203a60e39b9f2ae22a38bc msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466816d6c440357f5acf5b0689176d7379fc88d59144d34dcc9cc43 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=5e88a8a22bc7df4d8b6c85eaa581a819ec04c6588a193d2af0de37da0e24a50fc2e1d713b3c03faace1207f0a7cbd91d23e7d0c62d67c1eea84bb3c94fe9c525d4f7b8eb287df3fa5000 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=e1b55532068a924fa7cd262612a53c9eb0b4925df7819a9afe61509d63a879 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=94b7b8c259658fd03b54749fdd35464a286a6ba9cc9ff76833f20736f632db handshake=Noise_XKpsk0_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625484c6d0554a6f76969dc0d53cda23f1a6a755b9966554422ea3d1 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466ad94991fe04bd330625d6e16d5591e3c47d0b024feb6e4faffe5 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=b0582dab6c55505ee245bc3b96ea140a212c8fbc6d0c6a6dea3b66264af8080ae490f4575fb9dfc85eb6a5a6bd873cb77d8ce8c82106d98c8f5218537ffbe88be703fccb23407f75eb97 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=b21379d73f20b8effdf93a82f86a09520c92cd743a4323b1f048fad80e3ccf msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=85a2892049d45dac297850412a71011489b13831bbc1eb3551361d1a81866b handshake=Noise_XKpsk1_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c82ce3a8b803326d6ad5368ea48b1b880b3f85fb62587176c112 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466085d6eef93d49287bd6a6ae8bb1773d38bcd556e1cca019bfb56 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=5270bd250e9904a246463d7d975d9724fa0c1fca24e20f8cc19143e7f37ae1b63f620a0e7bbaab400c6aff6549b4fe530636c9f422fd45b76bcfd99fa4fe05ad57bc2af01e4b1378342b msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=3e92cd13d2b9922ccfff54653579cb0e8153c3adbe0ef016ff62c30e5aec77 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=9c7f77109e64326d3c01369a3542137cfec0e8bb550fe4f16211a7d0d5aa47 handshake=Noise_XKpsk2_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254f03a092dcf31be305b9897ffb1f6edf78c2308b7592e5ede5f8c msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466d0c7547b9c1200bbf993ceaf07ee3e0ba1d21990c63c685bc2a6 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=742c8b64404bd353aed4f94bd8608eaf78dc3be24690bf93956dac0021c8d510c2f90f4e9157a1fb23a07e4ab218fbd2c0a6193184866cc4aa968cc9423ef3ed3cc4d3ee747f6db3d699 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=55d51d54c345abe9038b8b5b1032052740bee5daacb8812810eed8e1086c4c msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=52f5cf6aa3f6c12c3d8333f70bfde158d17af6c68ab496010b6ac61d404a5c handshake=Noise_XKpsk3_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662549275659638adc4f810a217d9688cebda3ee76c41146fa6168000 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466fad2e1206a13940ab0a339bb718fb50563add7e0f42ad5af3df2 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=657cf68657783f22da2bc73c370cf967b4e5113479533ff00447e6e1e0d61c8eac532982ce7784fe5b9fae18ee9f925bfc243ca41c6ddf6483a9126ea991130f96ead988170ae534d021 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=a5bb42f69e02b04f540695c05ec8af9ba7f8075e540d9a4721a72b900dda50 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=57fe584b6806f892abc12e9876cb93f2dee7e798a2da2b40d18cedc51abde6 handshake=Noise_XK_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625494382079878f98f580c3b1cbb5aa1b3e msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484669d6a740fa022b801a82f6d8f736a9221 msg_2_payload= msg_2_ciphertext=5e88a8a22bc7df4d8b6c85eaa581a819ec04c6588a193d2af0de37da0e24a50f3e9d35ee86621e9543a33614ab4c3cc9290c2266378883ed491d6b583fe98670 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=e1b55532068a924fa7cd262612a53c9eb0b4925df7819a9afe61509d63a879 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=94b7b8c259658fd03b54749fdd35464a286a6ba9cc9ff76833f20736f632db handshake=Noise_XKpsk0_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254eac55cae26f24fb5d8f6d6ecd3030fe6 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466071d80399439d99784391a3f08e6077c msg_2_payload= msg_2_ciphertext=b0582dab6c55505ee245bc3b96ea140a212c8fbc6d0c6a6dea3b66264af8080a7d55b3c0d87324d18eb0ee39b4ea01f13b6ad45ac612e2620433447bd81a2eaf msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=b21379d73f20b8effdf93a82f86a09520c92cd743a4323b1f048fad80e3ccf msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=85a2892049d45dac297850412a71011489b13831bbc1eb3551361d1a81866b handshake=Noise_XKpsk1_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662544d0ac9cf6374b5c793b64b5a9ffc7804 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466085a04d90bcc1a7539025325baf625d7 msg_2_payload= msg_2_ciphertext=5270bd250e9904a246463d7d975d9724fa0c1fca24e20f8cc19143e7f37ae1b64eb9bef8ea1419bcd7af3d017cc79d9f05407aeb86089e683f4a54a6eedee93f msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=3e92cd13d2b9922ccfff54653579cb0e8153c3adbe0ef016ff62c30e5aec77 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=9c7f77109e64326d3c01369a3542137cfec0e8bb550fe4f16211a7d0d5aa47 handshake=Noise_XKpsk2_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254f5919b8e1ea6d8c820f3b1c6caf4b63f msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466f99ad158af497a66373342a7d9d6a334 msg_2_payload= msg_2_ciphertext=742c8b64404bd353aed4f94bd8608eaf78dc3be24690bf93956dac0021c8d510e1cba1d6ecb7d9b857bd55d75bf1dc283feda9825d97b4676885a73def70af6c msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=55d51d54c345abe9038b8b5b1032052740bee5daacb8812810eed8e1086c4c msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=52f5cf6aa3f6c12c3d8333f70bfde158d17af6c68ab496010b6ac61d404a5c handshake=Noise_XKpsk3_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662542519fd1f858e3a27f27f361b9dd33448 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466f1fee192dcc5bf08085d8b1630667a75 msg_2_payload= msg_2_ciphertext=657cf68657783f22da2bc73c370cf967b4e5113479533ff00447e6e1e0d61c8e90638cf47a9917c2d26d5e142f43e865b9923804b74a9431395b925c3692cb24 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=a5bb42f69e02b04f540695c05ec8af9ba7f8075e540d9a4721a72b900dda50 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=57fe584b6806f892abc12e9876cb93f2dee7e798a2da2b40d18cedc51abde6 handshake=Noise_XK_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548a7b8f977e8c05a05432384387977b5f322fefd1d838f7dbfb34 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466816d6c440357f5acf5b028b67758e280315cf45f994e4fe6554c msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=5e88a8a22bc7df4d8b6c85eaa581a819ec04c6588a193d2af0de37da0e24a50f8511d619d0aa5bddb2055dcab48f6b9023e7d0c62d67c1eea84b026b254bb79a8146b32f2f46c52b1e77 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=e1b55532068a924fa7cd262612a53c9eb0b4925df7819a9afe61509d63a879 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=94b7b8c259658fd03b54749fdd35464a286a6ba9cc9ff76833f20736f632db handshake=Noise_XKpsk0_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625484c6d0554a6f76969dc069ea2dc2c034193fde8cac677ff7ae34 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466ad94991fe04bd330625dff6616b01f49f3ed5e0a2473ead205e3 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=b0582dab6c55505ee245bc3b96ea140a212c8fbc6d0c6a6dea3b66264af8080ac968116f28605c3eacb50d76624af7d07d8ce8c82106d98c8f52ba9db10cdb3d6865cd0b1c0e8eddec9d msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=b21379d73f20b8effdf93a82f86a09520c92cd743a4323b1f048fad80e3ccf msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=85a2892049d45dac297850412a71011489b13831bbc1eb3551361d1a81866b handshake=Noise_XKpsk1_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c82ce3a8b803326d6ad594b0b2bf72cd7c4995188e472049026b msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466085d6eef93d49287bd6a7c369b1904dcfdc7c6e7d9357d9cfb86 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=5270bd250e9904a246463d7d975d9724fa0c1fca24e20f8cc19143e7f37ae1b6362e57e3ca4cdc1a1dffa9673c33c5540636c9f422fd45b76bcf9d68cf255ebeb4a0dfdea896da2507aa msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=3e92cd13d2b9922ccfff54653579cb0e8153c3adbe0ef016ff62c30e5aec77 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=9c7f77109e64326d3c01369a3542137cfec0e8bb550fe4f16211a7d0d5aa47 handshake=Noise_XKpsk2_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254f03a092dcf31be305b98d6673fc3049849936cf71b2ba8ecd768 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466d0c7547b9c1200bbf9930021049e741e2109d9d17b27430a657f msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=742c8b64404bd353aed4f94bd8608eaf78dc3be24690bf93956dac0021c8d51068f966046fa835ceffab9f61156a0cb3c0a6193184866cc4aa96ee286092d40b1c200cb6a721ab5d5239 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=55d51d54c345abe9038b8b5b1032052740bee5daacb8812810eed8e1086c4c msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=52f5cf6aa3f6c12c3d8333f70bfde158d17af6c68ab496010b6ac61d404a5c handshake=Noise_XKpsk3_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662549275659638adc4f810a22ecfa8d82eb64d6ba6dafa2ec5b48a85 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466fad2e1206a13940ab0a3de71ac02f268e91fecdff42dc0f28930 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=657cf68657783f22da2bc73c370cf967b4e5113479533ff00447e6e1e0d61c8e5b2baf8950ce6c43c591dc1fc413e067fc243ca41c6ddf6483a965a1e55a1e106bac94c5f89d82405bed msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=a5bb42f69e02b04f540695c05ec8af9ba7f8075e540d9a4721a72b900dda50 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=57fe584b6806f892abc12e9876cb93f2dee7e798a2da2b40d18cedc51abde6 handshake=Noise_IK_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254e4c987aee1def7f4451e94e52f2edcf3f88abd36f9a83613afec5cfba3d156ca3241a67c80714c7daf3a9695237fa6a4516a56c98ff0cb2136a1ecfa5987db0c msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484666e25d3e0f17564403749cb3472eec222 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=410d4ee9df61c268dddeee01e9035a81d099b7560f1d565624cddb19ccdea7 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=29c70c4ff6224a7472bb3ef9a786470ec1982e798ba7f5b5c201e705652893 handshake=Noise_IKpsk0_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662546b6d56750cabed6b4793bbd0a78c250ac5e2c53aa8df8fe0dbf15189011623c31add3ba342c9a3fb5240aa60aed3fd2994802c34a962c15dcd90edcb5102cf74 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484669342a3df6cec558ad000387398eccccc msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=76071f1a7fb9d854f0e0395d7ad43deedbfbaa09b6ea187f565f6c009021ba msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=49bde06081a37ef1bdf6670df3b2a2c3879505befdf77187d44f8f125f2d2e handshake=Noise_IKpsk1_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625442c6abbd4f501864a318f49084d6edc465d6025bf9bfa58f08855e3924c965535125a8f083041204dad6d4fdbdf4c0a23088b534967aea9b6b9ec67ff60dee46 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484663a536a2718f2256fb71d2b3e3e5ba163 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=b723cbfbb75b3039c733be62919a5dc997419469b0a4efd0d12cb1937fb5df msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=91532e9187412d8c91f8bf3064080b68d73bd677ed63ddfb60d7ac0ed6cc04 handshake=Noise_IKpsk2_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254575510fd1ee7b381c333b77018908687c0a9aea3af69511201e97caa4a743e105d069f494432d8859fc610b81fed1f5e249dac1a2217ff72505457f145fda872 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466cdbfa3b6cd68bdbc191a6441920da40d msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=c0a06e03b33924f95bede35f78563a6ec56fa623cc46cf09f55fc08ed8011d msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=d1f5f192af4b598d2e29afd9105617216708839d508f2073784a18a6a6fa6a handshake=Noise_IK_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254e4c987aee1def7f4451e94e52f2edcf3f88abd36f9a83613afec5cfba3d156ca3241a67c80714c7daf3a9695237fa6a466154654a805c143d8a92a12ba607ce52fa4921f215ec4b41789 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466b54fb4d11ab95fa5013849718dfcbfb57b0aa6d423cc6b1e5c74 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=410d4ee9df61c268dddeee01e9035a81d099b7560f1d565624cddb19ccdea7 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=29c70c4ff6224a7472bb3ef9a786470ec1982e798ba7f5b5c201e705652893 handshake=Noise_IKpsk0_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662546b6d56750cabed6b4793bbd0a78c250ac5e2c53aa8df8fe0dbf15189011623c31add3ba342c9a3fb5240aa60aed3fd29aab66f9942bb0346812f1f380a6216514fc7f1ee5c4e064bbd26 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846672547a8e33283d797b8c1a6219c6904161528f9da68ac5ab35db msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=76071f1a7fb9d854f0e0395d7ad43deedbfbaa09b6ea187f565f6c009021ba msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=49bde06081a37ef1bdf6670df3b2a2c3879505befdf77187d44f8f125f2d2e handshake=Noise_IKpsk1_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625442c6abbd4f501864a318f49084d6edc465d6025bf9bfa58f08855e3924c965535125a8f083041204dad6d4fdbdf4c0a27282a568a006a2474d8305595ab4f5cf185f555b3369608e9f39 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846650bf4a2aba8abe046d9ddb3d73ca2c8754fea6c5fc5af7f07538 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=b723cbfbb75b3039c733be62919a5dc997419469b0a4efd0d12cb1937fb5df msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=91532e9187412d8c91f8bf3064080b68d73bd677ed63ddfb60d7ac0ed6cc04 handshake=Noise_IKpsk2_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254575510fd1ee7b381c333b77018908687c0a9aea3af69511201e97caa4a743e105d069f494432d8859fc610b81fed1f5efc5c147038b683952ec2099209d2146ad862d95293ec3c38175d msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466d9312e9888b0b56ce23cb101090c86a3a7f5e0f4df15ee88b3ee msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=c0a06e03b33924f95bede35f78563a6ec56fa623cc46cf09f55fc08ed8011d msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=d1f5f192af4b598d2e29afd9105617216708839d508f2073784a18a6a6fa6a handshake=Noise_IK_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254e4c987aee1def7f4451e94e52f2edcf3f88abd36f9a83613afec5cfba3d156ca23c0cff39fe89439ce3a8aa083ba16fb93ea47b2f5e9b5b64b91f53e6c3cdf12 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846604e05abd3e92d415e1b7c232d6e91964 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=410d4ee9df61c268dddeee01e9035a81d099b7560f1d565624cddb19ccdea7 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=29c70c4ff6224a7472bb3ef9a786470ec1982e798ba7f5b5c201e705652893 handshake=Noise_IKpsk0_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662546b6d56750cabed6b4793bbd0a78c250ac5e2c53aa8df8fe0dbf15189011623c31c03513c168584cbece10798ab45fc2ac41aacfc87f02840a8e1df005b094a9b msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466642b389be08a294dcb65f508382fac63 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=76071f1a7fb9d854f0e0395d7ad43deedbfbaa09b6ea187f565f6c009021ba msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=49bde06081a37ef1bdf6670df3b2a2c3879505befdf77187d44f8f125f2d2e handshake=Noise_IKpsk1_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625442c6abbd4f501864a318f49084d6edc465d6025bf9bfa58f08855e3924c965531dcb0438a43fefd352e9e6a79b98bd1b2c476b239cbe1cbcbbb5ddfa78064e40 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846692389a661fad3c014072134790eeeff6 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=b723cbfbb75b3039c733be62919a5dc997419469b0a4efd0d12cb1937fb5df msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=91532e9187412d8c91f8bf3064080b68d73bd677ed63ddfb60d7ac0ed6cc04 handshake=Noise_IKpsk2_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254575510fd1ee7b381c333b77018908687c0a9aea3af69511201e97caa4a743e103248ca4db0040cfd5fdc65d4dcf88051c39cb96747255580863f7a34c7bc56f7 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466ed376bd9b78fd69ba3b5a38d84c93fd1 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=c0a06e03b33924f95bede35f78563a6ec56fa623cc46cf09f55fc08ed8011d msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=d1f5f192af4b598d2e29afd9105617216708839d508f2073784a18a6a6fa6a handshake=Noise_IK_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254e4c987aee1def7f4451e94e52f2edcf3f88abd36f9a83613afec5cfba3d156ca23c0cff39fe89439ce3a8aa083ba16fb66154654a805c143d8a926195b37d8d08a4fcdefff201de9f069 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466b54fb4d11ab95fa50138358319a81593d62664ca0ad72f63c8d5 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=410d4ee9df61c268dddeee01e9035a81d099b7560f1d565624cddb19ccdea7 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=29c70c4ff6224a7472bb3ef9a786470ec1982e798ba7f5b5c201e705652893 handshake=Noise_IKpsk0_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662546b6d56750cabed6b4793bbd0a78c250ac5e2c53aa8df8fe0dbf15189011623c31c03513c168584cbece10798ab45fc2aaab66f9942bb0346812f14630b559db512874d6eca353bdb7135 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846672547a8e33283d797b8c646ae93be9f51723c08fc117b388c36c msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=76071f1a7fb9d854f0e0395d7ad43deedbfbaa09b6ea187f565f6c009021ba msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=49bde06081a37ef1bdf6670df3b2a2c3879505befdf77187d44f8f125f2d2e handshake=Noise_IKpsk1_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625442c6abbd4f501864a318f49084d6edc465d6025bf9bfa58f08855e3924c965531dcb0438a43fefd352e9e6a79b98bd1b7282a568a006a2474d83f1e95944af542ae2a5c246afa7b1242a msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846650bf4a2aba8abe046d9d847c49963b2b21211eb16f5bb7b42cf9 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=b723cbfbb75b3039c733be62919a5dc997419469b0a4efd0d12cb1937fb5df msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=91532e9187412d8c91f8bf3064080b68d73bd677ed63ddfb60d7ac0ed6cc04 handshake=Noise_IKpsk2_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254575510fd1ee7b381c333b77018908687c0a9aea3af69511201e97caa4a743e103248ca4db0040cfd5fdc65d4dcf88051fc5c147038b683952ec2a1de96b1f5804dc4dd69ce7bbe8de7ab msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466d9312e9888b0b56ce23cedf9537317b8b0121d90405c3e5e89df msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=c0a06e03b33924f95bede35f78563a6ec56fa623cc46cf09f55fc08ed8011d msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=d1f5f192af4b598d2e29afd9105617216708839d508f2073784a18a6a6fa6a handshake=Noise_XX_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466881a9849f98286c79700c48c40e6667ce14ce8baabdf27b51fb80d248c2d56a65be777dc2ad2438d794410a91e1542a138b33b73a5ff808ecff2e90952defca9 msg_2_payload= msg_2_ciphertext=a0c7c991f077df03c26762bb80c9dc4c830c71a012dc1a002363a684c659a3487c8a7c790075c7a5ac8de6fe1ccc7363d39bea6035a91323f511f662ee40d9de msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=d52095f5c41973904a84746d988f0e424ec0832c3257cb4675eab76c4c197f msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=86e1a5d80c71d13bde2e6b2559ecc953b97939de528e1ae166a64540265918 handshake=Noise_XXpsk0_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625494973748946c53f4c3f0db3c62e50099 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466289a21b67ebcd303874b2b58d5ad4c6aa597823a9fdb77f2a5206bd199cefd0afa1402a0672f9df8bbbe4c6dc9e40fee220c5650cf918735768cbb4d0304bace msg_2_payload= msg_2_ciphertext=72e8d243ded18bf346c63e43042561f1f7eea7d61e499ba2e51f6819a5c556ce2a5e04c824b6c100e0a798bba881e39592214a04d798571575590d2490a76084 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=c8c6894b90eb696c12292043bbb40f9a328aa548a3d0a3f71ef025a9b504f2 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=fb30fc91a2a3fe04b50793a90835418f73173af49782a9655469ef389b0f8b handshake=Noise_XXpsk1_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625477ffea436edf0c2502c18ab6c5ea925c msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484661bb41bc44a3c6bf571d96d127cc540711c9d29c6b5225a7ca69f1a8eba6ba143c76b96f3a32b34d0a54da910155fb59ca7e36e03928fb6b456c7a0a6d8cd6bcc msg_2_payload= msg_2_ciphertext=68bbb40ac1a9fa5f73a62c7619412ceeef08851e539edae876d22a77589b714b29fc73ebc63fd53703760dfb5b113f810304b5bb64f002f0b9c005f5109bf09b msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=b80aad9eee02c2105326ce8b8742f79c648df188075c60ce036070737da384 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=a90ba8d19bd5fcac4dab5203f7ad6311a0b2ba489b05dbe7718d06a0fbc001 handshake=Noise_XXpsk2_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254b142f929c44494d1a0458dcce84eb647 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484667e309552812f7796950972a8683660efcd19841b13a0f8b4e73ff2283d4240da0f3bc5a07c22a22b596eff3de2e5f32ffd0a5573ecd32dddd5996bfa5dcf6cb5 msg_2_payload= msg_2_ciphertext=42f39db26ff8d341399e35badb4d01392349af4a4d9ccc8fa34dedf38bb22fa0dc88a7767b9a4fa2ed8c03164ddad3762f658cd9af264c06ba838caee5b5924c msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=b5b7e08b5f8473fcfb9ea1d921aca681d220045c2c99c052067cab897f57a5 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=68f4d64bdc52e4db8618374df2693239e2abfb769adce30ba36709ce94b09d handshake=Noise_XXpsk3_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548eb7890b9ae7c832d44eb674f849b235 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484663a5c4a9bed2e487576db434ac38ce4e27e65e3aa233acd74dd5ff515a90ce1ed94189db4ce2e6ab986fa649ad0ce12cc986cba0a6f543f5781327884b9160eec msg_2_payload= msg_2_ciphertext=5c234f66a0c1f8603e407c1aa7d44a6121e170b15a28d903e58fbe52d03111690e20f382d3b0a221cadcb887ec014029a54bcf1904980c34b4a3b23194ca4860 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=15d59f30f156bfa9065631ed3cb2342e82fb2cf850e0ed2a37b5d21caacce3 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=252a53c772510b5322ed3ff20b30d1e3d2d370e6684bf640201ad04b613b02 handshake=Noise_XX_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466881a9849f98286c79700c48c40e6667ce14ce8baabdf27b51fb80d248c2d56a6d35f521ebb5ab02d7db36ad16024c4f73cf130e8e1cb1b62a54aae4524ddefdb92d2eb92b80c99d9dff8 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=a0c7c991f077df03c26762bb80c9dc4c830c71a012dc1a002363a684c659a3483672cd61275f36c652ad0226320581534b172fee0f1c41b654c5884d78edc65fda9770c1ba6e96ffd7ff msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=d52095f5c41973904a84746d988f0e424ec0832c3257cb4675eab76c4c197f msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=86e1a5d80c71d13bde2e6b2559ecc953b97939de528e1ae166a64540265918 handshake=Noise_XXpsk0_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548481c4600f085d1c599bb7c9826aa10f1b0d6ff4167bb1824989 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466289a21b67ebcd303874b2b58d5ad4c6aa597823a9fdb77f2a5206bd199cefd0ab2d2062f3146f66ddc482f2f08dcae5c42dbd90643a806d4efd3565e01a0441cd9d8711b2e53f6328308 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=72e8d243ded18bf346c63e43042561f1f7eea7d61e499ba2e51f6819a5c556ce815d16cb6e27ec20aedeedcba498f2be70fa8af7396bc363498528a37b435784f4802d9ffa89f8f4149a msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=c8c6894b90eb696c12292043bbb40f9a328aa548a3d0a3f71ef025a9b504f2 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=fb30fc91a2a3fe04b50793a90835418f73173af49782a9655469ef389b0f8b handshake=Noise_XXpsk1_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662542c0b0e441f5fa603216153e4aec070f29385fdeda4a5a812f1ba msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484661bb41bc44a3c6bf571d96d127cc540711c9d29c6b5225a7ca69f1a8eba6ba1433eb446aea3823040decee92311318e59e89c2ba5f9c3bb8bae87f18ad6a2cbc3385f74e2908927bfa971 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=68bbb40ac1a9fa5f73a62c7619412ceeef08851e539edae876d22a77589b714b37b451c385c4004eeb865c67ea744f95bd6dddfc711abc8dd6d43636752808a6aa598904665ea8adc38c msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=b80aad9eee02c2105326ce8b8742f79c648df188075c60ce036070737da384 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=a90ba8d19bd5fcac4dab5203f7ad6311a0b2ba489b05dbe7718d06a0fbc001 handshake=Noise_XXpsk2_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254aaf69bdfb1097bc7ef7434c8f6b361d3c56765dfc22ff727fda7 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484667e309552812f7796950972a8683660efcd19841b13a0f8b4e73ff2283d4240da30a2370fbbb64cc5290c58f4b1384bfb236d208257a60fdea450b3fa9a436f78914a07c1556ed6ee1626 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=42f39db26ff8d341399e35badb4d01392349af4a4d9ccc8fa34dedf38bb22fa045dab2ec12ba7a2c3648f1f3b838659f7ff333033cc7d08e83621a3c06ba34a810cb6f196149579160b1 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=b5b7e08b5f8473fcfb9ea1d921aca681d220045c2c99c052067cab897f57a5 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=68f4d64bdc52e4db8618374df2693239e2abfb769adce30ba36709ce94b09d handshake=Noise_XXpsk3_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254a7c911d94ce4484b53ba5071c24ac9bc5450ae8c596d0f81b28f msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484663a5c4a9bed2e487576db434ac38ce4e27e65e3aa233acd74dd5ff515a90ce1ed7c9313a3a276333eec17fbd506ae3517e58f3e80b076f721352751eb6389ba9c629325042ede03308001 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=5c234f66a0c1f8603e407c1aa7d44a6121e170b15a28d903e58fbe52d03111691892f24cc3ab41fc4cc57e270fc4dc61d449cc67794d27fa94cbafc9d3144cbda3f0099a09043f63a0df msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=15d59f30f156bfa9065631ed3cb2342e82fb2cf850e0ed2a37b5d21caacce3 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=252a53c772510b5322ed3ff20b30d1e3d2d370e6684bf640201ad04b613b02 handshake=Noise_XX_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466881a9849f98286c79700c48c40e6667ce14ce8baabdf27b51fb80d248c2d56a603c1a5efe2c15f405d2aff0296f0dbcf6069f8aca95b8c7a930fb910d8032f87 msg_2_payload= msg_2_ciphertext=a0c7c991f077df03c26762bb80c9dc4c830c71a012dc1a002363a684c659a348ee08e3a592efd47624fd916ad05e0240000f553c46da776c0323202e72efebf2 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=d52095f5c41973904a84746d988f0e424ec0832c3257cb4675eab76c4c197f msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=86e1a5d80c71d13bde2e6b2559ecc953b97939de528e1ae166a64540265918 handshake=Noise_XXpsk0_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662549b618e6f51bc8446b0ddfcbec9b3734a msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466289a21b67ebcd303874b2b58d5ad4c6aa597823a9fdb77f2a5206bd199cefd0ac4e0efeeeae405223369ce0be060b3aaf167673c34a317c406380ae734fe4b1f msg_2_payload= msg_2_ciphertext=72e8d243ded18bf346c63e43042561f1f7eea7d61e499ba2e51f6819a5c556ce6ffa24ddbaa0238ab82e992c850c29e8b51d12483c258a10b9bb026c8a801247 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=c8c6894b90eb696c12292043bbb40f9a328aa548a3d0a3f71ef025a9b504f2 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=fb30fc91a2a3fe04b50793a90835418f73173af49782a9655469ef389b0f8b handshake=Noise_XXpsk1_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254ab765d8d10260f702bba6591780b98dc msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484661bb41bc44a3c6bf571d96d127cc540711c9d29c6b5225a7ca69f1a8eba6ba143cd1aca7fb41b0ddd8031a718b144492ce2f62f7d6ef980460e65216c20f9c7e7 msg_2_payload= msg_2_ciphertext=68bbb40ac1a9fa5f73a62c7619412ceeef08851e539edae876d22a77589b714b82eccf7bc87129c069f11a8cc539a147bc1efeccfa736f370deef88a0acc8784 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=b80aad9eee02c2105326ce8b8742f79c648df188075c60ce036070737da384 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=a90ba8d19bd5fcac4dab5203f7ad6311a0b2ba489b05dbe7718d06a0fbc001 handshake=Noise_XXpsk2_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254ff7a4d153ade1ea6e96c452a20a8e3bc msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484667e309552812f7796950972a8683660efcd19841b13a0f8b4e73ff2283d4240dac7bb45f67bb45b70fb4d2ebb27cc04b6ee40c5754c3a4f2692e05c045968574b msg_2_payload= msg_2_ciphertext=42f39db26ff8d341399e35badb4d01392349af4a4d9ccc8fa34dedf38bb22fa05e4d9f9a35ea24dccc479fbc9e2a65efcb4872b86cd77d8422fdfa7ee43a052e msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=b5b7e08b5f8473fcfb9ea1d921aca681d220045c2c99c052067cab897f57a5 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=68f4d64bdc52e4db8618374df2693239e2abfb769adce30ba36709ce94b09d handshake=Noise_XXpsk3_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625453a789a04c5ca870fc4e845827e25976 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484663a5c4a9bed2e487576db434ac38ce4e27e65e3aa233acd74dd5ff515a90ce1ed33f7a9ba95b680aabfdcd6faf180864ccfa6e32cf5dd2015069240ad2bde63dc msg_2_payload= msg_2_ciphertext=5c234f66a0c1f8603e407c1aa7d44a6121e170b15a28d903e58fbe52d031116938bd08876647a8f9b53897ba3b993bc00824f3e9ad26f887175203ddd58e400e msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=15d59f30f156bfa9065631ed3cb2342e82fb2cf850e0ed2a37b5d21caacce3 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=252a53c772510b5322ed3ff20b30d1e3d2d370e6684bf640201ad04b613b02 handshake=Noise_XX_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466881a9849f98286c79700c48c40e6667ce14ce8baabdf27b51fb80d248c2d56a6760edec0b63677b285a157e0c68bd18f3cf130e8e1cb1b62a54aec0aa715200fa9e0095e353bd5cc6c99 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=a0c7c991f077df03c26762bb80c9dc4c830c71a012dc1a002363a684c659a348806b2304b1b50e1273f35f0e9c1fb86b4b172fee0f1c41b654c5ea91e10467f8911bcd6ff4fd0df18794 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=d52095f5c41973904a84746d988f0e424ec0832c3257cb4675eab76c4c197f msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=86e1a5d80c71d13bde2e6b2559ecc953b97939de528e1ae166a64540265918 handshake=Noise_XXpsk0_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548481c4600f085d1c599b05cb00d2513b8084b6169bfc5bb7c585 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466289a21b67ebcd303874b2b58d5ad4c6aa597823a9fdb77f2a5206bd199cefd0a6b7ae867af93fabe3076dd8e7e0eb2d342dbd90643a806d4efd3cd2e89fa996d73ad84120ea05d413ad7 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=72e8d243ded18bf346c63e43042561f1f7eea7d61e499ba2e51f6819a5c556ced607e93b2dfaa12a116a8ed4abdfde1370fa8af7396bc36349858ddaaf9086bf4bbc1bbaf725de27b117 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=c8c6894b90eb696c12292043bbb40f9a328aa548a3d0a3f71ef025a9b504f2 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=fb30fc91a2a3fe04b50793a90835418f73173af49782a9655469ef389b0f8b handshake=Noise_XXpsk1_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662542c0b0e441f5fa60321617cd5aaa5126df6112f9fd7d4a4060d0f msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484661bb41bc44a3c6bf571d96d127cc540711c9d29c6b5225a7ca69f1a8eba6ba143c81802b4196029f4dd49cda7a9667171e89c2ba5f9c3bb8bae87d62743fbd6c41b29b90e28abe5c53789 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=68bbb40ac1a9fa5f73a62c7619412ceeef08851e539edae876d22a77589b714b64215da6697d5de8b5859e3a18fa350cbd6dddfc711abc8dd6d44805dd2117144b1abdcbfa863f2724c6 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=b80aad9eee02c2105326ce8b8742f79c648df188075c60ce036070737da384 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=a90ba8d19bd5fcac4dab5203f7ad6311a0b2ba489b05dbe7718d06a0fbc001 handshake=Noise_XXpsk2_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254aaf69bdfb1097bc7ef744544458a0e3b93b54da858c0219c4f9c msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484667e309552812f7796950972a8683660efcd19841b13a0f8b4e73ff2283d4240da4aad79ffed55b9f1d7e9257f49e341c6236d208257a60fdea4509d21ea64a04dae01a87b8fc3c7c564aa msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=42f39db26ff8d341399e35badb4d01392349af4a4d9ccc8fa34dedf38bb22fa06e9d56dd6bee77cbb228ac33eac073e67ff333033cc7d08e836232bfc71b12fed59ee9c98d159775d03e msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=b5b7e08b5f8473fcfb9ea1d921aca681d220045c2c99c052067cab897f57a5 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=68f4d64bdc52e4db8618374df2693239e2abfb769adce30ba36709ce94b09d handshake=Noise_XXpsk3_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254a7c911d94ce4484b53ba1d3eb5d88b66cf8083a3af2f7cbe4ef7 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484663a5c4a9bed2e487576db434ac38ce4e27e65e3aa233acd74dd5ff515a90ce1edb208e022f907532a068c7498e0aaea01e58f3e80b076f721352785c23cf88eb4fff0dce143e9eea6735b msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=5c234f66a0c1f8603e407c1aa7d44a6121e170b15a28d903e58fbe52d031116999fbc2a23fe6dd1a2e8347383b1add8bd449cc67794d27fa94cb501bb6b0dcf7e6704b3f454f28b7ca74 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=15d59f30f156bfa9065631ed3cb2342e82fb2cf850e0ed2a37b5d21caacce3 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=252a53c772510b5322ed3ff20b30d1e3d2d370e6684bf640201ad04b613b02 handshake=Noise_IX_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548f40c5adb68f25624ae5b214ea767a6ec94d829d3d7b5e1ad1ba6f3e2138285f msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466f1ce2a834dd79601d96e93cd87f9cb5ab910a94dc1c3aff65cc8a8bbfaa3f92d5f27af354133ca719324555c65ffd2c1d2e472871b0412ac82c4816c798656cc msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=9466b89d06e6480bd641be5427af829d10cb3587147334a8cb22d12be0a8c0 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=988653bd8c786f07f5fd3978d4b4c2ef5fcc54e922bdc51a3bfebf88775773 handshake=Noise_IXpsk0_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254e17609d47e41aefd58600f2429a4079e30bc7c7a54960092f478e3a8b2ac897e5d02f331ca4f071810c4400747db69f287bb7bd2613b9bb9696f1d0332ffb49f msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484665b8c37f4b30ec0d0e7bd2c2df58f36c5c07cf55d88f33c1f25e4a7028d4ebf27e6499b388d97612d0d8e3d843613fcc10c85952bdb9f6ff4e6224a6673acf072 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=d897592021d2ac4f4d5806105f48371c29282a6a72ec4f5774248ffa172dab msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=53c1f9f52e81ed46781adf8ea6bdd05c62b6e4f504cea15bacb669e4c41cde handshake=Noise_IXpsk1_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254e0e42ae7efaf198ba4628458bbd2824d836e24f1c558674ce8a6718178a8df958bff6c92b1f83c27b67e9c635956e1e37e2949990529f155b14bbd460b2c8207 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846664ad11b977ffd27f6732871a81fdea7702e2867e4953a6268ef1ac334632de746ac9811a6548b94151edf998a1c6f8a42f28cc714bc91e0baf43948a61acaf54 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=4933a12a52fcc1e5088e9cc6811d542e3a8bafd64b821795fed855c8c07d98 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=fb9d7a40d84a9f6e1cbf0a74b327d0ce75b191ad37cb6a333730e196a2b95d handshake=Noise_IXpsk2_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662547ef2ddaa7167ce00a9dae6705805e8745f6dcbfc15a0fdb870a2a1d5a2248ccb625ad8a5a599f93caf0cb7c9108cb22aa3d483270bc7b0049b0a04a352df3999 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846642fbf7969708ccb5848f5e2c10ad358337b3581e939885f51562ea7973968931934c8bb5c7a2fe76a9afff12ef17bf773abfb17d03ba3f70b59672de1948cda8 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=7ccfa4fa03625064a116414a6ee0409c6d6c0f5398fb68aef65e271d8efad9 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=571d9e1c4ff1f12c8cfbdfecb1d040d0dc86a41ab6efff8af515db514a2120 handshake=Noise_IX_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548f40c5adb68f25624ae5b214ea767a6ec94d829d3d7b5e1ad1ba6f3e2138285f746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466f1ce2a834dd79601d96e93cd87f9cb5ab910a94dc1c3aff65cc8a8bbfaa3f92d13220a1c98e2da8ff11520cdaf69c8edb270e4f47968b021af7801dd1a7ea41817d4107a6784b31d7a25 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=9466b89d06e6480bd641be5427af829d10cb3587147334a8cb22d12be0a8c0 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=988653bd8c786f07f5fd3978d4b4c2ef5fcc54e922bdc51a3bfebf88775773 handshake=Noise_IXpsk0_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254e17609d47e41aefd58600f2429a4079e30bc7c7a54960092f478e3a8b2ac897e5d02f331ca4f071810c4400747db69f2a960f5fe61a3d4eb096bda1618b89957324fa42142a4479e58d8 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484665b8c37f4b30ec0d0e7bd2c2df58f36c5c07cf55d88f33c1f25e4a7028d4ebf27d47ef437c44564d6b9824c813474b23c75ec7a42f32f740ddeb7cb029e46da19400b0548da6fa9d33040 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=d897592021d2ac4f4d5806105f48371c29282a6a72ec4f5774248ffa172dab msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=53c1f9f52e81ed46781adf8ea6bdd05c62b6e4f504cea15bacb669e4c41cde handshake=Noise_IXpsk1_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254e0e42ae7efaf198ba4628458bbd2824d836e24f1c558674ce8a6718178a8df958bff6c92b1f83c27b67e9c635956e1e3ea0ae732463351778665fb6c549220bda51ca4dab499127b2e90 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846664ad11b977ffd27f6732871a81fdea7702e2867e4953a6268ef1ac334632de742025999d290bfb83d5e00b52aeca7dcd506a082856b65911e0cc85a7d923d2285550161acb482e4ee0d1 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=4933a12a52fcc1e5088e9cc6811d542e3a8bafd64b821795fed855c8c07d98 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=fb9d7a40d84a9f6e1cbf0a74b327d0ce75b191ad37cb6a333730e196a2b95d handshake=Noise_IXpsk2_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662547ef2ddaa7167ce00a9dae6705805e8745f6dcbfc15a0fdb870a2a1d5a2248ccb625ad8a5a599f93caf0cb7c9108cb22ac70f73b4d75fe9d0d019cab3ef8980a988842f9351e17a45d19b msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846642fbf7969708ccb5848f5e2c10ad358337b3581e939885f51562ea797396893193f4a2cd2f7319f95f91545a426303b6f353dc9027ccba95e44993f61a51cf71b82a4af7d8f51471419f msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=7ccfa4fa03625064a116414a6ee0409c6d6c0f5398fb68aef65e271d8efad9 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=571d9e1c4ff1f12c8cfbdfecb1d040d0dc86a41ab6efff8af515db514a2120 handshake=Noise_IX_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548f40c5adb68f25624ae5b214ea767a6ec94d829d3d7b5e1ad1ba6f3e2138285f msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466f1ce2a834dd79601d96e93cd87f9cb5ab910a94dc1c3aff65cc8a8bbfaa3f92d3ee79db4b8ef12dff465ece323fd782781b410bdbe128fac6ed4aafa2e5d1036 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=9466b89d06e6480bd641be5427af829d10cb3587147334a8cb22d12be0a8c0 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=988653bd8c786f07f5fd3978d4b4c2ef5fcc54e922bdc51a3bfebf88775773 handshake=Noise_IXpsk0_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254e17609d47e41aefd58600f2429a4079e30bc7c7a54960092f478e3a8b2ac897e0f793c7eca1b142371f5c7adcd39ef2d85d2cc45261b4c844d26a700b8080a71 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484665b8c37f4b30ec0d0e7bd2c2df58f36c5c07cf55d88f33c1f25e4a7028d4ebf27f63b0c7c9fc405892f9a45dbb3136db02e186f41f5852fcb61148c13c2faaf05 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=d897592021d2ac4f4d5806105f48371c29282a6a72ec4f5774248ffa172dab msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=53c1f9f52e81ed46781adf8ea6bdd05c62b6e4f504cea15bacb669e4c41cde handshake=Noise_IXpsk1_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254e0e42ae7efaf198ba4628458bbd2824d836e24f1c558674ce8a6718178a8df95a92bf930313b0c166e327b6df9e230fd99f3adef07e10e98d8a6cc5cfcdcefd2 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846664ad11b977ffd27f6732871a81fdea7702e2867e4953a6268ef1ac334632de74f47e0a7d1f82839c24edf89e23718f37aa90feb7e4b0172a8c7efff3c9950443 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=4933a12a52fcc1e5088e9cc6811d542e3a8bafd64b821795fed855c8c07d98 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=fb9d7a40d84a9f6e1cbf0a74b327d0ce75b191ad37cb6a333730e196a2b95d handshake=Noise_IXpsk2_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662547ef2ddaa7167ce00a9dae6705805e8745f6dcbfc15a0fdb870a2a1d5a2248ccb39325f84a4fef594c2b2505ed80a82f52d378b7ebd94fca5ed054c5d4b25e62f msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846642fbf7969708ccb5848f5e2c10ad358337b3581e939885f51562ea7973968931420324746210e7aba862fcae3756f99d879260a2abc0e93d159e764c3945cf3b msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=7ccfa4fa03625064a116414a6ee0409c6d6c0f5398fb68aef65e271d8efad9 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=571d9e1c4ff1f12c8cfbdfecb1d040d0dc86a41ab6efff8af515db514a2120 handshake=Noise_IX_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548f40c5adb68f25624ae5b214ea767a6ec94d829d3d7b5e1ad1ba6f3e2138285f746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466f1ce2a834dd79601d96e93cd87f9cb5ab910a94dc1c3aff65cc8a8bbfaa3f92d75c33e2c9a58e7a754fa198b475f15a1b270e4f47968b021af78afd7c7783d1c26ef47324aa3e92a9b2a msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=9466b89d06e6480bd641be5427af829d10cb3587147334a8cb22d12be0a8c0 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=988653bd8c786f07f5fd3978d4b4c2ef5fcc54e922bdc51a3bfebf88775773 handshake=Noise_IXpsk0_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254e17609d47e41aefd58600f2429a4079e30bc7c7a54960092f478e3a8b2ac897e0f793c7eca1b142371f5c7adcd39ef2da960f5fe61a3d4eb096b2d9222aa6220a4baede9117fd8b82f70 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484665b8c37f4b30ec0d0e7bd2c2df58f36c5c07cf55d88f33c1f25e4a7028d4ebf273fa04865b7cd6c2c521234163b0cf18975ec7a42f32f740ddeb7bcabc5810784ac068eaf9430c51a17f7 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=d897592021d2ac4f4d5806105f48371c29282a6a72ec4f5774248ffa172dab msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=53c1f9f52e81ed46781adf8ea6bdd05c62b6e4f504cea15bacb669e4c41cde handshake=Noise_IXpsk1_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254e0e42ae7efaf198ba4628458bbd2824d836e24f1c558674ce8a6718178a8df95a92bf930313b0c166e327b6df9e230fdea0ae732463351778665999485bd22d3214b8adf6b4789850649 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846664ad11b977ffd27f6732871a81fdea7702e2867e4953a6268ef1ac334632de74804554e9834e401fd69f2fe7a4a65824506a082856b65911e0cc771287e7443e22c12bc684a7d034728b msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=4933a12a52fcc1e5088e9cc6811d542e3a8bafd64b821795fed855c8c07d98 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=fb9d7a40d84a9f6e1cbf0a74b327d0ce75b191ad37cb6a333730e196a2b95d handshake=Noise_IXpsk2_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662547ef2ddaa7167ce00a9dae6705805e8745f6dcbfc15a0fdb870a2a1d5a2248ccb39325f84a4fef594c2b2505ed80a82f5c70f73b4d75fe9d0d0195324b867f091e0873e8ce23e989739f5 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846642fbf7969708ccb5848f5e2c10ad358337b3581e939885f51562ea797396893112d7906e33b4b68026c9dd8783d6f307f353dc9027ccba95e449ab7b3308c2a2f866863cad318e811cb6 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=7ccfa4fa03625064a116414a6ee0409c6d6c0f5398fb68aef65e271d8efad9 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=571d9e1c4ff1f12c8cfbdfecb1d040d0dc86a41ab6efff8af515db514a2120 handshake=Noise_N_25519_AESGCM_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254a69eac07dc78694d6a30a4c7f2120bc4 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=53dc944be58d1292365d6a5096b1d990353d826dd51e0cfeef9820d480d814 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=0ac777bf15a2f8e9ae4c0fd7d53aa4b6b61cbb33ea1e64f726aa51cb6c3b57 handshake=Noise_Npsk0_25519_AESGCM_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548ee4ea4ef70d80e3be3383136c01dba7 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=7b2521d4d92735ed21e8ef9b635353c6cbbe6ba708e234d8d30c593af6091c msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=5a66f48e7581384a50a8a6197a76a21fe6e109f3b3c9c89cd335845970a875 handshake=Noise_Npsk1_25519_AESGCM_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254341b1bfc14a6369937b021c81f3b19a0 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=f2a1148bdbfaf3843292d3ad1d665cb11a83f1a412c3f9c04f6b876a91ff00 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=caa8b41e1b5d2289d4f8e91ee4587dbc6335873e1a9b1f9f4a220d3cbbdd2d handshake=Noise_N_25519_AESGCM_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254059099a62768f40676c0696be1c8076e4620fb27faad0ae8abb2 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=53dc944be58d1292365d6a5096b1d990353d826dd51e0cfeef9820d480d814 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=0ac777bf15a2f8e9ae4c0fd7d53aa4b6b61cbb33ea1e64f726aa51cb6c3b57 handshake=Noise_Npsk0_25519_AESGCM_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254cff66e55f9165514342e82b98a436b78c1172bd9a5d44538c499 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=7b2521d4d92735ed21e8ef9b635353c6cbbe6ba708e234d8d30c593af6091c msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=5a66f48e7581384a50a8a6197a76a21fe6e109f3b3c9c89cd335845970a875 handshake=Noise_Npsk1_25519_AESGCM_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662542bf8c34c79ce1dd4da49f8ed9dfdbbe608500f4aeb3610f2ebf5 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=f2a1148bdbfaf3843292d3ad1d665cb11a83f1a412c3f9c04f6b876a91ff00 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=caa8b41e1b5d2289d4f8e91ee4587dbc6335873e1a9b1f9f4a220d3cbbdd2d handshake=Noise_N_25519_AESGCM_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c927ef8c933450ef29c8fe116405cad6 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=53dc944be58d1292365d6a5096b1d990353d826dd51e0cfeef9820d480d814 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=0ac777bf15a2f8e9ae4c0fd7d53aa4b6b61cbb33ea1e64f726aa51cb6c3b57 handshake=Noise_Npsk0_25519_AESGCM_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254fba424bfce5fb315d8c4452c719600d4 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=7b2521d4d92735ed21e8ef9b635353c6cbbe6ba708e234d8d30c593af6091c msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=5a66f48e7581384a50a8a6197a76a21fe6e109f3b3c9c89cd335845970a875 handshake=Noise_Npsk1_25519_AESGCM_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254e88eae4b737047e2ebd9a57e4179dee4 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=f2a1148bdbfaf3843292d3ad1d665cb11a83f1a412c3f9c04f6b876a91ff00 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=caa8b41e1b5d2289d4f8e91ee4587dbc6335873e1a9b1f9f4a220d3cbbdd2d handshake=Noise_N_25519_AESGCM_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254059099a62768f40676c0ad747e00bc4abdc4e547b5d64a203faa msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=53dc944be58d1292365d6a5096b1d990353d826dd51e0cfeef9820d480d814 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=0ac777bf15a2f8e9ae4c0fd7d53aa4b6b61cbb33ea1e64f726aa51cb6c3b57 handshake=Noise_Npsk0_25519_AESGCM_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254cff66e55f9165514342e009262a3b2d4fb0efd940a5ae53f42f7 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=7b2521d4d92735ed21e8ef9b635353c6cbbe6ba708e234d8d30c593af6091c msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=5a66f48e7581384a50a8a6197a76a21fe6e109f3b3c9c89cd335845970a875 handshake=Noise_Npsk1_25519_AESGCM_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662542bf8c34c79ce1dd4da4984d89bde8e3c00ff7204e7e3e7845bf3 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=f2a1148bdbfaf3843292d3ad1d665cb11a83f1a412c3f9c04f6b876a91ff00 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=caa8b41e1b5d2289d4f8e91ee4587dbc6335873e1a9b1f9f4a220d3cbbdd2d handshake=Noise_K_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254d181b2326033180d1efb21521b324a92 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=344e43356f1c93c5c345ff96d7671dc700a99d4c1a1e74a1fa6658219a7297 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=93a8163f0e969702549d39bae62a6f15eee1416ad8c1cbd5b545d77145cb16 handshake=Noise_Kpsk0_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662543f880385cbbd4e4627713122b83ca89e msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=b60ace60531354a67160d9606e0db5d1a2a5949c7cd4bad2ab72bded373f09 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=8de8b083b7c4450eadd4d2303cdff7325a8bd5fc54cb13054148818922c255 handshake=Noise_Kpsk1_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254bbd32e924225d5cd2f1e57426c23b774 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=13d2fe35d850dd95b05d9368e3cb118febf832bbc8d80810838747b10cbefc msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=970e52003f0ec0f427e4221354eb9ed099864d15a59ae15ed0b732843eb7c8 handshake=Noise_K_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c5672a9d770969769874994bbccf28d4db2f626566d3c3216351 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=344e43356f1c93c5c345ff96d7671dc700a99d4c1a1e74a1fa6658219a7297 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=93a8163f0e969702549d39bae62a6f15eee1416ad8c1cbd5b545d77145cb16 handshake=Noise_Kpsk0_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662544d8c11d84ff6ad4c09d4701841b7e57b976b0012be26f3a63234 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=b60ace60531354a67160d9606e0db5d1a2a5949c7cd4bad2ab72bded373f09 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=8de8b083b7c4450eadd4d2303cdff7325a8bd5fc54cb13054148818922c255 handshake=Noise_Kpsk1_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254f6b065ba9cc0c626743f51ce46f94d811eb9452378e4517d832e msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=13d2fe35d850dd95b05d9368e3cb118febf832bbc8d80810838747b10cbefc msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=970e52003f0ec0f427e4221354eb9ed099864d15a59ae15ed0b732843eb7c8 handshake=Noise_K_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254915e0cc0990344b65cbda0733b24186c msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=344e43356f1c93c5c345ff96d7671dc700a99d4c1a1e74a1fa6658219a7297 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=93a8163f0e969702549d39bae62a6f15eee1416ad8c1cbd5b545d77145cb16 handshake=Noise_Kpsk0_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254beaf955b2e97b63a40e509e098e86d26 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=b60ace60531354a67160d9606e0db5d1a2a5949c7cd4bad2ab72bded373f09 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=8de8b083b7c4450eadd4d2303cdff7325a8bd5fc54cb13054148818922c255 handshake=Noise_Kpsk1_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625406637d84bb2b8bacf583b157b5e2db6e msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=13d2fe35d850dd95b05d9368e3cb118febf832bbc8d80810838747b10cbefc msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=970e52003f0ec0f427e4221354eb9ed099864d15a59ae15ed0b732843eb7c8 handshake=Noise_K_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c5672a9d7709697698742cd70ec0be61893c6605698abea0e701 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=344e43356f1c93c5c345ff96d7671dc700a99d4c1a1e74a1fa6658219a7297 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=93a8163f0e969702549d39bae62a6f15eee1416ad8c1cbd5b545d77145cb16 handshake=Noise_Kpsk0_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662544d8c11d84ff6ad4c09d4d1c82d14bc3fcc12126c67b2a0b7ed61 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=b60ace60531354a67160d9606e0db5d1a2a5949c7cd4bad2ab72bded373f09 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=8de8b083b7c4450eadd4d2303cdff7325a8bd5fc54cb13054148818922c255 handshake=Noise_Kpsk1_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254f6b065ba9cc0c626743f16dad8f22e8694edcec128ad0134b91f msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=13d2fe35d850dd95b05d9368e3cb118febf832bbc8d80810838747b10cbefc msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=970e52003f0ec0f427e4221354eb9ed099864d15a59ae15ed0b732843eb7c8 handshake=Noise_X_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662544bd123345f7c3f54a2b7c20f234b39aad2ea1bf7a9b83b82620158c18e0389f8faca2f68c69790e392e0e18c31f2b1e5db5eb720b8c88350be14c8c7f54b4e1c msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=1b4ae7e3fcfa6e15ab023def9162a31e3e34d0842a03269981ad4e7ec16542 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=51198ccfa5d72f8049fcfc80df71db7dcd5e35cda3f9f38684354627f9ee9d handshake=Noise_Xpsk0_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254aea0c63d48d3b1d736b7c1aeae341160ba086d700161ae82ade3efff3235629ffd81d4a1b1e1fb50581c51d774c3293777a02a6bc95c753c273c08d942da964f msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=36d0a83e220c3b0e9715e79ac127f50619a62397c7709f43121aa880b0242c msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=b132a81c4a9cbd2029363179f168112b8b245a15ac51be366f4cb2f09e8f60 handshake=Noise_Xpsk1_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625464d0a2b152420f100932269d5d383be29d5262c4287efbfc1a4689f88752b5e8e8564a7291e383dc088028b58775c5f40d61430c88439f36b3d04e1cfce91092 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=e5abf632a1e20300ec96b8849b1debe07702a0474191af8ec95d2120703ac0 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=0094ea104502c9337f6fdc742e949099f369f0f4c83a9327686b5fa3a39cb3 handshake=Noise_X_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662544bd123345f7c3f54a2b7c20f234b39aad2ea1bf7a9b83b82620158c18e0389f8faca2f68c69790e392e0e18c31f2b1e5f22a97888834b9a0660e1fcdf45922e722d35e0d2441810979d3 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=1b4ae7e3fcfa6e15ab023def9162a31e3e34d0842a03269981ad4e7ec16542 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=51198ccfa5d72f8049fcfc80df71db7dcd5e35cda3f9f38684354627f9ee9d handshake=Noise_Xpsk0_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254aea0c63d48d3b1d736b7c1aeae341160ba086d700161ae82ade3efff3235629ffd81d4a1b1e1fb50581c51d774c32937c1f988f1ae61819d1b63d42fa696048336ad771ced9bc5c747b1 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=36d0a83e220c3b0e9715e79ac127f50619a62397c7709f43121aa880b0242c msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=b132a81c4a9cbd2029363179f168112b8b245a15ac51be366f4cb2f09e8f60 handshake=Noise_Xpsk1_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625464d0a2b152420f100932269d5d383be29d5262c4287efbfc1a4689f88752b5e8e8564a7291e383dc088028b58775c5f4ef2c2f22b87d9c53accd687b92f198179e55ccc3ca701513b918 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=e5abf632a1e20300ec96b8849b1debe07702a0474191af8ec95d2120703ac0 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=0094ea104502c9337f6fdc742e949099f369f0f4c83a9327686b5fa3a39cb3 handshake=Noise_X_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662544bd123345f7c3f54a2b7c20f234b39aad2ea1bf7a9b83b82620158c18e0389f897297750c1904bab4b5e0f28f2e027d71c9e88c0032221aa15011a8e4c78dffc msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=1b4ae7e3fcfa6e15ab023def9162a31e3e34d0842a03269981ad4e7ec16542 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=51198ccfa5d72f8049fcfc80df71db7dcd5e35cda3f9f38684354627f9ee9d handshake=Noise_Xpsk0_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254aea0c63d48d3b1d736b7c1aeae341160ba086d700161ae82ade3efff3235629f35e7632c0bd24a52daa0b948ba567229614147a2f9fec0650804c14558e7a4e3 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=36d0a83e220c3b0e9715e79ac127f50619a62397c7709f43121aa880b0242c msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=b132a81c4a9cbd2029363179f168112b8b245a15ac51be366f4cb2f09e8f60 handshake=Noise_Xpsk1_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625464d0a2b152420f100932269d5d383be29d5262c4287efbfc1a4689f88752b5e86e5ef46c6d25996ebdb230b7431be817301ae3797b93cccfc4ecdf5ca4689916 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=e5abf632a1e20300ec96b8849b1debe07702a0474191af8ec95d2120703ac0 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=0094ea104502c9337f6fdc742e949099f369f0f4c83a9327686b5fa3a39cb3 handshake=Noise_X_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662544bd123345f7c3f54a2b7c20f234b39aad2ea1bf7a9b83b82620158c18e0389f897297750c1904bab4b5e0f28f2e027d7f22a97888834b9a0660ee508b5c4c7f95b0d4d162d91e1123466 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=1b4ae7e3fcfa6e15ab023def9162a31e3e34d0842a03269981ad4e7ec16542 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=51198ccfa5d72f8049fcfc80df71db7dcd5e35cda3f9f38684354627f9ee9d handshake=Noise_Xpsk0_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254aea0c63d48d3b1d736b7c1aeae341160ba086d700161ae82ade3efff3235629f35e7632c0bd24a52daa0b948ba567229c1f988f1ae61819d1b637fb839283a338b00f93f9a7808911c16 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=36d0a83e220c3b0e9715e79ac127f50619a62397c7709f43121aa880b0242c msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=b132a81c4a9cbd2029363179f168112b8b245a15ac51be366f4cb2f09e8f60 handshake=Noise_Xpsk1_25519_AESGCM_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625464d0a2b152420f100932269d5d383be29d5262c4287efbfc1a4689f88752b5e86e5ef46c6d25996ebdb230b7431be817ef2c2f22b87d9c53accd25f4ff987e5fab341d7f7fb4079e5c4b msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=e5abf632a1e20300ec96b8849b1debe07702a0474191af8ec95d2120703ac0 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=0094ea104502c9337f6fdc742e949099f369f0f4c83a9327686b5fa3a39cb3 handshake=Noise_NN_25519_AESGCM_BLAKE2b gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846696b4bba7da775d1f343d26e248da47ba msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=0f2b3e233b31e5fb721769574df39f8da857cd538d2823ed04707c4f1efe2b msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=bf606bbb94c9f27e8f8387140224a52189f3e5e131d5f9763f9ee83ffef688 handshake=Noise_NNpsk0_25519_AESGCM_BLAKE2b gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254317efadec3a319c5f4d92f4acde560c7 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466755e7b455979bcf38ee9cf17a3b996b6 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=7fad8a5bf89774b591341ae6b5f9b53d55e70b6307fdb4fe2eee39c0e5bb79 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=2da7ec97f80353b4fb9e44a0979a222e6cb7ec3d75b89ecca9a4d9aa7703b5 handshake=Noise_NNpsk1_25519_AESGCM_BLAKE2b gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254ee343cd0b23aa39fd8cf07b1298ec783 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846651f5fc391bfbfd847e43586ac95db7e9 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=ad35e3ff791bbe3445b2bca0705f592f16908809ecc6d06940d6409849c628 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=11feae6a0fb8493a4abbb530087f1d3835c4c62caecbe6f3f4dda89627825f handshake=Noise_NNpsk2_25519_AESGCM_BLAKE2b gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625420a46675e8df604263bf11b7ac75590c msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484660bda10fa532c04667c79bda41d186c00 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=bf2a56dc6366625ce68d4911f73aa10b2257c1b46ec516e590c5f94e10e9b4 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=32d8849f8e77aaed40a8294d693acb51de2e22b290b24c779f5019595363f3 handshake=Noise_NN_25519_AESGCM_BLAKE2b gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466a1385f964ae07e077013e92cfd34fa4d13aea47ab078af9d7bdc msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=0f2b3e233b31e5fb721769574df39f8da857cd538d2823ed04707c4f1efe2b msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=bf606bbb94c9f27e8f8387140224a52189f3e5e131d5f9763f9ee83ffef688 handshake=Noise_NNpsk0_25519_AESGCM_BLAKE2b gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254edb3ec0cb095fb513bfbb9898c1bdfb76968a05c706c7ccbbb3f msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484662f83f60a9da988d4cc0930126af5a85bcd6e46e1706d1e757c81 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=7fad8a5bf89774b591341ae6b5f9b53d55e70b6307fdb4fe2eee39c0e5bb79 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=2da7ec97f80353b4fb9e44a0979a222e6cb7ec3d75b89ecca9a4d9aa7703b5 handshake=Noise_NNpsk1_25519_AESGCM_BLAKE2b gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254e18839475af8ae23cf85a15b391081786c60fb05ff38ff3a8166 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466493e02eaf3d3ce6c53105380003732a243a3a3519b790373372a msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=ad35e3ff791bbe3445b2bca0705f592f16908809ecc6d06940d6409849c628 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=11feae6a0fb8493a4abbb530087f1d3835c4c62caecbe6f3f4dda89627825f handshake=Noise_NNpsk2_25519_AESGCM_BLAKE2b gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254e1ff8dc8fdbd3f5808a80493765e14512c58fa7091d993fbb79b msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484662ac11941a34258aed21d24c8ad4afccf638c0549785ab2b0dfa7 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=bf2a56dc6366625ce68d4911f73aa10b2257c1b46ec516e590c5f94e10e9b4 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=32d8849f8e77aaed40a8294d693acb51de2e22b290b24c779f5019595363f3 handshake=Noise_NN_25519_AESGCM_BLAKE2b gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484664614a00ba4ea44ad9bf92954701ac9e1 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=0f2b3e233b31e5fb721769574df39f8da857cd538d2823ed04707c4f1efe2b msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=bf606bbb94c9f27e8f8387140224a52189f3e5e131d5f9763f9ee83ffef688 handshake=Noise_NNpsk0_25519_AESGCM_BLAKE2b gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625449313df1e7a1c4ae4b9f1e8920d00062 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466968db1bd797c81f1b67b2592fb59a167 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=7fad8a5bf89774b591341ae6b5f9b53d55e70b6307fdb4fe2eee39c0e5bb79 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=2da7ec97f80353b4fb9e44a0979a222e6cb7ec3d75b89ecca9a4d9aa7703b5 handshake=Noise_NNpsk1_25519_AESGCM_BLAKE2b gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662547f4d9e059d99a30cba39936c52fa6083 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484667292e76b7244b2db0c173bab2da777a9 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=ad35e3ff791bbe3445b2bca0705f592f16908809ecc6d06940d6409849c628 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=11feae6a0fb8493a4abbb530087f1d3835c4c62caecbe6f3f4dda89627825f handshake=Noise_NNpsk2_25519_AESGCM_BLAKE2b gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662540206ed2f7e2e7b5ad6db890bceeb2c33 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466bbbf52db7d5d3002630dbe3b9e02cd98 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=bf2a56dc6366625ce68d4911f73aa10b2257c1b46ec516e590c5f94e10e9b4 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=32d8849f8e77aaed40a8294d693acb51de2e22b290b24c779f5019595363f3 handshake=Noise_NN_25519_AESGCM_BLAKE2b gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466a1385f964ae07e0770131cf56bbcd8d5bd8379757412d0040b43 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=0f2b3e233b31e5fb721769574df39f8da857cd538d2823ed04707c4f1efe2b msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=bf606bbb94c9f27e8f8387140224a52189f3e5e131d5f9763f9ee83ffef688 handshake=Noise_NNpsk0_25519_AESGCM_BLAKE2b gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254edb3ec0cb095fb513bfbbcecd94c12bd9847fd51060c21c2911b msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484662f83f60a9da988d4cc09b5792492a4e9b6409b7bc382d937669e msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=7fad8a5bf89774b591341ae6b5f9b53d55e70b6307fdb4fe2eee39c0e5bb79 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=2da7ec97f80353b4fb9e44a0979a222e6cb7ec3d75b89ecca9a4d9aa7703b5 handshake=Noise_NNpsk1_25519_AESGCM_BLAKE2b gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254e18839475af8ae23cf8593f99990833b96cecbed3efd278a3ccb msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466493e02eaf3d3ce6c53103983ea03c55afa71148423e8f70f8361 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=ad35e3ff791bbe3445b2bca0705f592f16908809ecc6d06940d6409849c628 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=11feae6a0fb8493a4abbb530087f1d3835c4c62caecbe6f3f4dda89627825f handshake=Noise_NNpsk2_25519_AESGCM_BLAKE2b gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254e1ff8dc8fdbd3f5808a811debd72175c932bd7fa62ebdb9b2873 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484662ac11941a34258aed21df1cd88b8c9f1a3c167e11a517c3e0152 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=bf2a56dc6366625ce68d4911f73aa10b2257c1b46ec516e590c5f94e10e9b4 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=32d8849f8e77aaed40a8294d693acb51de2e22b290b24c779f5019595363f3 handshake=Noise_KN_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466b231ab182aea5eb5058a6125ac8458a7 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=fa26e5cb486370ec737fd513a5cd5d0fe7d017427cab2b85eaf5047ace1c56 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=f7a9d96f5c7568769bdd7ce20df60b523b4b52280a088a5e2ab56711a80714 handshake=Noise_KNpsk0_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254ec0b218b090f45287bb2306c93544b4c msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466d0b9cffb44e4b2eeac1b962afcc87a27 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=52e8407c63693cd38f27a5315b73673dc02e994ef3f5c4713bf6638e95ce08 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=f76678abb5d0cabbfa56bc6440c645fe8b1f05fc3e009b7414563e906ba769 handshake=Noise_KNpsk1_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254e8239d9793920e4c2d84ed8d8324b94b msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484666d84a1c9d27bc55b48b65cadb4a4d89c msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=d79d5ec5a8232269e46915e59d094941db2dcb0b171290dfed713b4446f6cb msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=9c65816526946ffbdf3aac6904c4a12dcf5e447c7c30ecd25095493cea7790 handshake=Noise_KNpsk2_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254991b83d25a380fe7648c0dfcb9c155ab msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846652987ffb3b9f76e78d7121db589f4ac5 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=1a1745e5a72f77f23188f4ba70bf52e6129ad531108fdc545e5dee96bedbb4 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=05ced6b098b70097cf392ead659322b4f18485dc75bf8c6bf327debd0bf4cb handshake=Noise_KN_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846645fa9c2a20a197a1e0baa22bafe33ee7acaedae932270b7c48f2 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=fa26e5cb486370ec737fd513a5cd5d0fe7d017427cab2b85eaf5047ace1c56 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=f7a9d96f5c7568769bdd7ce20df60b523b4b52280a088a5e2ab56711a80714 handshake=Noise_KNpsk0_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625452c9fd84d58429beb1142b609a4863e7041b426ebeb347907ae7 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466f2455d2b3e74bed0cd965ad0906fdd426f1f658e2e90003dcf9e msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=52e8407c63693cd38f27a5315b73673dc02e994ef3f5c4713bf6638e95ce08 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=f76678abb5d0cabbfa56bc6440c645fe8b1f05fc3e009b7414563e906ba769 handshake=Noise_KNpsk1_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254ce64f2a88f1e649de9503e6795ef215a1267bfc8c90aff062f8b msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846623473963f18489e7c72234cee6d9a25976d89cb354d713db977b msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=d79d5ec5a8232269e46915e59d094941db2dcb0b171290dfed713b4446f6cb msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=9c65816526946ffbdf3aac6904c4a12dcf5e447c7c30ecd25095493cea7790 handshake=Noise_KNpsk2_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548934c4e0268ed95c36d59d1129ecca39a1fb209dcbdf02a852d9 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466d4c687fac239e7d047928455aebf3d2b12e36ac54e367376775c msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=1a1745e5a72f77f23188f4ba70bf52e6129ad531108fdc545e5dee96bedbb4 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=05ced6b098b70097cf392ead659322b4f18485dc75bf8c6bf327debd0bf4cb handshake=Noise_KN_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484665d5971fcd8cf63d49da6f97e147f93f8 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=fa26e5cb486370ec737fd513a5cd5d0fe7d017427cab2b85eaf5047ace1c56 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=f7a9d96f5c7568769bdd7ce20df60b523b4b52280a088a5e2ab56711a80714 handshake=Noise_KNpsk0_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254b86660a966446b42c03bed0de0739ce2 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484669f66fc60ac521937d189e4c5d6833ff6 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=52e8407c63693cd38f27a5315b73673dc02e994ef3f5c4713bf6638e95ce08 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=f76678abb5d0cabbfa56bc6440c645fe8b1f05fc3e009b7414563e906ba769 handshake=Noise_KNpsk1_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254af63f6d98ab7abc10e584fbb1dadf03b msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466b8886f47e72b4d191b73e37aea007e84 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=d79d5ec5a8232269e46915e59d094941db2dcb0b171290dfed713b4446f6cb msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=9c65816526946ffbdf3aac6904c4a12dcf5e447c7c30ecd25095493cea7790 handshake=Noise_KNpsk2_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541e87f4eb6b35ffc2d7221c85e4fff91d msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846607c20d3da79461e2b289a02a047412ce msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=1a1745e5a72f77f23188f4ba70bf52e6129ad531108fdc545e5dee96bedbb4 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=05ced6b098b70097cf392ead659322b4f18485dc75bf8c6bf327debd0bf4cb handshake=Noise_KN_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846645fa9c2a20a197a1e0ba6bdff6753dbb6f06d4b3a58514071d26 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=fa26e5cb486370ec737fd513a5cd5d0fe7d017427cab2b85eaf5047ace1c56 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=f7a9d96f5c7568769bdd7ce20df60b523b4b52280a088a5e2ab56711a80714 handshake=Noise_KNpsk0_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625452c9fd84d58429beb11458dae7d43d88d2bbf86bb4a4fea48851 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466f2455d2b3e74bed0cd9697e5ae9b35f12f75d6837474b5847bcf msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=52e8407c63693cd38f27a5315b73673dc02e994ef3f5c4713bf6638e95ce08 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=f76678abb5d0cabbfa56bc6440c645fe8b1f05fc3e009b7414563e906ba769 handshake=Noise_KNpsk1_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254ce64f2a88f1e649de9500f9bb110a1d4ab30625d3d655b0102e9 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846623473963f18489e7c722561310a8b8d53b0cf6bd13b75020efd0 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=d79d5ec5a8232269e46915e59d094941db2dcb0b171290dfed713b4446f6cb msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=9c65816526946ffbdf3aac6904c4a12dcf5e447c7c30ecd25095493cea7790 handshake=Noise_KNpsk2_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548934c4e0268ed95c36d512d38ce5801c5f03b18df72af6fbc19c msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466d4c687fac239e7d04792a57bdb3a881474ad1192de0356b25394 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=1a1745e5a72f77f23188f4ba70bf52e6129ad531108fdc545e5dee96bedbb4 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=05ced6b098b70097cf392ead659322b4f18485dc75bf8c6bf327debd0bf4cb handshake=Noise_NK_25519_AESGCM_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625492cd9880ad23415b7d45ccc2b211e37a msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484665f57bb37f938df25d18d7f89288ae666 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=4863a837542483bc5c39fe8dfcbae600696475bfdab8ae04beaa8e18cd1145 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=ad73bc7f009fbd5df1bb517bfa9d9d5e262d056e50804f8bddb283d58befc2 handshake=Noise_NKpsk0_25519_AESGCM_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254242e465816d0858d06f47e335a09badb msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846671f0a338acc3bde7238080dbb9973db1 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=e64f0f84675e48b7a0058285affc1fab6b836ac80b34e164082d18412d8a73 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=f2b2c8eab1a9fa483ab8b572c934cc44f2d41aa9dc4c536a1ddddea478da58 handshake=Noise_NKpsk1_25519_AESGCM_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254620e726e3d7f18b8f25aede17cdfcfc8 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846694d057301ab3e2f829e2432060dba030 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=6df2429f1df587b56005e87298149cba35aa88ee298469397ea2f4b942dd63 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=4c7c8dbbad29b112d7602b04c8e22edb7eb74db82f6f776ea077a5f6690fbc handshake=Noise_NKpsk2_25519_AESGCM_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541b074aab7776a1c52afe9b249fced5c0 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846696313d3b21b1f68940958623dcca1294 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=a3082562d366ded0f178cf1d204e4e53db5736e66ec10eb0c866a37e654d15 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=60a2f051f6f113e03215df5a29be54632358fd03a7d3dc49e0771fe6c0d2b0 handshake=Noise_NK_25519_AESGCM_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254f0908050e933b7b9347e67893173878d10adab8cf0a44ce2a3f1 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846618559bbbc6d87c6cb0347e9b2bbbf21fe5d8af2c7ce5ee0d82e0 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=4863a837542483bc5c39fe8dfcbae600696475bfdab8ae04beaa8e18cd1145 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=ad73bc7f009fbd5df1bb517bfa9d9d5e262d056e50804f8bddb283d58befc2 handshake=Noise_NKpsk0_25519_AESGCM_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254e51a799a96f84a256118fdc303fec0ed8998042d5dd9556ae77c msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846687204b49e4a67b7b4ca7cd645ff191190a3ca23e92be635c8585 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=e64f0f84675e48b7a0058285affc1fab6b836ac80b34e164082d18412d8a73 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=f2b2c8eab1a9fa483ab8b572c934cc44f2d41aa9dc4c536a1ddddea478da58 handshake=Noise_NKpsk1_25519_AESGCM_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254de5deba8d0093296a30ef145e306b54d8bc4a3969c7afb2b0677 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466d26056f711dacca0102501cb818f217ca8fb2563e79ad50daa19 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=6df2429f1df587b56005e87298149cba35aa88ee298469397ea2f4b942dd63 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=4c7c8dbbad29b112d7602b04c8e22edb7eb74db82f6f776ea077a5f6690fbc handshake=Noise_NKpsk2_25519_AESGCM_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254976601e4078212f0b67b7352b3d82247b7412614ac64b5b73e33 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484661d05dac14245dacbe1ce8860abf4e4e9c39a079a99de750d3cc0 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=a3082562d366ded0f178cf1d204e4e53db5736e66ec10eb0c866a37e654d15 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=60a2f051f6f113e03215df5a29be54632358fd03a7d3dc49e0771fe6c0d2b0 handshake=Noise_NK_25519_AESGCM_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c3a1fd96effa4a96c2d4d2ea49fa51b4 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466fe5aaf6d285a1b2eb29a83b4041f8a9f msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=4863a837542483bc5c39fe8dfcbae600696475bfdab8ae04beaa8e18cd1145 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=ad73bc7f009fbd5df1bb517bfa9d9d5e262d056e50804f8bddb283d58befc2 handshake=Noise_NKpsk0_25519_AESGCM_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541f8d95af05ef4f548190140e105fcdd2 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466fe1e5b2875f805c4c7afe1276551ac33 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=e64f0f84675e48b7a0058285affc1fab6b836ac80b34e164082d18412d8a73 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=f2b2c8eab1a9fa483ab8b572c934cc44f2d41aa9dc4c536a1ddddea478da58 handshake=Noise_NKpsk1_25519_AESGCM_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541cf92667ae758693dd2b7399cd15c401 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466d345d580e11e4c26c7ebfbee575455e9 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=6df2429f1df587b56005e87298149cba35aa88ee298469397ea2f4b942dd63 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=4c7c8dbbad29b112d7602b04c8e22edb7eb74db82f6f776ea077a5f6690fbc handshake=Noise_NKpsk2_25519_AESGCM_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254879ef3d63c164584553d294c6d91d571 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466f6f430402252f77e17be906eaf0b20eb msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=a3082562d366ded0f178cf1d204e4e53db5736e66ec10eb0c866a37e654d15 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=60a2f051f6f113e03215df5a29be54632358fd03a7d3dc49e0771fe6c0d2b0 handshake=Noise_NK_25519_AESGCM_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254f0908050e933b7b9347e44301dc6d6ca7d4b0ce776f3a5d90c38 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846618559bbbc6d87c6cb03495d7531bcb04bb2c87bb444037256131 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=4863a837542483bc5c39fe8dfcbae600696475bfdab8ae04beaa8e18cd1145 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=ad73bc7f009fbd5df1bb517bfa9d9d5e262d056e50804f8bddb283d58befc2 handshake=Noise_NKpsk0_25519_AESGCM_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254e51a799a96f84a25611826e1b4d3a08e33859de2e2edaa19276c msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846687204b49e4a67b7b4ca7e048fc2bd060f346d69f4fa196666869 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=e64f0f84675e48b7a0058285affc1fab6b836ac80b34e164082d18412d8a73 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=f2b2c8eab1a9fa483ab8b572c934cc44f2d41aa9dc4c536a1ddddea478da58 handshake=Noise_NKpsk1_25519_AESGCM_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254de5deba8d0093296a30e16abbe1699580f3543369780626f053b msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466d26056f711dacca01025391e489dd6b23eb6f17f68551e051e17 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=6df2429f1df587b56005e87298149cba35aa88ee298469397ea2f4b942dd63 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=4c7c8dbbad29b112d7602b04c8e22edb7eb74db82f6f776ea077a5f6690fbc handshake=Noise_NKpsk2_25519_AESGCM_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254976601e4078212f0b67b3067d831eba76e2c57e6e4f5d0e5e2bb msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484661d05dac14245dacbe1ceb5b28b786b8224cdf48be55fc33b7f9e msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=a3082562d366ded0f178cf1d204e4e53db5736e66ec10eb0c866a37e654d15 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=60a2f051f6f113e03215df5a29be54632358fd03a7d3dc49e0771fe6c0d2b0 handshake=Noise_KK_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254559236449548b149c86010ab38a7f593 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466cb6a3f46c1a9e3740e073e00c1278116 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=12833dc9ced7ce2bd117611fb110e611bc98f046edd326de308589b085aec1 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=fc60d948d36347b0907c4ab7f180becf7427ef90bb45e71eb35503a2a77271 handshake=Noise_KKpsk0_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254b2feab58971b2b7754c4ce9c28c926e8 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466570f0cf3fa53a65d939d10b1642c2b53 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=8bf212c1518bfc1bcb836c5fe6f669aff33ac43ef009c4a8ec7276ccd7fd1e msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=ff7971613fb38b2ceff9e02ab8bbef225ec3cf67b862f6edd347d64868d589 handshake=Noise_KKpsk1_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254b254229e7b1620584147ca90cb8b10f5 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484663967c7ece58722039816225411448d25 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=0f0c4ac1a0669c88f81275a19747e2947aafe72519b9f9acf69a1853369b81 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=5cb84c8fb19d854105cdccfcf0d69f4b2022e872c1a8825fa459a8da32c574 handshake=Noise_KKpsk2_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625471902189942423b5e706181d24bd3da6 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466670e12b11fa0a2fc1efa881c5b3c5d60 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=a6a1cea393611538d818a6e0ad35dba2df91c82dc22142061d38de575a1be8 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=850511dc2048fec84f31a5ddbbacc370f515c762a439bc4064953b3a60d1c3 handshake=Noise_KK_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254142884550c3a5bbba542498fe2a2e3a42ae03427648d643f2ffa msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466cf84137217e17d4ad6644f9f0c5a674e3acd0fa5cd6b82cf17a5 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=12833dc9ced7ce2bd117611fb110e611bc98f046edd326de308589b085aec1 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=fc60d948d36347b0907c4ab7f180becf7427ef90bb45e71eb35503a2a77271 handshake=Noise_KKpsk0_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625424595376448ec2517751f60303af508d12946b045ec39c9f603d msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466b72308d275634efa109e4144199e333ac5c65da8025b13ba4993 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=8bf212c1518bfc1bcb836c5fe6f669aff33ac43ef009c4a8ec7276ccd7fd1e msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=ff7971613fb38b2ceff9e02ab8bbef225ec3cf67b862f6edd347d64868d589 handshake=Noise_KKpsk1_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662546ce1b92921238f610b81af38c19ef2fa4eb392fae936496df41d msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466d2b19549f76d4caa90b4e495ba5af97e098cadfdd780d76d76f0 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=0f0c4ac1a0669c88f81275a19747e2947aafe72519b9f9acf69a1853369b81 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=5cb84c8fb19d854105cdccfcf0d69f4b2022e872c1a8825fa459a8da32c574 handshake=Noise_KKpsk2_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662543127c95b934bb1414f3123125be999be4d09da6b81e0cc56ae20 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846662111f0c62246c844c4f7d015feb0c15934e2b3b4a838f789485 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=a6a1cea393611538d818a6e0ad35dba2df91c82dc22142061d38de575a1be8 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=850511dc2048fec84f31a5ddbbacc370f515c762a439bc4064953b3a60d1c3 handshake=Noise_KK_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548cafd0193d81be006185db284ec2d871 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466d0afb2bac37e2e2d9c68db47d4036c22 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=12833dc9ced7ce2bd117611fb110e611bc98f046edd326de308589b085aec1 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=fc60d948d36347b0907c4ab7f180becf7427ef90bb45e71eb35503a2a77271 handshake=Noise_KKpsk0_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662549235d028fae66b4f1e4dccfb170d03f8 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466d0928131e420581b197828694275da40 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=8bf212c1518bfc1bcb836c5fe6f669aff33ac43ef009c4a8ec7276ccd7fd1e msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=ff7971613fb38b2ceff9e02ab8bbef225ec3cf67b862f6edd347d64868d589 handshake=Noise_KKpsk1_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662542f62675567432d076a0e477c3cf14615 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484662095be79364e992976531966ba961c94 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=0f0c4ac1a0669c88f81275a19747e2947aafe72519b9f9acf69a1853369b81 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=5cb84c8fb19d854105cdccfcf0d69f4b2022e872c1a8825fa459a8da32c574 handshake=Noise_KKpsk2_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662540dc6b77672c010e87e1636b5d1da2360 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c86fc32118e4ace4d027a4522d94d9d0 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=a6a1cea393611538d818a6e0ad35dba2df91c82dc22142061d38de575a1be8 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=850511dc2048fec84f31a5ddbbacc370f515c762a439bc4064953b3a60d1c3 handshake=Noise_KK_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254142884550c3a5bbba542d6529e3c81cc3f6ce831243b3346b035 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466cf84137217e17d4ad6640ddd193fa49edc3b9fb577a2c7a8296c msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=12833dc9ced7ce2bd117611fb110e611bc98f046edd326de308589b085aec1 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=fc60d948d36347b0907c4ab7f180becf7427ef90bb45e71eb35503a2a77271 handshake=Noise_KKpsk0_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625424595376448ec2517751fb29003363a17cb6d53130cc3125c606 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466b72308d275634efa109eaf94f98070fefad6378fa12be3916c5d msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=8bf212c1518bfc1bcb836c5fe6f669aff33ac43ef009c4a8ec7276ccd7fd1e msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=ff7971613fb38b2ceff9e02ab8bbef225ec3cf67b862f6edd347d64868d589 handshake=Noise_KKpsk1_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662546ce1b92921238f610b819d25ee0e9a4161cfae2e38cb26b28809 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466d2b19549f76d4caa90b4f153ed8bf441a8a8ee9d18587bb6f6d0 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=0f0c4ac1a0669c88f81275a19747e2947aafe72519b9f9acf69a1853369b81 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=5cb84c8fb19d854105cdccfcf0d69f4b2022e872c1a8825fa459a8da32c574 handshake=Noise_KKpsk2_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662543127c95b934bb1414f31387bd610396d2cc4f94ea7aa7135f8dc msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846662111f0c62246c844c4f136c97d8afb760c73f285dcb7f366545 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=a6a1cea393611538d818a6e0ad35dba2df91c82dc22142061d38de575a1be8 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=850511dc2048fec84f31a5ddbbacc370f515c762a439bc4064953b3a60d1c3 handshake=Noise_NX_25519_AESGCM_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484664c97f89674eace3b56f9d5fb417a8ff75418944771131814c57a29365b15b48bca3f3ce4a7f4e53112bf6ef3bdf7f964a0cfd9784f9efcd4c52a446c50c555a7 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=2ea99baffa3692333bc13d7af3e454bf9acae4d796013d1ff35c0678ee84e7 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=789c1800de969242141310282d5b91629248bdf66631e3b45e7b8c2207ff89 handshake=Noise_NXpsk0_25519_AESGCM_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254ab929c145cf0c1c676452b550524b5e8 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846637d8b8996a822fcfe7e5b0d643443ffdc9ede527b1163f4b0dc6daf2322831ceefd299f1510d6504b291d8bcd98ff5cd96ce4ce180517d440d58c057749bee68 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=38a8c7da03d0c27bfe3051c07c463722d336ebac343c864773be3b5b559f72 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=6e6cb9df11c3f09dd93c34bf894ab97f1a0375ffe48719f83e201d35a9ecfd handshake=Noise_NXpsk1_25519_AESGCM_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625482eadd90b062837066000cd5e2896e72 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484663f756d65f4f5ee577e6b0d67d96f7aa2ff3ceb944f3abaf9587b4fa8511edd9ec6cf250413b660aa38b93a65f8e4acaf51406c51b75d4b6622e81c30e4bf5f7e msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=ccfd7afc1ab48b43dc8768ee6912d7e72799002904654b41f797d7c3f88e09 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=743635953fe8aef503710cdc126dbe837a53d24ab0413f469f720689f7cbfe handshake=Noise_NXpsk2_25519_AESGCM_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254407912b4ed86d5812b6b2d9d6c0c9e33 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846628135288ad23fb032bc1ee5c922fbfe7fbb69668b9480571f36552e43984d6c7fbb160a0867a8e086fb093630e10460ccdf5e0b7f7135bb5871b31518976d993 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=92eb54dd636d5ca48c96325fecb8b92b31a40cad65edca5c6602fbf71f4397 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=d13070af6c2bac6cc30637e54b8fe2ed1a5030c624e4b691c9fdd2e4c42ae2 handshake=Noise_NX_25519_AESGCM_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484664c97f89674eace3b56f9d5fb417a8ff75418944771131814c57a29365b15b48b2a593850eb6e640bdf72e859d3e6d378a72eb960dcbbb05601c67d08ca00bcf0d473e958a30b311e179a msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=2ea99baffa3692333bc13d7af3e454bf9acae4d796013d1ff35c0678ee84e7 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=789c1800de969242141310282d5b91629248bdf66631e3b45e7b8c2207ff89 handshake=Noise_NXpsk0_25519_AESGCM_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254bc226ac1952daf37daccafd280d738f198a8829e1fcbd4be1c95 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846637d8b8996a822fcfe7e5b0d643443ffdc9ede527b1163f4b0dc6daf2322831ce525bf68b693695fba0cc6e523a646896093271a3cb9c1ed45414b7cf0f501cc694dd21e19994b7181d27 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=38a8c7da03d0c27bfe3051c07c463722d336ebac343c864773be3b5b559f72 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=6e6cb9df11c3f09dd93c34bf894ab97f1a0375ffe48719f83e201d35a9ecfd handshake=Noise_NXpsk1_25519_AESGCM_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254561fea27227285c680b595365022f8742ce5869972e379fa1b8a msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484663f756d65f4f5ee577e6b0d67d96f7aa2ff3ceb944f3abaf9587b4fa8511edd9e1a721a420612fbd0c23865f4bfbca2ec8930db64dacc0b33e0b529391699f00e32e8524ab9ac3e59e4f9 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=ccfd7afc1ab48b43dc8768ee6912d7e72799002904654b41f797d7c3f88e09 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=743635953fe8aef503710cdc126dbe837a53d24ab0413f469f720689f7cbfe handshake=Noise_NXpsk2_25519_AESGCM_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625406509ecaf4beb0e75208c257af685179db7a99e146ed89d8e60a msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846628135288ad23fb032bc1ee5c922fbfe7fbb69668b9480571f36552e43984d6c7fd154ee04b21546f594953ca8d7753ace88e3c6d9dc176114056980d5c6ffe52778163ff1e4fe114605c msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=92eb54dd636d5ca48c96325fecb8b92b31a40cad65edca5c6602fbf71f4397 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=d13070af6c2bac6cc30637e54b8fe2ed1a5030c624e4b691c9fdd2e4c42ae2 handshake=Noise_NX_25519_AESGCM_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484664c97f89674eace3b56f9d5fb417a8ff75418944771131814c57a29365b15b48b79b4c07534af976280cbab579afc3f9cd0526a61d1adc06ef7359cf6e64ede9d msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=2ea99baffa3692333bc13d7af3e454bf9acae4d796013d1ff35c0678ee84e7 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=789c1800de969242141310282d5b91629248bdf66631e3b45e7b8c2207ff89 handshake=Noise_NXpsk0_25519_AESGCM_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254e2cead811ebab45234d6015348300217 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846637d8b8996a822fcfe7e5b0d643443ffdc9ede527b1163f4b0dc6daf2322831ceb8bdffc1fb9e2f056f5924ddb7a079c5d7a0dd8ba258a660986cda0b0fb82865 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=38a8c7da03d0c27bfe3051c07c463722d336ebac343c864773be3b5b559f72 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=6e6cb9df11c3f09dd93c34bf894ab97f1a0375ffe48719f83e201d35a9ecfd handshake=Noise_NXpsk1_25519_AESGCM_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254f39bc63b0a4dd6191e4289f80a68c16f msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484663f756d65f4f5ee577e6b0d67d96f7aa2ff3ceb944f3abaf9587b4fa8511edd9e719735f519b112f0f590ca884ba289f8b8977d3a36530e5d79baf821cace360a msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=ccfd7afc1ab48b43dc8768ee6912d7e72799002904654b41f797d7c3f88e09 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=743635953fe8aef503710cdc126dbe837a53d24ab0413f469f720689f7cbfe handshake=Noise_NXpsk2_25519_AESGCM_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541c3f341235ad4e85cdfff4007e328673 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846628135288ad23fb032bc1ee5c922fbfe7fbb69668b9480571f36552e43984d6c72b962f3774ebc05cb6d6810641c40c14ac72883a7bf88a59f7f771d54e9f978e msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=92eb54dd636d5ca48c96325fecb8b92b31a40cad65edca5c6602fbf71f4397 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=d13070af6c2bac6cc30637e54b8fe2ed1a5030c624e4b691c9fdd2e4c42ae2 handshake=Noise_NX_25519_AESGCM_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484664c97f89674eace3b56f9d5fb417a8ff75418944771131814c57a29365b15b48befea2db797f55a7ad5a71d072c64f323a72eb960dcbbb05601c6ca9847c52cb0cd36528e3c656343f4b6 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=2ea99baffa3692333bc13d7af3e454bf9acae4d796013d1ff35c0678ee84e7 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=789c1800de969242141310282d5b91629248bdf66631e3b45e7b8c2207ff89 handshake=Noise_NXpsk0_25519_AESGCM_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254bc226ac1952daf37dacce78ea0cfd6b5afe05702919e81f51f7a msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846637d8b8996a822fcfe7e5b0d643443ffdc9ede527b1163f4b0dc6daf2322831cecb38d9a801b214d126a66f637984d09c093271a3cb9c1ed4541471b1923c474467a450d3dc13d7be7bb4 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=38a8c7da03d0c27bfe3051c07c463722d336ebac343c864773be3b5b559f72 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=6e6cb9df11c3f09dd93c34bf894ab97f1a0375ffe48719f83e201d35a9ecfd handshake=Noise_NXpsk1_25519_AESGCM_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254561fea27227285c680b5754de721d3c3568396f3d10ccc48ea7f msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484663f756d65f4f5ee577e6b0d67d96f7aa2ff3ceb944f3abaf9587b4fa8511edd9eb6b62b52923328c4a7cf9daf752282f58930db64dacc0b33e0b5eed6945d0bb7b4809f6caaeb6e5d03d4 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=ccfd7afc1ab48b43dc8768ee6912d7e72799002904654b41f797d7c3f88e09 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=743635953fe8aef503710cdc126dbe837a53d24ab0413f469f720689f7cbfe handshake=Noise_NXpsk2_25519_AESGCM_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625406509ecaf4beb0e752085be87b067f55e9c0d7500f9b4e626a18 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846628135288ad23fb032bc1ee5c922fbfe7fbb69668b9480571f36552e43984d6c749a43f9525b52730c1483dc2d4f707c9e88e3c6d9dc176114056694fa32638eda14593e6fefc5c276cda msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=92eb54dd636d5ca48c96325fecb8b92b31a40cad65edca5c6602fbf71f4397 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=d13070af6c2bac6cc30637e54b8fe2ed1a5030c624e4b691c9fdd2e4c42ae2 handshake=Noise_KX_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846645f7f537bba7b00980084360bc2a659d49462e51c7aac16f5974c5fcc3abd6f05f7ed6592d8f264aa7f21684cad38af385cfe03524ba2327236490bf28542d7f msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=42b90acd27dcf671c7d1f62b4ecceb4825c5ce3bd8c44f5957ef56822bf50f msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=45ddb566084ceec6fc0adc2e814ff0c6d07ae69e7248f0551c198b71a0d783 handshake=Noise_KXpsk0_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548544e4275a97c99ec7854f30013ee77f msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466a61295b2a49e6bd40fc40e1a1f28ac34130cac3377f7343efb28e1b707a2299659cb923f1f226e2978fd4733e78a8223a7a694eaeac15deff1b257a8ffd29d2c msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=422e6f132671f31c057aa12609a08e6b971f81cd27be000592cd40301af11e msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=55484c7bd5558711b44c2a32e603b34964dc0e927db52282255636934440f0 handshake=Noise_KXpsk1_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254e9b221e00cdcbb650b72e970ff83babb msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466d0f71c06a5716d87cbb5d97a45053222a6d60e07a582ce9dce1155d4fcaa192fb519550ab9024a779c2636ab49bf3ba56dab990ce321a23b1280c59bce5ce4dd msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=a2c799c936e5eba4d7d21ac769ae2a887414f8f9b3d2220952f64ca948411d msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=4947d1bc4ccf44d845765ed79859094e2bf493b78c605ae3be52e5c4a03173 handshake=Noise_KXpsk2_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254b7d1ddd1aca55c78b5120a7f4cf4d092 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466e441b3d7203d59162fdf03aecb1e9abc3fc65c102f49d381190d2ce7d9396fb02c53f0a687a80ff806d2c1953981b2023b75750f4a37944f1938b03cdf278b9b msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=fd13dbc237f374adb0ecb695c24ad344784f57393b09efafe0aef543a510ff msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=76e66c4f498fccd441d67019c0e9274449c9c2711054daa2dc1ad1b2e302c9 handshake=Noise_KX_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846645f7f537bba7b00980084360bc2a659d49462e51c7aac16f5974c5fcc3abd6f0d0784ff6a1efe6404d97729b19faf7bf96e2147355ad9eae84ed96d9b0276e18f4c96d3a563f50dd6bc6 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=42b90acd27dcf671c7d1f62b4ecceb4825c5ce3bd8c44f5957ef56822bf50f msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=45ddb566084ceec6fc0adc2e814ff0c6d07ae69e7248f0551c198b71a0d783 handshake=Noise_KXpsk0_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254b006bf285e1cc8449eefb4803696a072f96625e392032412ac7b msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466a61295b2a49e6bd40fc40e1a1f28ac34130cac3377f7343efb28e1b707a22996043e592d42da12d8eecdd160890c22ca8ee70aa30463a615c058d6e9c5a3740a312c13c8ee955dcdf6cc msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=422e6f132671f31c057aa12609a08e6b971f81cd27be000592cd40301af11e msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=55484c7bd5558711b44c2a32e603b34964dc0e927db52282255636934440f0 handshake=Noise_KXpsk1_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662540fe2a78085f7d670d1705b765c61bda640f638b04934aff5d2df msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466d0f71c06a5716d87cbb5d97a45053222a6d60e07a582ce9dce1155d4fcaa192ffd8284d74683b696a160b63590b75addda2fa2fffc3c20e6b1b1a6239f770840ffc3245f7e0bac0b134b msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=a2c799c936e5eba4d7d21ac769ae2a887414f8f9b3d2220952f64ca948411d msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=4947d1bc4ccf44d845765ed79859094e2bf493b78c605ae3be52e5c4a03173 handshake=Noise_KXpsk2_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548908a58a36d8dc3bee25fb17d21656ca9d006c84e231e9391a54 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466e441b3d7203d59162fdf03aecb1e9abc3fc65c102f49d381190d2ce7d9396fb09b82de351bf3309dcc311af9eaf338c126bfd57f36960aa25616ae53b38a2081e943aeed082c3d3a00a4 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=fd13dbc237f374adb0ecb695c24ad344784f57393b09efafe0aef543a510ff msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=76e66c4f498fccd441d67019c0e9274449c9c2711054daa2dc1ad1b2e302c9 handshake=Noise_KX_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846645f7f537bba7b00980084360bc2a659d49462e51c7aac16f5974c5fcc3abd6f008d091837372254d9904e61d91b53baa4e6613a4a57cf930b2e4fc137a1f8a0f msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=42b90acd27dcf671c7d1f62b4ecceb4825c5ce3bd8c44f5957ef56822bf50f msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=45ddb566084ceec6fc0adc2e814ff0c6d07ae69e7248f0551c198b71a0d783 handshake=Noise_KXpsk0_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541e114d4616248178fa6a52bebfa79fb8 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466a61295b2a49e6bd40fc40e1a1f28ac34130cac3377f7343efb28e1b707a22996e0565a8630f96f31796cd72f87e78d69075097a2f17b4f37a7945a2bdea2ceef msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=422e6f132671f31c057aa12609a08e6b971f81cd27be000592cd40301af11e msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=55484c7bd5558711b44c2a32e603b34964dc0e927db52282255636934440f0 handshake=Noise_KXpsk1_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254d57e59a6963d53021f5bfcd757ae8b39 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466d0f71c06a5716d87cbb5d97a45053222a6d60e07a582ce9dce1155d4fcaa192fa0d104f5bc8e28c5f959f1a55333a948ba80cbdebd704e58e1f6b05d8eff2ba1 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=a2c799c936e5eba4d7d21ac769ae2a887414f8f9b3d2220952f64ca948411d msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=4947d1bc4ccf44d845765ed79859094e2bf493b78c605ae3be52e5c4a03173 handshake=Noise_KXpsk2_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541326b4b1cbb8a627c7e589b8c8fdcc16 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466e441b3d7203d59162fdf03aecb1e9abc3fc65c102f49d381190d2ce7d9396fb05b27cd488484ecb9437e1737a38fc727b7010d60deda8b391d9d0f72d20d5c75 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=fd13dbc237f374adb0ecb695c24ad344784f57393b09efafe0aef543a510ff msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=76e66c4f498fccd441d67019c0e9274449c9c2711054daa2dc1ad1b2e302c9 handshake=Noise_KX_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846645f7f537bba7b00980084360bc2a659d49462e51c7aac16f5974c5fcc3abd6f09af46abfbaeb6c9a0231e7469a859de896e2147355ad9eae84ed9a52883bed02d1ec49e1ae5ca88674a2 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=42b90acd27dcf671c7d1f62b4ecceb4825c5ce3bd8c44f5957ef56822bf50f msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=45ddb566084ceec6fc0adc2e814ff0c6d07ae69e7248f0551c198b71a0d783 handshake=Noise_KXpsk0_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254b006bf285e1cc8449eef9d8fc5d2f9c711e1987b7781167bbce8 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466a61295b2a49e6bd40fc40e1a1f28ac34130cac3377f7343efb28e1b707a22996c8d1923fde7f66216702d15a384adb718ee70aa30463a615c058779d93896d68e450351480fe181da78d msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=422e6f132671f31c057aa12609a08e6b971f81cd27be000592cd40301af11e msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=55484c7bd5558711b44c2a32e603b34964dc0e927db52282255636934440f0 handshake=Noise_KXpsk1_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662540fe2a78085f7d670d1700d3c687f29c6956ddd271352b018d110 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466d0f71c06a5716d87cbb5d97a45053222a6d60e07a582ce9dce1155d4fcaa192fb691b582e5aad280c365586d54fb8d21da2fa2fffc3c20e6b1b1e333d00ab6b0bdd0ce17e547e8763bbc msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=a2c799c936e5eba4d7d21ac769ae2a887414f8f9b3d2220952f64ca948411d msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=4947d1bc4ccf44d845765ed79859094e2bf493b78c605ae3be52e5c4a03173 handshake=Noise_KXpsk2_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548908a58a36d8dc3bee258dc3cc2bff1ebac4572450a310136fee msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466e441b3d7203d59162fdf03aecb1e9abc3fc65c102f49d381190d2ce7d9396fb0e670c75a1572c5ed4b7c4e18d7163a1226bfd57f36960aa25616a6fb8b27806eb6782f97b72d49760bed msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=fd13dbc237f374adb0ecb695c24ad344784f57393b09efafe0aef543a510ff msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=76e66c4f498fccd441d67019c0e9274449c9c2711054daa2dc1ad1b2e302c9 handshake=Noise_XN_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466b7d8187d170dc771df11b75334183868 msg_2_payload= msg_2_ciphertext=486ffb188e214980067c5ce19591b4f1b1497b971e30ec91d31bd5c18b2373eac8edba0652ee3830483af64f81eacbe644efedbbd6c6734d1aa3f9c1461a8576 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=226c1a7a3eb2ff97ae113d905d56489f5e91b56ad36d333552fdac29ff293b msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=5569f84032223b1fcb28d9def11fc807b8225089859bc49d3a44662b5bc6c5 handshake=Noise_XNpsk0_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662540b4e435539b8778fc984a53142ed1d34 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466b4d4b525b6a1fe1a4464adbff47ccec3 msg_2_payload= msg_2_ciphertext=deb852db81c970c53f0a9a457e8b31cb53509a146199636fcd465c9eebac538ef5ec27d761da511083aae47bc8ec9960bf67814876f646456759f6eec5d88c6c msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=0b8b61050fed8c393461e28e7173106096d992680a0a8fca2c5bec37cf37cf msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=9ad22402add33878374568727e1dba89ed39b3a7f35cd144b7caa45785aee7 handshake=Noise_XNpsk1_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662540e408809b80401244941dccac4134cce msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484660b85c6e758641aea77c2ad7f6144cad0 msg_2_payload= msg_2_ciphertext=332d57a13424aceba27618d8fe8b6de96775b8398e39238994a737fe68fa680962032e627ce9923882a92f67c0200ea13206085252dcc1647aefb4ecbdedda58 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=8e7251e6b6625a32bf85fac6b5e34f833254989fc5aa63cf11fa032af49245 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=f05530f84856a293384329c4ce0f0798bc4410a52046d7edfdd4d2ec05948f handshake=Noise_XNpsk2_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662545477d3a3ba67a624953cebab6b281d08 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466e071471a5398a3bd50445adca4df941e msg_2_payload= msg_2_ciphertext=027fe3c8ca06bd4f6e10c6388005c09ce6c0f4b298ab7f3a15c158c15337d93773846a9cd490ea54b678e1ffd60fe5012ddb586af2f165ae0cb7170dc06346c6 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=e9acbdf9ffd865c840598217601d320c40073cc16cd7ab5e106c4d37d26987 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=3f7a01de8c7b17dc99849ff8fa6aa8c6b8c43f6ce86203d745ef09c6c010b2 handshake=Noise_XNpsk3_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662543f6a7217dc75ca41c3911066ee0c5906 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846681afbb042c41e679d53667fd78ea7e5d msg_2_payload= msg_2_ciphertext=e506abe8229dce20fb1e15484b101bff86d8d5431f6c63f434ee31d67021a62a943306cd45edf878bc45efc723919fa751dfae61f5b3180d8202fe6efaaddd63 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=ce3255a6c24fb66e413c8543cb8f09d97f1750639337c5c322fbf37a2cd501 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=d96d7282e64170d7fc4074bca3d778f7f165116cf28fe5e74fa7b330e7e400 handshake=Noise_XN_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484660f377bb64185a9cf7ce1e379602e74ba38c07c1c2a026e64c5c0 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=486ffb188e214980067c5ce19591b4f1b1497b971e30ec91d31bd5c18b2373ea0643c46b29a4dde3164a69a808d90fc150d900caad0def5ed10015cb05452802c0bcfc5bfba885906427 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=226c1a7a3eb2ff97ae113d905d56489f5e91b56ad36d333552fdac29ff293b msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=5569f84032223b1fcb28d9def11fc807b8225089859bc49d3a44662b5bc6c5 handshake=Noise_XNpsk0_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541f57ad03ee30a67ff8595ba7dfaec76aff61a89df1685273c8f9 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466335cb281f418f7ba439a5c4908155e68796ecca86a44354e6302 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=deb852db81c970c53f0a9a457e8b31cb53509a146199636fcd465c9eebac538ee70af9fc35a0bd839e0fbbceb2ceb941e19257a7b6f06c69994a69538ef20315caef2035d664312e94a8 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=0b8b61050fed8c393461e28e7173106096d992680a0a8fca2c5bec37cf37cf msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=9ad22402add33878374568727e1dba89ed39b3a7f35cd144b7caa45785aee7 handshake=Noise_XNpsk1_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662542c69b0ed12a80ca70a0fe657a10cb63cd99468f1acbd8224dd3a msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466305a1f920e8c82b47fa496c53a37ca8b20b660ee4b0773293763 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=332d57a13424aceba27618d8fe8b6de96775b8398e39238994a737fe68fa6809a3f1b6876708addc7a53f4ebef97a9c3b6452c76d8dfe69b69b7e66522dbabb18e487eef49646e903148 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=8e7251e6b6625a32bf85fac6b5e34f833254989fc5aa63cf11fa032af49245 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=f05530f84856a293384329c4ce0f0798bc4410a52046d7edfdd4d2ec05948f handshake=Noise_XNpsk2_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662543247f4ea8236ed9947cc1415f9206c59465f532b848a94591cc9 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c40676ef641ec2b2b6fa7e9334283fdd4229bed03af0d6e991ca msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=027fe3c8ca06bd4f6e10c6388005c09ce6c0f4b298ab7f3a15c158c15337d937872b1ede7375d1ad8ea688f5c5b9beadd1213591f5456e0c3dc7f839a6dade8a748b51a74090cb670467 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=e9acbdf9ffd865c840598217601d320c40073cc16cd7ab5e106c4d37d26987 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=3f7a01de8c7b17dc99849ff8fa6aa8c6b8c43f6ce86203d745ef09c6c010b2 handshake=Noise_XNpsk3_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662544892c27a1b4e4768d4e362aac34f05fdad78747fc1cce5c6e338 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466612e19645b49e373cff7e818c5721ae3c024a618d2d66b2e5d18 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=e506abe8229dce20fb1e15484b101bff86d8d5431f6c63f434ee31d67021a62aeb922a2abac14eecd904de08848e215259172644930ac13ed24d67d1916560d540a7b1ca02a6b926819d msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=ce3255a6c24fb66e413c8543cb8f09d97f1750639337c5c322fbf37a2cd501 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=d96d7282e64170d7fc4074bca3d778f7f165116cf28fe5e74fa7b330e7e400 handshake=Noise_XN_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484669d3c26f842cdf05230729fc44c7a617c msg_2_payload= msg_2_ciphertext=486ffb188e214980067c5ce19591b4f1b1497b971e30ec91d31bd5c18b2373eac5b11685a2f87b7ac31c1a4b49778680d8620b814c325c89cf286565822004aa msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=226c1a7a3eb2ff97ae113d905d56489f5e91b56ad36d333552fdac29ff293b msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=5569f84032223b1fcb28d9def11fc807b8225089859bc49d3a44662b5bc6c5 handshake=Noise_XNpsk0_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c44b17b7d0bf45d77e5f96b055ab6fe9 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466eadbd5bfbb94389829adc583de19d424 msg_2_payload= msg_2_ciphertext=deb852db81c970c53f0a9a457e8b31cb53509a146199636fcd465c9eebac538ee6bff14bc3846ad6f76e5e0a90bbc6dd7960a92ae9c64e42a2eb40900a6f4cd5 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=0b8b61050fed8c393461e28e7173106096d992680a0a8fca2c5bec37cf37cf msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=9ad22402add33878374568727e1dba89ed39b3a7f35cd144b7caa45785aee7 handshake=Noise_XNpsk1_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254b2097565e2f0b03f343ad91768d3314e msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484669fc5e675e71a75698278b4300d53e87b msg_2_payload= msg_2_ciphertext=332d57a13424aceba27618d8fe8b6de96775b8398e39238994a737fe68fa6809311fb0f9264244e60cb48b4b6058629f30afa9f509bbd838d24ef120770e1cc8 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=8e7251e6b6625a32bf85fac6b5e34f833254989fc5aa63cf11fa032af49245 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=f05530f84856a293384329c4ce0f0798bc4410a52046d7edfdd4d2ec05948f handshake=Noise_XNpsk2_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662547ffc3fa91240b5932693ed3b9db99d7c msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484660acd02cb99ac2db8313b5182b3179b3b msg_2_payload= msg_2_ciphertext=027fe3c8ca06bd4f6e10c6388005c09ce6c0f4b298ab7f3a15c158c15337d93738742ee35f8cfbd59e125a8035b560c9f20867cc11dd0b27e4df6fa43326c234 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=e9acbdf9ffd865c840598217601d320c40073cc16cd7ab5e106c4d37d26987 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=3f7a01de8c7b17dc99849ff8fa6aa8c6b8c43f6ce86203d745ef09c6c010b2 handshake=Noise_XNpsk3_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254e6146b34b323c78f9818412261244901 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466f451ca4aecda85a294a53bce469d770d msg_2_payload= msg_2_ciphertext=e506abe8229dce20fb1e15484b101bff86d8d5431f6c63f434ee31d67021a62ac5c7fef3e518ee12feee90444548094aa9b60bfbc5d1e32de454077812a6e3c9 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=ce3255a6c24fb66e413c8543cb8f09d97f1750639337c5c322fbf37a2cd501 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=d96d7282e64170d7fc4074bca3d778f7f165116cf28fe5e74fa7b330e7e400 handshake=Noise_XN_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484660f377bb64185a9cf7ce16283bd3daf6d9c0ba6c497733575cc6c msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=486ffb188e214980067c5ce19591b4f1b1497b971e30ec91d31bd5c18b2373ea663e0df03962627965e5fcaa901f5dff50d900caad0def5ed1006938800ab47acddce47a5db586f73fc5 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=226c1a7a3eb2ff97ae113d905d56489f5e91b56ad36d333552fdac29ff293b msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=5569f84032223b1fcb28d9def11fc807b8225089859bc49d3a44662b5bc6c5 handshake=Noise_XNpsk0_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541f57ad03ee30a67ff85978adde877f716279533e0a2229a4aab7 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466335cb281f418f7ba439abe510d34d9184008ae80207850403aa6 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=deb852db81c970c53f0a9a457e8b31cb53509a146199636fcd465c9eebac538ec7e4e29b1af4f63c31a16d9f340a38b8e19257a7b6f06c69994a70c8c156b8ebcaab740791146667087c msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=0b8b61050fed8c393461e28e7173106096d992680a0a8fca2c5bec37cf37cf msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=9ad22402add33878374568727e1dba89ed39b3a7f35cd144b7caa45785aee7 handshake=Noise_XNpsk1_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662542c69b0ed12a80ca70a0f8816914cd7fb3040fd3220ca32168832 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466305a1f920e8c82b47fa444a556e2e6905911b42f7d3f12eef8d1 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=332d57a13424aceba27618d8fe8b6de96775b8398e39238994a737fe68fa6809906b387fbc92454cb8e3ce80aa3ce2d1b6452c76d8dfe69b69b752a7b14c6e906bb630d10bfb0708286e msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=8e7251e6b6625a32bf85fac6b5e34f833254989fc5aa63cf11fa032af49245 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=f05530f84856a293384329c4ce0f0798bc4410a52046d7edfdd4d2ec05948f handshake=Noise_XNpsk2_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662543247f4ea8236ed9947cc4a8d0fece6a150beb0461a04c507ad2f msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c40676ef641ec2b2b6faec1bf71f0b73312bd4d55c65fb531c84 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=027fe3c8ca06bd4f6e10c6388005c09ce6c0f4b298ab7f3a15c158c15337d93775dc62f002272f6904411b71bd08dbc6d1213591f5456e0c3dc79ac833bef0e945cd83a245502521d272 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=e9acbdf9ffd865c840598217601d320c40073cc16cd7ab5e106c4d37d26987 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=3f7a01de8c7b17dc99849ff8fa6aa8c6b8c43f6ce86203d745ef09c6c010b2 handshake=Noise_XNpsk3_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662544892c27a1b4e4768d4e3f54bce40707a191b272b69140d3400f9 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466612e19645b49e373cff732ad5876325b056b774da6e2856fcc76 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=e506abe8229dce20fb1e15484b101bff86d8d5431f6c63f434ee31d67021a62a5274f6f82b572bcc2ccc52af86d6615c59172644930ac13ed24d153f267d66d2b3dcb2236a3719f343bf msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=ce3255a6c24fb66e413c8543cb8f09d97f1750639337c5c322fbf37a2cd501 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=d96d7282e64170d7fc4074bca3d778f7f165116cf28fe5e74fa7b330e7e400 handshake=Noise_IN_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548f40c5adb68f25624ae5b214ea767a6ec94d829d3d7b5e1ad1ba6f3e2138285f msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466659213d4ce7051561fa9c93bb500a945 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=19a1c0a20452d8a44b7254cab212c1ff1098a0651a73ab58812290a0d9baee msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=01c7222fc0c22585ce1032e012d225e0fc53213dabde8f5dfc15ea2f5173ea handshake=Noise_INpsk0_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625426df4f9c2999bafe403964ea11975f86af2d3f459ca54211b55e0b49a37beb70989b57c41d71288d7a645427e31f0cb2dcbb4db539c677da4af178d31053d13a msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466fc20123316e7891f44ad163404fe4a4c msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=84725e6c75c8c0b1b97c0e28ee7b19b576c6a60866bd79dd3131d5ee51c24b msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=8590802179dc26ea74bfc6a974cf1ff0e3b2873d1d35056fd1ff7864f9a644 handshake=Noise_INpsk1_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625481808305f9d7b92b5ea8b8862b86f62c20567a3bd4dc220e0ccf2fc62558f235f4678aaae2b806b4a90aae519295ec01a41b4407fe9d17f084c2ddda16124140 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846663791a12da21572632f46c02df0a7406 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=84f2db9466d00f52a3fc9f0ee6c04d3424921a32d74e43ab7b257e2df0dcbe msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=7770c9796a35e3e0d64d35adc860ce54d86eebe105e3755636ae56b0e5fa08 handshake=Noise_INpsk2_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625441fcbd1030f49b2f467e42d08b039c8155bf36a93cf9933e2a8e39f0f0b5c49eaef35880826277e28a79b5eef2b86e0128f1343d8389fca6107a00d2091138bb msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466b53337b2ea8b7ee8ddf33c94e6759ac2 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=ce2558df09ff72b190aeae3894c7a7c1151a9b52117ee855995f2695ce43ec msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=8eb7770ec52590ee4f3803a3872fc02a6587d149f84deef14fb72ebd4d5316 handshake=Noise_IN_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548f40c5adb68f25624ae5b214ea767a6ec94d829d3d7b5e1ad1ba6f3e2138285f746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466711652c1b7ae42adf79af77d71534b43a53dcf922ba05ae2ac7b msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=19a1c0a20452d8a44b7254cab212c1ff1098a0651a73ab58812290a0d9baee msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=01c7222fc0c22585ce1032e012d225e0fc53213dabde8f5dfc15ea2f5173ea handshake=Noise_INpsk0_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625426df4f9c2999bafe403964ea11975f86af2d3f459ca54211b55e0b49a37beb70989b57c41d71288d7a645427e31f0cb232047a7659ec1068a88fe5cb7ea21be467b78d47b7baaa05dd34 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484667981f9efb8ad730403563a2f5370ba187c5246e8c27ada9bf8cd msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=84725e6c75c8c0b1b97c0e28ee7b19b576c6a60866bd79dd3131d5ee51c24b msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=8590802179dc26ea74bfc6a974cf1ff0e3b2873d1d35056fd1ff7864f9a644 handshake=Noise_INpsk1_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625481808305f9d7b92b5ea8b8862b86f62c20567a3bd4dc220e0ccf2fc62558f235f4678aaae2b806b4a90aae519295ec01ba8237f6d9105d8c7474d97f153c5ecfabcef174ccba4e2a9bb3 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466a4757a7db35fc286d20a61dd38f374ceecfa44f66620f277856c msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=84f2db9466d00f52a3fc9f0ee6c04d3424921a32d74e43ab7b257e2df0dcbe msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=7770c9796a35e3e0d64d35adc860ce54d86eebe105e3755636ae56b0e5fa08 handshake=Noise_INpsk2_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625441fcbd1030f49b2f467e42d08b039c8155bf36a93cf9933e2a8e39f0f0b5c49eaef35880826277e28a79b5eef2b86e01c6a207bd5e919c675a0d17f7e14db1a8f0e8579e6b1d2e095981 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484668a013bee4be51ef49d047f6d038c5a2b395957690fabaaf40d07 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=ce2558df09ff72b190aeae3894c7a7c1151a9b52117ee855995f2695ce43ec msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=8eb7770ec52590ee4f3803a3872fc02a6587d149f84deef14fb72ebd4d5316 handshake=Noise_IN_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548f40c5adb68f25624ae5b214ea767a6ec94d829d3d7b5e1ad1ba6f3e2138285f msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466e7150a9dca189b7510ad6a70e6729e8a msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=19a1c0a20452d8a44b7254cab212c1ff1098a0651a73ab58812290a0d9baee msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=01c7222fc0c22585ce1032e012d225e0fc53213dabde8f5dfc15ea2f5173ea handshake=Noise_INpsk0_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625426df4f9c2999bafe403964ea11975f86af2d3f459ca54211b55e0b49a37beb70342f60d7e017a9e508697e93d78355b626535fa190a36dfeb02ac6a7fdbd31d4 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466caf39580058278ca5b56e3e092908720 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=84725e6c75c8c0b1b97c0e28ee7b19b576c6a60866bd79dd3131d5ee51c24b msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=8590802179dc26ea74bfc6a974cf1ff0e3b2873d1d35056fd1ff7864f9a644 handshake=Noise_INpsk1_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625481808305f9d7b92b5ea8b8862b86f62c20567a3bd4dc220e0ccf2fc62558f235ecc21fa53263c3bb8c5ea661ed2cf0737c66bc33295664c78a4aa3223be0f3fa msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484666a306aae194994874c7879ee8810f5a1 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=84f2db9466d00f52a3fc9f0ee6c04d3424921a32d74e43ab7b257e2df0dcbe msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=7770c9796a35e3e0d64d35adc860ce54d86eebe105e3755636ae56b0e5fa08 handshake=Noise_INpsk2_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625441fcbd1030f49b2f467e42d08b039c8155bf36a93cf9933e2a8e39f0f0b5c49e63b930768aafd11bace041ce31e6a2ec456951153dbc13db98f6e98ddeb32dbd msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846646c106fc6f2c865265abbb262b1bdbf6 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=ce2558df09ff72b190aeae3894c7a7c1151a9b52117ee855995f2695ce43ec msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=8eb7770ec52590ee4f3803a3872fc02a6587d149f84deef14fb72ebd4d5316 handshake=Noise_IN_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548f40c5adb68f25624ae5b214ea767a6ec94d829d3d7b5e1ad1ba6f3e2138285f746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466711652c1b7ae42adf79ab3dc343dc9ace7a3bfccac12de3d193e msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=19a1c0a20452d8a44b7254cab212c1ff1098a0651a73ab58812290a0d9baee msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=01c7222fc0c22585ce1032e012d225e0fc53213dabde8f5dfc15ea2f5173ea handshake=Noise_INpsk0_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625426df4f9c2999bafe403964ea11975f86af2d3f459ca54211b55e0b49a37beb70342f60d7e017a9e508697e93d78355b632047a7659ec1068a88ff75c4bc0591d93395bd4e06b6e8754e6 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484667981f9efb8ad730403567813ca21163470293e3c6fc41b4ff0b4 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=84725e6c75c8c0b1b97c0e28ee7b19b576c6a60866bd79dd3131d5ee51c24b msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=8590802179dc26ea74bfc6a974cf1ff0e3b2873d1d35056fd1ff7864f9a644 handshake=Noise_INpsk1_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625481808305f9d7b92b5ea8b8862b86f62c20567a3bd4dc220e0ccf2fc62558f235ecc21fa53263c3bb8c5ea661ed2cf073ba8237f6d9105d8c74744d93349fc84b57b4fc980737d4759e01 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466a4757a7db35fc286d20a1fcad775e56c67beb054c7f519c576d3 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=84f2db9466d00f52a3fc9f0ee6c04d3424921a32d74e43ab7b257e2df0dcbe msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=7770c9796a35e3e0d64d35adc860ce54d86eebe105e3755636ae56b0e5fa08 handshake=Noise_INpsk2_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625441fcbd1030f49b2f467e42d08b039c8155bf36a93cf9933e2a8e39f0f0b5c49e63b930768aafd11bace041ce31e6a2ecc6a207bd5e919c675a0d4c6555c46b7ad60a6449338078640754 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484668a013bee4be51ef49d04e4373184dee4d8c2281669b66728d233 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=ce2558df09ff72b190aeae3894c7a7c1151a9b52117ee855995f2695ce43ec msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=8eb7770ec52590ee4f3803a3872fc02a6587d149f84deef14fb72ebd4d5316 handshake=Noise_XK_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254d7fcb95d9da87e0af29cde0d6a5f287b msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466800ac1687176d90bc6dbdf12863c0537 msg_2_payload= msg_2_ciphertext=92d38f089b41f951d834dddd45dbe5578c4021370d7e1a9478a94746309363a29763127dc08fe1cb8dc065082573ee096c7dc4e1c36837953f4916fc7b19dd03 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=2415b54e0f4f9843d8ef7a77448791fbb4c3c1335e88c0fc9f0ca1a48996b4 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=3653f1a64137245561ea386294c3c0954715d3e1f4b85effccbe2d1c43475f handshake=Noise_XKpsk0_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625445c2cc340ab6003689ddce8eada9ceae msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466214e4e1d6596bc62ea7cd6275cddfc39 msg_2_payload= msg_2_ciphertext=969813a2bee54c8d740a7f931ccff98baa6416e7cb8508e45e71e9e3932508ace41c99953f1325ad580dcf7a989586edfa0b6ee8ef46e5463098f735198874ff msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=839b155ed75c4053ce6a815306226060349a013205fc9418aa2e5a05e37fa7 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=40dba082e6da9293e21b496c9e74c7978542ba104874a6331fe12168b67099 handshake=Noise_XKpsk1_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662543421b40e4c4da5824f33d5ed970d4c72 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466878d6a9f1192586ed358e91ee5cc1649 msg_2_payload= msg_2_ciphertext=8c1add204692080de004b0a79d901205d9ffbdbf7c23f1514c5ef9b3df2d4f71a9c91cc9c8ed052dbe6b8094ea588ec5cc703fc8be9632d41756df774ff82907 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=5700577bd6d3c9d2d1c0a2a5fed1c4de71869859a03099dfeb03bd981ace7d msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=2ec9ab876956dd0f236c33bca7c4b91ca0e3108a7c03f666bb04ef89e17d02 handshake=Noise_XKpsk2_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254b396f9a7b3a726986fab49e66bb7c0f4 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466d2ee8fa782dfe01926052719a57dbdfa msg_2_payload= msg_2_ciphertext=7c6c099d0438335855eeaa6c87ab89415079528c4d87469b62959bc66189837a43b24f63b056b84462dabb2d4be549a20f11a5bd4bcce092df24f07d4d69e22a msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=3fd3d739b18b4fc970e126c41893b2739f3d30b49d67035184b72dd87a838f msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=562d5785a73f04b43264dc1e800df65988cc7aeec98090a77f256c0dea1305 handshake=Noise_XKpsk3_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254d4aa8d15cf148942f35d8bdf1c9f2c05 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466bc0625a4f8b32dc5a768fd83880c493e msg_2_payload= msg_2_ciphertext=3f8f3799dfea7cd0b81bb96415f330d3e3f48ad1fc352c0b153cbbb230e97ab018a17ec22c9f3c5545f201227668b6536d82c4e45e3adfa8d4161327b89ca439 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=86042248607aea3d2a79be1388836b47969b9142baea780518c4c44e525d0a msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=7916c1051c9968838d6217df3ece55302168b2c76d4e69c7460e24535a50d9 handshake=Noise_XK_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254776fe5c02a96e95f6fc556ee66374ae786b903528d1b295d7522 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846676130dd92e35bd3dfea9939c3c01914d86fca24d8f05612dd2d7 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=92d38f089b41f951d834dddd45dbe5578c4021370d7e1a9478a94746309363a2485c5233cd0a9b22da8a2729920c6b3a9c61297320c75dc288dc9270fd8679c519e87538ecc20b18e9aa msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=2415b54e0f4f9843d8ef7a77448791fbb4c3c1335e88c0fc9f0ca1a48996b4 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=3653f1a64137245561ea386294c3c0954715d3e1f4b85effccbe2d1c43475f handshake=Noise_XKpsk0_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254098b5c955eb34a1b4c11491a1f25da104f9c12a6560e4a3a0200 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466b3fa1fabeefa5b4f170db9a8eaa1888997cd3da3b60c71ba397c msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=969813a2bee54c8d740a7f931ccff98baa6416e7cb8508e45e71e9e3932508acd7b63294dde8d5c5bbea7739f023f46211824e8ba66e2079622d5865f7db5720f0291f54435b44d00169 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=839b155ed75c4053ce6a815306226060349a013205fc9418aa2e5a05e37fa7 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=40dba082e6da9293e21b496c9e74c7978542ba104874a6331fe12168b67099 handshake=Noise_XKpsk1_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548b5ab168f947be648453704b3b95edcfd75bec637735a93a2fb2 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484661aa93bf01cd6e3e7f949ca31898cfa6d2556c8377ac6193d5cfd msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=8c1add204692080de004b0a79d901205d9ffbdbf7c23f1514c5ef9b3df2d4f711dcebb94fb27d3f54b01284f85fd7ef6037e46e0de1b083d799cca20dd026b4bd3773a7a117e4f9c5692 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=5700577bd6d3c9d2d1c0a2a5fed1c4de71869859a03099dfeb03bd981ace7d msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=2ec9ab876956dd0f236c33bca7c4b91ca0e3108a7c03f666bb04ef89e17d02 handshake=Noise_XKpsk2_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662545720b91a9dcab61c37b8814561cda01c19a5f7bfea89802537d1 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c8a84bf5a002e9e393ff048a9a6b9cf1f09d44b4aaa089d2640e msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=7c6c099d0438335855eeaa6c87ab89415079528c4d87469b62959bc66189837a0ead89bdd77510a4f3e8fd591d591345386ce238a665fe32d93ed7c485fab009e51b239ebcacf940abbe msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=3fd3d739b18b4fc970e126c41893b2739f3d30b49d67035184b72dd87a838f msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=562d5785a73f04b43264dc1e800df65988cc7aeec98090a77f256c0dea1305 handshake=Noise_XKpsk3_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254bf7b785a3e9cc3a60cfa3d1704700697f33e32e082282b754d78 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466a867c4b84b57de8e777468abbf7194d6daedca28b6a2122b1249 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=3f8f3799dfea7cd0b81bb96415f330d3e3f48ad1fc352c0b153cbbb230e97ab02b4a3292e06f079eeb610e5d7ac8438a1c93d192615dfb4da0b725cd90e7976e2f26faad75511b079923 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=86042248607aea3d2a79be1388836b47969b9142baea780518c4c44e525d0a msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=7916c1051c9968838d6217df3ece55302168b2c76d4e69c7460e24535a50d9 handshake=Noise_XK_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254dc4410806334bcafc02c5f0288cba55f msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466ae416864308a4715413b37adefce89bb msg_2_payload= msg_2_ciphertext=92d38f089b41f951d834dddd45dbe5578c4021370d7e1a9478a94746309363a227f611ff53b50b0d3218258cf499c7fd9e8957ea5c45de361b798573cedf448c msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=2415b54e0f4f9843d8ef7a77448791fbb4c3c1335e88c0fc9f0ca1a48996b4 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=3653f1a64137245561ea386294c3c0954715d3e1f4b85effccbe2d1c43475f handshake=Noise_XKpsk0_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254f48adffda573b586253f36b35ae765f6 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846609630930c7e2c7cde8bd1c87e650eba8 msg_2_payload= msg_2_ciphertext=969813a2bee54c8d740a7f931ccff98baa6416e7cb8508e45e71e9e3932508ac1fbd3cbb304e67b87c76c4e11c571046ba79b4fd1fc6b3d4ba4a5fc9b2077171 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=839b155ed75c4053ce6a815306226060349a013205fc9418aa2e5a05e37fa7 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=40dba082e6da9293e21b496c9e74c7978542ba104874a6331fe12168b67099 handshake=Noise_XKpsk1_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254ad3cb547b0f1ba018228d6d48b1302d6 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466363e99dcad427a100c62c4fca6743d44 msg_2_payload= msg_2_ciphertext=8c1add204692080de004b0a79d901205d9ffbdbf7c23f1514c5ef9b3df2d4f712c00e0a7262263bc0fa2f498110f3023d6d614065bd937c3dcc68aa42afb9f53 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=5700577bd6d3c9d2d1c0a2a5fed1c4de71869859a03099dfeb03bd981ace7d msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=2ec9ab876956dd0f236c33bca7c4b91ca0e3108a7c03f666bb04ef89e17d02 handshake=Noise_XKpsk2_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254d1b0d8db64424f07a17edfe37cd6ecbb msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484662600630bebba156d21b4352295cf1587 msg_2_payload= msg_2_ciphertext=7c6c099d0438335855eeaa6c87ab89415079528c4d87469b62959bc66189837a5300ba1f27066ab0f8ac8ff29be25d7e9e38b5a86438cc7efc8a58302284255a msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=3fd3d739b18b4fc970e126c41893b2739f3d30b49d67035184b72dd87a838f msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=562d5785a73f04b43264dc1e800df65988cc7aeec98090a77f256c0dea1305 handshake=Noise_XKpsk3_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c6abbd65f6352017e41b0526f935d4fa msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466f7e5ebfdda054bed9fe6a6234d6a7c2a msg_2_payload= msg_2_ciphertext=3f8f3799dfea7cd0b81bb96415f330d3e3f48ad1fc352c0b153cbbb230e97ab0d6f8f274d7ee267767e3e543ad1fbc4ec3ce0f6dd3939eb8a98e87dabbf62d75 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=86042248607aea3d2a79be1388836b47969b9142baea780518c4c44e525d0a msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=7916c1051c9968838d6217df3ece55302168b2c76d4e69c7460e24535a50d9 handshake=Noise_XK_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254776fe5c02a96e95f6fc57a9232ae7515f60452f85bcbe3e6f292 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846676130dd92e35bd3dfea9dcd8a750ba80f0fd88e6996bcee6f1c1 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=92d38f089b41f951d834dddd45dbe5578c4021370d7e1a9478a94746309363a278d070e8c58bf3524d8f197ab037fdcb9c61297320c75dc288dc39f19360875d6111c307664b3a0bf0ac msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=2415b54e0f4f9843d8ef7a77448791fbb4c3c1335e88c0fc9f0ca1a48996b4 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=3653f1a64137245561ea386294c3c0954715d3e1f4b85effccbe2d1c43475f handshake=Noise_XKpsk0_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254098b5c955eb34a1b4c110d747d4a36bf21cb8bc8c804f71c68f0 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466b3fa1fabeefa5b4f170d48ee6e86ab0f45624d5a3a909b3a9b11 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=969813a2bee54c8d740a7f931ccff98baa6416e7cb8508e45e71e9e3932508acc694f7a253f0ce275ea72ee17d008b7f11824e8ba66e2079622d9ef5fb46dc9543ea8892f8f24d34aaba msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=839b155ed75c4053ce6a815306226060349a013205fc9418aa2e5a05e37fa7 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=40dba082e6da9293e21b496c9e74c7978542ba104874a6331fe12168b67099 handshake=Noise_XKpsk1_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548b5ab168f947be648453c179b7a5f141728783b58a14c7856fbe msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484661aa93bf01cd6e3e7f949145e514380905712cb7cb7c81fdcc1b4 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=8c1add204692080de004b0a79d901205d9ffbdbf7c23f1514c5ef9b3df2d4f71a2ed70c8feada07998dbcdd38ca4a29a037e46e0de1b083d799cf6ab0c35ba161be8e6beb6a93c5e4dbc msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=5700577bd6d3c9d2d1c0a2a5fed1c4de71869859a03099dfeb03bd981ace7d msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=2ec9ab876956dd0f236c33bca7c4b91ca0e3108a7c03f666bb04ef89e17d02 handshake=Noise_XKpsk2_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662545720b91a9dcab61c37b8fdab24849c2062acdd29252d4b53b370 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c8a84bf5a002e9e393ffda17842e6b4e3cb0f50b0225f5fc489f msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=7c6c099d0438335855eeaa6c87ab89415079528c4d87469b62959bc66189837ae6e466d4af2f9686cb8df36fc22fd85f386ce238a665fe32d93e355fda6cff6b81c94b84931e25c047a9 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=3fd3d739b18b4fc970e126c41893b2739f3d30b49d67035184b72dd87a838f msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=562d5785a73f04b43264dc1e800df65988cc7aeec98090a77f256c0dea1305 handshake=Noise_XKpsk3_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254bf7b785a3e9cc3a60cfa1fae5337fa8886d55a06d82e213d5459 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466a867c4b84b57de8e7774f3198fd17a166131b3ecfd7ae59d1406 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=3f8f3799dfea7cd0b81bb96415f330d3e3f48ad1fc352c0b153cbbb230e97ab0608a59baf1cd8cbf237675a276c86abc1c93d192615dfb4da0b736a363083920a7853b3732d4aa37de18 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=86042248607aea3d2a79be1388836b47969b9142baea780518c4c44e525d0a msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=7916c1051c9968838d6217df3ece55302168b2c76d4e69c7460e24535a50d9 handshake=Noise_IK_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254a38fd17d3ecfc034b8662c49ba22d8558729800e0313b725febfb2ec77bd84a2bf740c07e5cfd9d0a2d377198bb3e525fa18b100686908255ea1150d9a8001ca msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484669f9a4611a8a2078190bdb54616a8918f msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=c69889e3504ff2c2199e28029aea578cd758b4214a3c8b83f92b5ee66670ef msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=36198b611040f132bd465de67099a9ddf9dfe3f23bd1f2d30c943b26c3fb5a handshake=Noise_IKpsk0_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254b9d7e098f29f8d60de3d6535f46b2d89cb9366382ef8243cbf9c650eab2dc27f01d46a576445054a4d2e2df4b1f220cce5e9325db888b8d29e5d8f4fd9a77fe0 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484663ebddc558f82c368423bc3e5e00700f2 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=116b1de8e063d67a8d8c5be83a7f444168b60447df326749434d22cf39ffb1 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=035f0315fdae44c8c718fa8509fc00c55ea3f4e322a500888874b90593f113 handshake=Noise_IKpsk1_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662540b5b9c6666fe0610f8de010548ef7b2c1ff9cfdcd2a35d7257c0f14cf6b65792b0e9536d43e2b8d36cf8ac0d1e756d4757cb9f9f3bdd55b5cfdb5954d3063844 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484660da82bcd895d1b8199ddcb12ab5ddfca msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=1cce3a32168d9494773586dbc7599e2c94e401f0936e3696e91b8a00209601 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=2f113c945e331cd45962508eee9d01907800a7b4f611d2d5264fdeb96a81ff handshake=Noise_IKpsk2_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662540193347cd7c4197ad710ce0f36a4c24fc4da2c0b271e51f178b900abb6361298e62d4d75c6fe9a49584fe9ca40f5cd5e60c071e7738477042185ec854f83b76e msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466af3fef0028d1964b618ae069d56fb155 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=1f941586981ee8e35546c4c825ae5b59f085ec1ac261c913667246bc609496 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=c7df30218d05a737fb405b7067cfd591d593d111fe1847d086ae37e806dda8 handshake=Noise_IK_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254a38fd17d3ecfc034b8662c49ba22d8558729800e0313b725febfb2ec77bd84a2bf740c07e5cfd9d0a2d377198bb3e525e9cee2fc198c757f297517fc5be735549e54d9d557fc96f7c5ff msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466bb139fe5e49c4d60a6ecd193505e01bdb218399d78150c11ce8d msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=c69889e3504ff2c2199e28029aea578cd758b4214a3c8b83f92b5ee66670ef msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=36198b611040f132bd465de67099a9ddf9dfe3f23bd1f2d30c943b26c3fb5a handshake=Noise_IKpsk0_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254b9d7e098f29f8d60de3d6535f46b2d89cb9366382ef8243cbf9c650eab2dc27f01d46a576445054a4d2e2df4b1f220ccbcbfc9a0cec566f4a3969cbd5264c8e59adf9c11031617ce7d24 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466f0e11f5f201496d65ded674476b0378052ce43ff98321c35654d msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=116b1de8e063d67a8d8c5be83a7f444168b60447df326749434d22cf39ffb1 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=035f0315fdae44c8c718fa8509fc00c55ea3f4e322a500888874b90593f113 handshake=Noise_IKpsk1_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662540b5b9c6666fe0610f8de010548ef7b2c1ff9cfdcd2a35d7257c0f14cf6b65792b0e9536d43e2b8d36cf8ac0d1e756d47c6cf8ace27084be59885bf4844fadfd9dfc1592f3179058ea7bc msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484660e207c946b72c6e772588dbd81244e6e87253cf9703c4156ed65 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=1cce3a32168d9494773586dbc7599e2c94e401f0936e3696e91b8a00209601 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=2f113c945e331cd45962508eee9d01907800a7b4f611d2d5264fdeb96a81ff handshake=Noise_IKpsk2_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662540193347cd7c4197ad710ce0f36a4c24fc4da2c0b271e51f178b900abb6361298e62d4d75c6fe9a49584fe9ca40f5cd5ea873d705aef61f8a6af29492c9e58fa7bc5094ff240e4edb4aa4 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466ee3ad6bce0a3efbf171d998ea2f0255498e25d9bce8287eb8da8 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=1f941586981ee8e35546c4c825ae5b59f085ec1ac261c913667246bc609496 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=c7df30218d05a737fb405b7067cfd591d593d111fe1847d086ae37e806dda8 handshake=Noise_IK_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254a38fd17d3ecfc034b8662c49ba22d8558729800e0313b725febfb2ec77bd84a2108f69d924cca3b15ef92569d7ec2cdd6548391e29b99f96e7b5a5091b8a9f93 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846657c9117c74762c3957ec726fa608e616 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=c69889e3504ff2c2199e28029aea578cd758b4214a3c8b83f92b5ee66670ef msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=36198b611040f132bd465de67099a9ddf9dfe3f23bd1f2d30c943b26c3fb5a handshake=Noise_IKpsk0_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254b9d7e098f29f8d60de3d6535f46b2d89cb9366382ef8243cbf9c650eab2dc27fbad3ba213848dbb944b7105fdd6ab12b7fe76265452d31ddd7f0f01fe0eec744 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484667f44a254be52605ed2a0053cc0650c99 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=116b1de8e063d67a8d8c5be83a7f444168b60447df326749434d22cf39ffb1 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=035f0315fdae44c8c718fa8509fc00c55ea3f4e322a500888874b90593f113 handshake=Noise_IKpsk1_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662540b5b9c6666fe0610f8de010548ef7b2c1ff9cfdcd2a35d7257c0f14cf6b6579241f7b7d690f1bded3fca5448cc406d3e1005ef58c3ccd169ec72b2f7c4caa8b6 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846605b9566b5b0f3deb72a002560de9d6bc msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=1cce3a32168d9494773586dbc7599e2c94e401f0936e3696e91b8a00209601 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=2f113c945e331cd45962508eee9d01907800a7b4f611d2d5264fdeb96a81ff handshake=Noise_IKpsk2_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662540193347cd7c4197ad710ce0f36a4c24fc4da2c0b271e51f178b900abb636129853d2066d323ef55180074e4e958c318e1bd8c9457e081991c320902e9eca0b16 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466934c3609b2ea20856de72db441812028 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=1f941586981ee8e35546c4c825ae5b59f085ec1ac261c913667246bc609496 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=c7df30218d05a737fb405b7067cfd591d593d111fe1847d086ae37e806dda8 handshake=Noise_IK_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254a38fd17d3ecfc034b8662c49ba22d8558729800e0313b725febfb2ec77bd84a2108f69d924cca3b15ef92569d7ec2cdde9cee2fc198c757f2975da3efa4e0d0fe13a9991b9411ba4c0e2 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466bb139fe5e49c4d60a6ec8c83fb024bc79e49670113142aa6c652 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=c69889e3504ff2c2199e28029aea578cd758b4214a3c8b83f92b5ee66670ef msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=36198b611040f132bd465de67099a9ddf9dfe3f23bd1f2d30c943b26c3fb5a handshake=Noise_IKpsk0_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254b9d7e098f29f8d60de3d6535f46b2d89cb9366382ef8243cbf9c650eab2dc27fbad3ba213848dbb944b7105fdd6ab12bbcbfc9a0cec566f4a39606ee8a4f74c5bab0347ec3820d2283e5 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466f0e11f5f201496d65ded4b10d20841f311688cda5dc987c59676 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=116b1de8e063d67a8d8c5be83a7f444168b60447df326749434d22cf39ffb1 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=035f0315fdae44c8c718fa8509fc00c55ea3f4e322a500888874b90593f113 handshake=Noise_IKpsk1_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662540b5b9c6666fe0610f8de010548ef7b2c1ff9cfdcd2a35d7257c0f14cf6b6579241f7b7d690f1bded3fca5448cc406d3ec6cf8ace27084be59885e4091c5bc209109dda7507f4d707739b msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484660e207c946b72c6e77258c2aadc838c8dc6ef181eec060394556c msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=1cce3a32168d9494773586dbc7599e2c94e401f0936e3696e91b8a00209601 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=2f113c945e331cd45962508eee9d01907800a7b4f611d2d5264fdeb96a81ff handshake=Noise_IKpsk2_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662540193347cd7c4197ad710ce0f36a4c24fc4da2c0b271e51f178b900abb636129853d2066d323ef55180074e4e958c318ea873d705aef61f8a6af212d4915462886947dcbffa4ffeb7444d msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466ee3ad6bce0a3efbf171dc4555c0b4c715a52ac5e3c7f2e249d3e msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=1f941586981ee8e35546c4c825ae5b59f085ec1ac261c913667246bc609496 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=c7df30218d05a737fb405b7067cfd591d593d111fe1847d086ae37e806dda8 handshake=Noise_XX_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466aaf8bd6d4f4015e5465aea27ce9bfe2f9cfeb1b38ee28d45032fe0b31e0ed19185e606afae8d39560d71c245a09c231c58f90ea85bc24bfda03e505c65b792c3 msg_2_payload= msg_2_ciphertext=d91be69fde3995104e4827d77d5162d8757250d035b74525efccce98e892ed62d34f840a4785fe4cc548a096f803652e4fbe69376911d114fd5e11c994720434 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=55ac89364861faed9538fe931a2bf90878fa10072b3c5e520b733728948e1c msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=4a9308221816fe917b617d45c8a1f8bdb8adafec2bb9ab2f8bd6b1627bf9e1 handshake=Noise_XXpsk0_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625402675bce88ab5a820c99ea9fddb39f02 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466581a3db6c8617d78b487458dfc00147b77d9a8f9d55d33fa54e9a099348118f922577a9a42ebe899869e0a3c8c9311d4232fd9b2bb0fdc2c004994d87467c928 msg_2_payload= msg_2_ciphertext=4f14513ce6f321d3e3cb4585286a18c666e6b3777ae346a7480f09dca7af5575e88a84a7d6f8a2e72183e95e71bc8d3f22b1d51f739ea46e9429f03e4491eb26 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=53f77a183580b9f1fbcef4857976951cff9f90e21cca7a4fe7cddd5303b23f msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=f25166ac4cc0f48a5e9a1af15f86c0a4b065a0c587aaadbcfb76ca98540431 handshake=Noise_XXpsk1_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625485c5ada7d6d53105c13610ffcf41d7a4 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c5c243ed69e6c32a5c5016b1b66676d6076aede0fd2df3c89b58f2df5a3ed2cf603ab6a12b364a8b0f64fec5081f97aeaeb9a99414e7b0eb091667e33c7d8f6c msg_2_payload= msg_2_ciphertext=77f77a124d513addd8faed07d38add6dc885d466a1f3f259847430780d121ac5272da5fda9f0a5f69039d94ebe69d0b526e42143bd74f784fc79fd2210c0d5a3 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=dd96a733132ce4bf0bb7f1fbffffd0e2cc805e2b2bc5b4c14684d1370e93fe msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=73803758314e6aa57533c404442d54e9f3c6f94157c41d2d82cf608158473e handshake=Noise_XXpsk2_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625479170a96b76ee24ab783821e5383da8a msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484665239caf37bac645326193f36abf47c49b4568ab9ea3933a8dab0a835393c23e3a4a9a936fef8c1d46b9a591a9684ffec5b876aecad0fcdeaa22a6d7b6bc8bbdf msg_2_payload= msg_2_ciphertext=561aa523426011b76cd099db2c038f6405739eee844f4f59da33c6c315bebf276d70e2ea113233792b32d752c6d4a256fad013cfee5f910ee4922b5a7720b2e0 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=c188211012160a32e31359391f5d3bd9ebe2af466c2c3759d36d7f1b723a53 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=330f1b1616e11def88c53fefeede6e62e5c89414516dc4f3eb55cc0a6dd244 handshake=Noise_XXpsk3_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254b448543164c221df43ad2e76d7dce619 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466eb1b0ba3208b9285c46d88de673268c0a9c11d1372df5c12348027d7b20d33e3678bcacb6dc7ecffae94384891ee38abeccb20a835ddbf929d0a313fb26d4ee4 msg_2_payload= msg_2_ciphertext=6008678f2ef024bf48e09a421bfa274e0e134657e952b07b9628b88938f8489ae1bd41cf9f2af850d9e4186aef156e71671537a7673853392bddc33c073f660d msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=f0fdc970b0edc1b34eff18de0753b76a4c407c63c75dfa31b7718a25bd9852 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=058345e46ccb2548fdff3835a49a67f7470b5e1d7c58b338e64ca4350b3bca handshake=Noise_XX_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466aaf8bd6d4f4015e5465aea27ce9bfe2f9cfeb1b38ee28d45032fe0b31e0ed191f5384372c5963ff9a47437d7781bbfa1ede85376a07ee6cffe47f4274e311338859dfb4dd4f0d9c1e87e msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=d91be69fde3995104e4827d77d5162d8757250d035b74525efccce98e892ed6200f9ea261e7e296827a6c5ad76d3b0686ca99d40ed5aa6600279a77e9a5c80b22f889c3fd74d83cba873 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=55ac89364861faed9538fe931a2bf90878fa10072b3c5e520b733728948e1c msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=4a9308221816fe917b617d45c8a1f8bdb8adafec2bb9ab2f8bd6b1627bf9e1 handshake=Noise_XXpsk0_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625487982e3421ad43f420890fc6fa445fbebaa29d42f83357832fb2 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466581a3db6c8617d78b487458dfc00147b77d9a8f9d55d33fa54e9a099348118f9392dc0274cf7b028ba762c5bbe82c31d42ee5e297273ad7654acf25c798d67773c0bc7b485759cba4f41 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=4f14513ce6f321d3e3cb4585286a18c666e6b3777ae346a7480f09dca7af55753d6822524406cfeee550f231c0b3a3b01127f4f272356b921ee0e01d4ae239d3eb7d8c357eee3630d1ac msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=53f77a183580b9f1fbcef4857976951cff9f90e21cca7a4fe7cddd5303b23f msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=f25166ac4cc0f48a5e9a1af15f86c0a4b065a0c587aaadbcfb76ca98540431 handshake=Noise_XXpsk1_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c13c5b571263574d9b570c55e7e151b9425c1fe13510b467e0de msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c5c243ed69e6c32a5c5016b1b66676d6076aede0fd2df3c89b58f2df5a3ed2cf028f9a03a230cf08755d11147bd6ff8cfb9620d663d5ed048229b50d9724a4c96edcde2b208246ff5fad msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=77f77a124d513addd8faed07d38add6dc885d466a1f3f259847430780d121ac5b9097846c12a911d82fcc7a70dd5ae5901e3130a6fb48336ebc6f4d4504624ec357f34d47b896400dadb msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=dd96a733132ce4bf0bb7f1fbffffd0e2cc805e2b2bc5b4c14684d1370e93fe msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=73803758314e6aa57533c404442d54e9f3c6f94157c41d2d82cf608158473e handshake=Noise_XXpsk2_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662547101213fa5a9485d131330b0dad493c48c4ae6e125226c1171f6 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484665239caf37bac645326193f36abf47c49b4568ab9ea3933a8dab0a835393c23e35235d08e2daad3a980adadad2fe14cc641a92e52f86d0316b33e490ee1569451313789c5c25b4bed70be msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=561aa523426011b76cd099db2c038f6405739eee844f4f59da33c6c315bebf27a86ff32a01f76e4dcfbe1cff50fa777dc99480af6b625530f264c850117ba858360c0d519c4a1ca747fa msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=c188211012160a32e31359391f5d3bd9ebe2af466c2c3759d36d7f1b723a53 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=330f1b1616e11def88c53fefeede6e62e5c89414516dc4f3eb55cc0a6dd244 handshake=Noise_XXpsk3_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254ce80c6f31a908077340a4584cf6faa69c9d1076e89096c43a500 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466eb1b0ba3208b9285c46d88de673268c0a9c11d1372df5c12348027d7b20d33e3f1dc618f2ee5f89bf2d6693b74596bf6ffa8d86d9c0976834a4b87c0a380495a89999ec6de2c885e64d4 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=6008678f2ef024bf48e09a421bfa274e0e134657e952b07b9628b88938f8489a42d6827d04601ecd23c946828baed03cb9ce7cabcf4646be4769f43bbf0e7bc04e369a6800d2b22856f9 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=f0fdc970b0edc1b34eff18de0753b76a4c407c63c75dfa31b7718a25bd9852 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=058345e46ccb2548fdff3835a49a67f7470b5e1d7c58b338e64ca4350b3bca handshake=Noise_XX_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466aaf8bd6d4f4015e5465aea27ce9bfe2f9cfeb1b38ee28d45032fe0b31e0ed19188c15754675bdf966090bf821a49f1578a512a2abb9c0aab546dbe471a5eafa8 msg_2_payload= msg_2_ciphertext=d91be69fde3995104e4827d77d5162d8757250d035b74525efccce98e892ed6266fdf087797c505e45b50a46d6c0bccc9fc689102189cf5dc55ddd007ae7ae95 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=55ac89364861faed9538fe931a2bf90878fa10072b3c5e520b733728948e1c msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=4a9308221816fe917b617d45c8a1f8bdb8adafec2bb9ab2f8bd6b1627bf9e1 handshake=Noise_XXpsk0_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c61a84f1a6f875a80930f90f6f24c98e msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466581a3db6c8617d78b487458dfc00147b77d9a8f9d55d33fa54e9a099348118f95fdf6b5e53f9941c830ed2b01b858b1cae8d9a2026d27b784b650536adc06b0a msg_2_payload= msg_2_ciphertext=4f14513ce6f321d3e3cb4585286a18c666e6b3777ae346a7480f09dca7af55757f81040aaf7fa96ac14f973829c5f53b5c315baabb32d581cffff9457e8b9660 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=53f77a183580b9f1fbcef4857976951cff9f90e21cca7a4fe7cddd5303b23f msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=f25166ac4cc0f48a5e9a1af15f86c0a4b065a0c587aaadbcfb76ca98540431 handshake=Noise_XXpsk1_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662547d0b7163177636e07746a0985baa1bde msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c5c243ed69e6c32a5c5016b1b66676d6076aede0fd2df3c89b58f2df5a3ed2cf106bc5908bfbab97630dda6e089b6aabac42302aaa36328231a8f5ce210973f3 msg_2_payload= msg_2_ciphertext=77f77a124d513addd8faed07d38add6dc885d466a1f3f259847430780d121ac59d643454a8e9f7309150a019ecbd2c5eb6fd18674276f048feb2e80e0b428dd0 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=dd96a733132ce4bf0bb7f1fbffffd0e2cc805e2b2bc5b4c14684d1370e93fe msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=73803758314e6aa57533c404442d54e9f3c6f94157c41d2d82cf608158473e handshake=Noise_XXpsk2_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254d3009e8a46eae769bf4bc5725b082568 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484665239caf37bac645326193f36abf47c49b4568ab9ea3933a8dab0a835393c23e3a19c252ee839914581c912acd79e8b9d3e045cc120fa53182cd22a4b3ec551b4 msg_2_payload= msg_2_ciphertext=561aa523426011b76cd099db2c038f6405739eee844f4f59da33c6c315bebf2742413b1948478b5bf0a2331b765d1f5d93006650dec2aa4e51d16b0a4f9ed84f msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=c188211012160a32e31359391f5d3bd9ebe2af466c2c3759d36d7f1b723a53 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=330f1b1616e11def88c53fefeede6e62e5c89414516dc4f3eb55cc0a6dd244 handshake=Noise_XXpsk3_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c7995d341b626e9de9e7b8f09441a8a7 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466eb1b0ba3208b9285c46d88de673268c0a9c11d1372df5c12348027d7b20d33e3b04a922618a0b8b1b247a4746b7b3d100cdb2fe21f40d48dbba03ef0fdeaee2b msg_2_payload= msg_2_ciphertext=6008678f2ef024bf48e09a421bfa274e0e134657e952b07b9628b88938f8489a810f13458ca37c4cf1ab45090357408af6d8938f5c1d45d9bc7b5c07665a6b4b msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=f0fdc970b0edc1b34eff18de0753b76a4c407c63c75dfa31b7718a25bd9852 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=058345e46ccb2548fdff3835a49a67f7470b5e1d7c58b338e64ca4350b3bca handshake=Noise_XX_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466aaf8bd6d4f4015e5465aea27ce9bfe2f9cfeb1b38ee28d45032fe0b31e0ed191ffc04dfc10ecd2efabbf30685693bcdcede85376a07ee6cffe47f51e2ae72a25058bc75b4b1293b32811 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=d91be69fde3995104e4827d77d5162d8757250d035b74525efccce98e892ed62c58bfde86a5512485175dec124b4c4ed6ca99d40ed5aa6600279bfbec5148741711eb6ad6fad14206c21 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=55ac89364861faed9538fe931a2bf90878fa10072b3c5e520b733728948e1c msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=4a9308221816fe917b617d45c8a1f8bdb8adafec2bb9ab2f8bd6b1627bf9e1 handshake=Noise_XXpsk0_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625487982e3421ad43f420896f297a503188b235e25f5b56dcfd99ab msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466581a3db6c8617d78b487458dfc00147b77d9a8f9d55d33fa54e9a099348118f9521624cfc2d1ee318b7bce45260d590542ee5e297273ad7654ac556ccc7b6279a69733d6803d5b982594 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=4f14513ce6f321d3e3cb4585286a18c666e6b3777ae346a7480f09dca7af5575a5f197a33764d3271cca1b3c345f51c31127f4f272356b921ee0a462f08c85c527b4e4935625e3fc88ff msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=53f77a183580b9f1fbcef4857976951cff9f90e21cca7a4fe7cddd5303b23f msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=f25166ac4cc0f48a5e9a1af15f86c0a4b065a0c587aaadbcfb76ca98540431 handshake=Noise_XXpsk1_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c13c5b571263574d9b5726f56ea9aea8cc317511bfa8cf5e2e1f msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c5c243ed69e6c32a5c5016b1b66676d6076aede0fd2df3c89b58f2df5a3ed2cfc938f3dab94aee2e67ff7d9e578192a2fb9620d663d5ed0482297f2455ba11c3289db6b3286384edc470 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=77f77a124d513addd8faed07d38add6dc885d466a1f3f259847430780d121ac51abfc6c6a39ce2c55a3b56fd63456b5901e3130a6fb48336ebc671ee2c5dde5da9dd4211c69d2a7c0347 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=dd96a733132ce4bf0bb7f1fbffffd0e2cc805e2b2bc5b4c14684d1370e93fe msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=73803758314e6aa57533c404442d54e9f3c6f94157c41d2d82cf608158473e handshake=Noise_XXpsk2_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662547101213fa5a9485d131331cc470c9c3a47b65d4dd9bfe832ccb8 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484665239caf37bac645326193f36abf47c49b4568ab9ea3933a8dab0a835393c23e3313ca4fa5c74e7a3f687a0d725e5db2641a92e52f86d0316b33e286176bad79badc46cb1e846e93a94f5 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=561aa523426011b76cd099db2c038f6405739eee844f4f59da33c6c315bebf27e342e9ce2aa8d9d9b87f72a0cfa70c2ac99480af6b625530f264be548caae99ab6f8c4f6e199fb0faf40 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=c188211012160a32e31359391f5d3bd9ebe2af466c2c3759d36d7f1b723a53 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=330f1b1616e11def88c53fefeede6e62e5c89414516dc4f3eb55cc0a6dd244 handshake=Noise_XXpsk3_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254ce80c6f31a908077340a967f7f3c97956cdff82835c308ff284f msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466eb1b0ba3208b9285c46d88de673268c0a9c11d1372df5c12348027d7b20d33e33ac38234778daf6c29e41aa50404fd91ffa8d86d9c0976834a4b8710815760185846df07e7ce9d95fa50 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=6008678f2ef024bf48e09a421bfa274e0e134657e952b07b9628b88938f8489ae12fc5cc1631fe08b8526b92f6348454b9ce7cabcf4646be47698ec1a10e0324a73b83e15a85d15ea053 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=f0fdc970b0edc1b34eff18de0753b76a4c407c63c75dfa31b7718a25bd9852 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=058345e46ccb2548fdff3835a49a67f7470b5e1d7c58b338e64ca4350b3bca handshake=Noise_IX_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548f40c5adb68f25624ae5b214ea767a6ec94d829d3d7b5e1ad1ba6f3e2138285f msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466622476f6dc13fa05c82e29cf98e37d7c1e7aa9ea2ab7f341ba1db3e536ab9af93cc8bb3b47ed05ed3f678780e0294be50c0ed95f97a0ef014d45ef36ad2a6c5c msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=ee8c647ae002695d09b4ff7719085f820510f5a00c52e8b45b44a4a84d3689 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=a1fd2b44a73bc70a207f970b6a6843e7247110f3be8d14a41507a506f03d63 handshake=Noise_IXpsk0_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625431e791109f10371f8305b72a88065b517025301ef523d9962d49201d5de6e03c8bc1c4d453575f9090a9070b8d2e27260315853452593e9bc82684a3f764a93b msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c3a98ae9b8944c2e04b14098f75624c9649bc20d92b4fb9feb450c5adea13242b5e9e5187d7abe391fbc3a654f9042eeeaf3495b08b3450da47f9d5bded12a25 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=96e8b979ac204a4c22fdb58e70f10a889d0ceb52a777e75376846e3e403903 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=0d019e644bbdcc10bdc2443d0d12fd11a3d2122140ee3a01ef7c938726df92 handshake=Noise_IXpsk1_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254074d28976125a685694f6e4d9f29f2dad768122fac65114c256e3280ff7fac212c40d51848089066523ed4026ecbf4e5ed14ca5590c1ed214fbfd90f0356ed13 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466bc1b623297e2182c3fc0e0c16f6799309650dd06e4b3e6004d30842f8fd46a1115a937ef532eecd9383d07a136a4177ef2ce37c2ed1d9f0ab601b1401b958217 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=16b0e85f7d29c70b5b3c6e087496d10c8b6f491eaf1d1a29d1988ab2d9a963 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=006069daef25a0d1b668145368fdd76e61a0aed53c7109f45bb6632b6155c7 handshake=Noise_IXpsk2_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254707384f2d1b60403d6983f48cdd2d54ef6d6201bd7b042556a09f4f21189e79550dec3d76dd8bb9657244ebc557e0fd1bff35cb50b8b64c9658a686404899b85 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466b980bf81bae21ec3c711890b8af89330c505cb0a91b17caf3fd343fd318cb6010831177fec17f21da68af33d1d8c9909cd8236240afcd56f5f9d70f090b812f2 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=387c61a76a79957e3f99d5dba4d89b098652201ea26220e961953955512f27 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=81c3b9c80cd9d312e0208e596ffb917cc56971bab803eb6cfab729ddb91e01 handshake=Noise_IX_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548f40c5adb68f25624ae5b214ea767a6ec94d829d3d7b5e1ad1ba6f3e2138285f746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466622476f6dc13fa05c82e29cf98e37d7c1e7aa9ea2ab7f341ba1db3e536ab9af9d587c9ce59c0b5c278f67832116b7cc3863bdda85e4ea48d3401af232d6f738e3d27d3971c464ae019da msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=ee8c647ae002695d09b4ff7719085f820510f5a00c52e8b45b44a4a84d3689 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=a1fd2b44a73bc70a207f970b6a6843e7247110f3be8d14a41507a506f03d63 handshake=Noise_IXpsk0_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625431e791109f10371f8305b72a88065b517025301ef523d9962d49201d5de6e03c8bc1c4d453575f9090a9070b8d2e2726db0b7bef43ed75985760735cdb3ccf94f6799816a1bd407543c3 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c3a98ae9b8944c2e04b14098f75624c9649bc20d92b4fb9feb450c5adea13242eef1dcae8547d04ec9cf15988accc82d4bee7c7f595716a7855c9e8e0dbd78e2baefbaa4ee1de38bf3a9 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=96e8b979ac204a4c22fdb58e70f10a889d0ceb52a777e75376846e3e403903 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=0d019e644bbdcc10bdc2443d0d12fd11a3d2122140ee3a01ef7c938726df92 handshake=Noise_IXpsk1_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254074d28976125a685694f6e4d9f29f2dad768122fac65114c256e3280ff7fac212c40d51848089066523ed4026ecbf4e5311f872ca6e591f4b57ca869841735ab09d7cff59de84efbcbfe msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466bc1b623297e2182c3fc0e0c16f6799309650dd06e4b3e6004d30842f8fd46a1118b39882825db18d1a6f1e11c33189f75096fc90d3eb24eed3204a21588804fbf5bc658546c38809ebf2 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=16b0e85f7d29c70b5b3c6e087496d10c8b6f491eaf1d1a29d1988ab2d9a963 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=006069daef25a0d1b668145368fdd76e61a0aed53c7109f45bb6632b6155c7 handshake=Noise_IXpsk2_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254707384f2d1b60403d6983f48cdd2d54ef6d6201bd7b042556a09f4f21189e79550dec3d76dd8bb9657244ebc557e0fd1abf9112523840039f52508eb47ad4896afc7ec7b61f0946286aa msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466b980bf81bae21ec3c711890b8af89330c505cb0a91b17caf3fd343fd318cb6019e547161afe678cea50333bd13f79208b80461c0e0c3d43a8780339640a33c5894699b57245fcab80c22 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=387c61a76a79957e3f99d5dba4d89b098652201ea26220e961953955512f27 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=81c3b9c80cd9d312e0208e596ffb917cc56971bab803eb6cfab729ddb91e01 handshake=Noise_IX_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548f40c5adb68f25624ae5b214ea767a6ec94d829d3d7b5e1ad1ba6f3e2138285f msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466622476f6dc13fa05c82e29cf98e37d7c1e7aa9ea2ab7f341ba1db3e536ab9af930a67ac8e3f12fd042fcd87fedac96d10e9b513fce9dfa7034fa01b91e268d3b msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=ee8c647ae002695d09b4ff7719085f820510f5a00c52e8b45b44a4a84d3689 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=a1fd2b44a73bc70a207f970b6a6843e7247110f3be8d14a41507a506f03d63 handshake=Noise_IXpsk0_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625431e791109f10371f8305b72a88065b517025301ef523d9962d49201d5de6e03c87375bdd6fe082a2538efee6d0aca07cf6da198785e60eb9eda10515d4de2c05 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c3a98ae9b8944c2e04b14098f75624c9649bc20d92b4fb9feb450c5adea13242cefd4fe51aee2d3e8a57497962d253f52fda8e4799e79cabd5b97126107f51ef msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=96e8b979ac204a4c22fdb58e70f10a889d0ceb52a777e75376846e3e403903 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=0d019e644bbdcc10bdc2443d0d12fd11a3d2122140ee3a01ef7c938726df92 handshake=Noise_IXpsk1_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254074d28976125a685694f6e4d9f29f2dad768122fac65114c256e3280ff7fac212288a529637006c9cdf63983295b55d008a5b13d51883b6d510ce07db1e0ab29 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466bc1b623297e2182c3fc0e0c16f6799309650dd06e4b3e6004d30842f8fd46a11ac55526f15c640cf8454ba6f133edbefea975b2d2a2cf13d43c07b29046905a0 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=16b0e85f7d29c70b5b3c6e087496d10c8b6f491eaf1d1a29d1988ab2d9a963 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=006069daef25a0d1b668145368fdd76e61a0aed53c7109f45bb6632b6155c7 handshake=Noise_IXpsk2_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254707384f2d1b60403d6983f48cdd2d54ef6d6201bd7b042556a09f4f21189e795a4d70b030812e4f3c7df3faff6cf7997ce1cf5b41dc8f39c10f7a6c8160325ba msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466b980bf81bae21ec3c711890b8af89330c505cb0a91b17caf3fd343fd318cb601ce71053a753dc4a395c38bee2f9c65d9371aac75c9b11cd59c3d9c8040cc8c1a msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=387c61a76a79957e3f99d5dba4d89b098652201ea26220e961953955512f27 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=81c3b9c80cd9d312e0208e596ffb917cc56971bab803eb6cfab729ddb91e01 handshake=Noise_IX_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548f40c5adb68f25624ae5b214ea767a6ec94d829d3d7b5e1ad1ba6f3e2138285f746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466622476f6dc13fa05c82e29cf98e37d7c1e7aa9ea2ab7f341ba1db3e536ab9af9cf8d0caf69ea6d6d9fe863f135d765dc863bdda85e4ea48d340128833ce0029b5e80c4902e07ca963cc6 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=ee8c647ae002695d09b4ff7719085f820510f5a00c52e8b45b44a4a84d3689 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=a1fd2b44a73bc70a207f970b6a6843e7247110f3be8d14a41507a506f03d63 handshake=Noise_IXpsk0_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625431e791109f10371f8305b72a88065b517025301ef523d9962d49201d5de6e03c87375bdd6fe082a2538efee6d0aca07cdb0b7bef43ed759857605b1c8a4434514ba7ff980a94999f767b msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c3a98ae9b8944c2e04b14098f75624c9649bc20d92b4fb9feb450c5adea132421dff6426674f95b9cca665bf38c8a2664bee7c7f595716a7855ce3a01c256df89227a7f03ae351c54d1c msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=96e8b979ac204a4c22fdb58e70f10a889d0ceb52a777e75376846e3e403903 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=0d019e644bbdcc10bdc2443d0d12fd11a3d2122140ee3a01ef7c938726df92 handshake=Noise_IXpsk1_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254074d28976125a685694f6e4d9f29f2dad768122fac65114c256e3280ff7fac212288a529637006c9cdf63983295b55d0311f872ca6e591f4b57cc52c513c2541cad183c73557e8de3884 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466bc1b623297e2182c3fc0e0c16f6799309650dd06e4b3e6004d30842f8fd46a1165270d8bc779d74b6158d1ad0382aeab5096fc90d3eb24eed320925d70db3a28b6913b2184f99d534c83 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=16b0e85f7d29c70b5b3c6e087496d10c8b6f491eaf1d1a29d1988ab2d9a963 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=006069daef25a0d1b668145368fdd76e61a0aed53c7109f45bb6632b6155c7 handshake=Noise_IXpsk2_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254707384f2d1b60403d6983f48cdd2d54ef6d6201bd7b042556a09f4f21189e795a4d70b030812e4f3c7df3faff6cf7997abf9112523840039f525ad5950e38bc095c149086d5a40ae31ef msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466b980bf81bae21ec3c711890b8af89330c505cb0a91b17caf3fd343fd318cb60191ee54eae17fa342a351b1b09dce4265b80461c0e0c3d43a87803fd715ab4c27017bb4cf345588a80109 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=387c61a76a79957e3f99d5dba4d89b098652201ea26220e961953955512f27 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=81c3b9c80cd9d312e0208e596ffb917cc56971bab803eb6cfab729ddb91e01 handshake=Noise_N_25519_AESGCM_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254e6359a5d6c7a1d170a912f5fe2c9edca msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=f5bf9f4283f184acb247e55708b728b70ec83427200de1900a41e685e7f2c2 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=ebe3aeca2bc09cd4f4168e8a33186aace3fca9d05ec0380c258e4124a8ae01 handshake=Noise_Npsk0_25519_AESGCM_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625438817726d5cb633f2f7039e327d8d659 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=bb3c765be9629a576747028e7a7916e1a4b30ebf768c5417e431bfd32aceb7 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=4f792448e97c8c5cbc0ddbc2f6df569f02a6de080d72d9e766c2cae2706e45 handshake=Noise_Npsk1_25519_AESGCM_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254e6e56e8d7384aa396e1e8a0517e02a6c msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=91363a8183aa963e9d8e2ffbb446e41caf9a089628b68726b35ec8a9ea65f5 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=a72d808b3ec5344cabf496ba6c02af8caff4b518b8d7c37a03dd69e560baf0 handshake=Noise_N_25519_AESGCM_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254fa097823bab1ebd1506811991b670155aa82a4cd8b4bbe761b5c msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=f5bf9f4283f184acb247e55708b728b70ec83427200de1900a41e685e7f2c2 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=ebe3aeca2bc09cd4f4168e8a33186aace3fca9d05ec0380c258e4124a8ae01 handshake=Noise_Npsk0_25519_AESGCM_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625484649fcef92dec96507574eb9cec727f5f7da8ff6886fd70ac2c msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=bb3c765be9629a576747028e7a7916e1a4b30ebf768c5417e431bfd32aceb7 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=4f792448e97c8c5cbc0ddbc2f6df569f02a6de080d72d9e766c2cae2706e45 handshake=Noise_Npsk1_25519_AESGCM_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254be7a2d6947cc9358be204acc063aea95100411f5fd0cc3985b3d msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=91363a8183aa963e9d8e2ffbb446e41caf9a089628b68726b35ec8a9ea65f5 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=a72d808b3ec5344cabf496ba6c02af8caff4b518b8d7c37a03dd69e560baf0 handshake=Noise_N_25519_AESGCM_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662549430a045cd2d4d6811150b99292daae4 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=f5bf9f4283f184acb247e55708b728b70ec83427200de1900a41e685e7f2c2 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=ebe3aeca2bc09cd4f4168e8a33186aace3fca9d05ec0380c258e4124a8ae01 handshake=Noise_Npsk0_25519_AESGCM_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662540ac0e3d45b1948f681e1682ebee5dd45 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=bb3c765be9629a576747028e7a7916e1a4b30ebf768c5417e431bfd32aceb7 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=4f792448e97c8c5cbc0ddbc2f6df569f02a6de080d72d9e766c2cae2706e45 handshake=Noise_Npsk1_25519_AESGCM_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541ec9db97d69c252fc8f8742e0f4a7e1e msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=91363a8183aa963e9d8e2ffbb446e41caf9a089628b68726b35ec8a9ea65f5 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=a72d808b3ec5344cabf496ba6c02af8caff4b518b8d7c37a03dd69e560baf0 handshake=Noise_N_25519_AESGCM_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254fa097823bab1ebd15068f4572f11b906f0509166173a6e4a6273 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=f5bf9f4283f184acb247e55708b728b70ec83427200de1900a41e685e7f2c2 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=ebe3aeca2bc09cd4f4168e8a33186aace3fca9d05ec0380c258e4124a8ae01 handshake=Noise_Npsk0_25519_AESGCM_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625484649fcef92dec965075fe2be8f7e95575f16fc60eda06edfe27 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=bb3c765be9629a576747028e7a7916e1a4b30ebf768c5417e431bfd32aceb7 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=4f792448e97c8c5cbc0ddbc2f6df569f02a6de080d72d9e766c2cae2706e45 handshake=Noise_Npsk1_25519_AESGCM_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254be7a2d6947cc9358be205a810af7eb9e663eea8ecfec02cb8641 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=91363a8183aa963e9d8e2ffbb446e41caf9a089628b68726b35ec8a9ea65f5 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=a72d808b3ec5344cabf496ba6c02af8caff4b518b8d7c37a03dd69e560baf0 handshake=Noise_K_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541f6065d2dbb9baa86605ebf7b6c743a9 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=46685f7f48e63d44f5cd878e8344a49e8cb366489ceaf4a3665f7e50be6658 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=67b542a893449da5c0d811252a061e86d78e6f38e8dfd6ea91758c5efee3cb handshake=Noise_Kpsk0_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254ce3f329cc91477035bf61c0cdc30e80b msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=606a2840cc2a7cc01e93500ddd06b165aa23af8f31fb02968ea815ff4be3de msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=9a68c42768a4e608ffc81120222f6b93950d5c7af8438e81fc6422c1f6de6a handshake=Noise_Kpsk1_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254063e3bccc72c13cd3469bb230e1384c2 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=c1c4aaf379d5ba311247236fd68665336ab954fefc742cc9151032b2a5639f msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=d94fcde08550aa28096d526b2054a32f79a9232837b2a9596e8b1054f680b9 handshake=Noise_K_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254bcc436a2edb74613f5e73ff0cbfda5cb0e6cc1eb2164829c4d34 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=46685f7f48e63d44f5cd878e8344a49e8cb366489ceaf4a3665f7e50be6658 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=67b542a893449da5c0d811252a061e86d78e6f38e8dfd6ea91758c5efee3cb handshake=Noise_Kpsk0_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254565f2ca67c2a0bd9e036531691ac9362bc81d923f9384405fd05 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=606a2840cc2a7cc01e93500ddd06b165aa23af8f31fb02968ea815ff4be3de msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=9a68c42768a4e608ffc81120222f6b93950d5c7af8438e81fc6422c1f6de6a handshake=Noise_Kpsk1_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254eb8d7c30c00e0fae542623b3ed495873dcc8fc25596a3c04aa5c msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=c1c4aaf379d5ba311247236fd68665336ab954fefc742cc9151032b2a5639f msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=d94fcde08550aa28096d526b2054a32f79a9232837b2a9596e8b1054f680b9 handshake=Noise_K_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254d40e94b2d13927059aa1e609ffd168e3 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=46685f7f48e63d44f5cd878e8344a49e8cb366489ceaf4a3665f7e50be6658 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=67b542a893449da5c0d811252a061e86d78e6f38e8dfd6ea91758c5efee3cb handshake=Noise_Kpsk0_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548f091ca3d19682d9ec8aa47bae87c888 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=606a2840cc2a7cc01e93500ddd06b165aa23af8f31fb02968ea815ff4be3de msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=9a68c42768a4e608ffc81120222f6b93950d5c7af8438e81fc6422c1f6de6a handshake=Noise_Kpsk1_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662542cc66e189a62c266ec1d89ab60e6e640 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=c1c4aaf379d5ba311247236fd68665336ab954fefc742cc9151032b2a5639f msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=d94fcde08550aa28096d526b2054a32f79a9232837b2a9596e8b1054f680b9 handshake=Noise_K_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254bcc436a2edb74613f5e745b38fa18699422bcccdcd0af79b7e35 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=46685f7f48e63d44f5cd878e8344a49e8cb366489ceaf4a3665f7e50be6658 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=67b542a893449da5c0d811252a061e86d78e6f38e8dfd6ea91758c5efee3cb handshake=Noise_Kpsk0_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254565f2ca67c2a0bd9e036467bf9073d8c7351ac13f4798b62a054 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=606a2840cc2a7cc01e93500ddd06b165aa23af8f31fb02968ea815ff4be3de msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=9a68c42768a4e608ffc81120222f6b93950d5c7af8438e81fc6422c1f6de6a handshake=Noise_Kpsk1_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254eb8d7c30c00e0fae54265f2bff17b2e288bfccc3bb76c742beb0 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=c1c4aaf379d5ba311247236fd68665336ab954fefc742cc9151032b2a5639f msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=d94fcde08550aa28096d526b2054a32f79a9232837b2a9596e8b1054f680b9 handshake=Noise_X_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254ae50825004becfffe1a179be72c6e15ccc2c72727385ce02b8235b081e61aa049e281d25a75a66c83a48e736491cbb7044ddf558abb9fcaaf6157619f41dff9f msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=1948e447f76f5337534c280ebd220db961d6ebb9bd12db223de7528605c36f msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=135cfc52de19616945aa2ad6c5cc04849608eafee2ff4222c013aa0b23dc33 handshake=Noise_Xpsk0_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c7375b5a510999c4b39fda0567b848eb149f5699752369183239db664fa14e63e9a9b61dd5971684104852bf16a5d13947ea7f52a91ebb7e98b1462f76bbab87 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=0f71c21b1edfb5eedb2f0bf2afc333854ad3b88d85bdb1dcbabc200c86adca msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=484530df1518ec3798f235162c2d8d98c40bb8896cf863debc51f1ea53b76b handshake=Noise_Xpsk1_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254f3b3c704067dc33efce5bd9217dddd65a82aee230acfd966320c92d40c5f1fe596e9b54f6f0847c5c9f5e06f542c0a8332ae17acafabae272de40b560072b9cc msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=7f8089c4143e918f5755a613565b3412da583f1d1e45d1eb0b0162ae75aed8 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=6f73460c11922e7f77b5661ddcc7bc4e6bd7d8749cd2181aa6c99d5b5e20fe handshake=Noise_X_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254ae50825004becfffe1a179be72c6e15ccc2c72727385ce02b8235b081e61aa049e281d25a75a66c83a48e736491cbb70d04b408e4e1b9f2f0dd80ae2871d7857bc4d057f3fb66808c320 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=1948e447f76f5337534c280ebd220db961d6ebb9bd12db223de7528605c36f msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=135cfc52de19616945aa2ad6c5cc04849608eafee2ff4222c013aa0b23dc33 handshake=Noise_Xpsk0_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c7375b5a510999c4b39fda0567b848eb149f5699752369183239db664fa14e63e9a9b61dd5971684104852bf16a5d139025417449f82c85ee89977abd0d750fe80c47e9b228ed26e5c7c msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=0f71c21b1edfb5eedb2f0bf2afc333854ad3b88d85bdb1dcbabc200c86adca msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=484530df1518ec3798f235162c2d8d98c40bb8896cf863debc51f1ea53b76b handshake=Noise_Xpsk1_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254f3b3c704067dc33efce5bd9217dddd65a82aee230acfd966320c92d40c5f1fe596e9b54f6f0847c5c9f5e06f542c0a838469063891941b5b191c47ee925457eb3c054db3c14f48666732 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=7f8089c4143e918f5755a613565b3412da583f1d1e45d1eb0b0162ae75aed8 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=6f73460c11922e7f77b5661ddcc7bc4e6bd7d8749cd2181aa6c99d5b5e20fe handshake=Noise_X_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254ae50825004becfffe1a179be72c6e15ccc2c72727385ce02b8235b081e61aa04279392a66a24958e4c789de27a5a0e99960ea42aafb2efaf1f6062a89b3ac3bd msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=1948e447f76f5337534c280ebd220db961d6ebb9bd12db223de7528605c36f msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=135cfc52de19616945aa2ad6c5cc04849608eafee2ff4222c013aa0b23dc33 handshake=Noise_Xpsk0_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c7375b5a510999c4b39fda0567b848eb149f5699752369183239db664fa14e63302f42f2022e000bdbfc75716f88b8221e6e2aefeffac88f8436a601947a28aa msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=0f71c21b1edfb5eedb2f0bf2afc333854ad3b88d85bdb1dcbabc200c86adca msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=484530df1518ec3798f235162c2d8d98c40bb8896cf863debc51f1ea53b76b handshake=Noise_Xpsk1_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254f3b3c704067dc33efce5bd9217dddd65a82aee230acfd966320c92d40c5f1fe59c14457d6a0815656bce5597e12c212ddea7c3b7f9ad5802e672eff6e7aaf628 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=7f8089c4143e918f5755a613565b3412da583f1d1e45d1eb0b0162ae75aed8 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=6f73460c11922e7f77b5661ddcc7bc4e6bd7d8749cd2181aa6c99d5b5e20fe handshake=Noise_X_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254ae50825004becfffe1a179be72c6e15ccc2c72727385ce02b8235b081e61aa04279392a66a24958e4c789de27a5a0e99d04b408e4e1b9f2f0dd8b324d4802cfb3c954c58df50ce19a54c msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=1948e447f76f5337534c280ebd220db961d6ebb9bd12db223de7528605c36f msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=135cfc52de19616945aa2ad6c5cc04849608eafee2ff4222c013aa0b23dc33 handshake=Noise_Xpsk0_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c7375b5a510999c4b39fda0567b848eb149f5699752369183239db664fa14e63302f42f2022e000bdbfc75716f88b822025417449f82c85ee8999a9d0502c5154f52f57239a43338ebd2 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=0f71c21b1edfb5eedb2f0bf2afc333854ad3b88d85bdb1dcbabc200c86adca msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=484530df1518ec3798f235162c2d8d98c40bb8896cf863debc51f1ea53b76b handshake=Noise_Xpsk1_25519_AESGCM_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254f3b3c704067dc33efce5bd9217dddd65a82aee230acfd966320c92d40c5f1fe59c14457d6a0815656bce5597e12c212d8469063891941b5b191cfce15fda4e83fcf8fb9065f9c55e22fc msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=7f8089c4143e918f5755a613565b3412da583f1d1e45d1eb0b0162ae75aed8 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=6f73460c11922e7f77b5661ddcc7bc4e6bd7d8749cd2181aa6c99d5b5e20fe handshake=Noise_NN_25519_AESGCM_BLAKE2s gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846683a0dd518c7d9a09bc8500bc2e868187 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=0909e697fc6dca9ffceffebee77c39187c353d4256d66f6d42ff5d6a8b5bcd msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=0770576631856631b449818953d4252baf1cf8d49d718ce220b9173567fc97 handshake=Noise_NNpsk0_25519_AESGCM_BLAKE2s gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541535fb045bd97504725efe47351fd5d8 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466e0bd9f3000f0f276e99bdc78a91a30ca msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=7bb01e54840881ef4911b030602c665e4799652c4260b32f67119716cf2dac msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=63c4c131b3c079eb101cf9cd03627e5d50e693513402efb26d5f46d62ba1e0 handshake=Noise_NNpsk1_25519_AESGCM_BLAKE2s gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254febbb98d9ec54939c9cd08f15df12c9d msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466a233b33fe34e7a3cf0d34cc475ced00d msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=8617a57d1a212d915a093ba691465321b3a5e83a2a09334bc17a66e07f340b msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=bbddd9a51a1fe99634ea09790bfab387047c0bee2b540cbaa009e4b33f547d handshake=Noise_NNpsk2_25519_AESGCM_BLAKE2s gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662542383ccc8749a96890523a8c5c90c3b3a msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846620c5d7fc3e102d94a2bcab25721f32c4 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=a924b18a801dad51bf702aa50f87d8f3e2d3e54cb76c94493f5305768f5f64 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=0c94546ec021695355755f7e82ce1a12679f8df2d5a5b6e533c4cdc645a5f9 handshake=Noise_NN_25519_AESGCM_BLAKE2s gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846626cb189266923cb8ce8e4c5203887255b709071d34ae3fb80274 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=0909e697fc6dca9ffceffebee77c39187c353d4256d66f6d42ff5d6a8b5bcd msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=0770576631856631b449818953d4252baf1cf8d49d718ce220b9173567fc97 handshake=Noise_NNpsk0_25519_AESGCM_BLAKE2s gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625499813d4f7cdbccb39053e17bb5fcb237d3308481578cdf766e14 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484665a507bc4cb8222edadcbb119a863c7e86363718152651d0ce152 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=7bb01e54840881ef4911b030602c665e4799652c4260b32f67119716cf2dac msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=63c4c131b3c079eb101cf9cd03627e5d50e693513402efb26d5f46d62ba1e0 handshake=Noise_NNpsk1_25519_AESGCM_BLAKE2s gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254294dfe9247d7b2223638cfbb18fa8d5f4fca0215e7d473ee39aa msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846638d4e172b074863b2c8ec44bba6907b80112d0d2358b4abb6e55 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=8617a57d1a212d915a093ba691465321b3a5e83a2a09334bc17a66e07f340b msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=bbddd9a51a1fe99634ea09790bfab387047c0bee2b540cbaa009e4b33f547d handshake=Noise_NNpsk2_25519_AESGCM_BLAKE2s gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541b462c2b118f585719b4c4853b82356500feb45573d40dfdd474 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484664f09893c38c139765e44808080e1dacdc75c32e596a79f72f0ee msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=a924b18a801dad51bf702aa50f87d8f3e2d3e54cb76c94493f5305768f5f64 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=0c94546ec021695355755f7e82ce1a12679f8df2d5a5b6e533c4cdc645a5f9 handshake=Noise_NN_25519_AESGCM_BLAKE2s gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c70a91b5ce390b4d2002c46c6e2a3248 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=0909e697fc6dca9ffceffebee77c39187c353d4256d66f6d42ff5d6a8b5bcd msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=0770576631856631b449818953d4252baf1cf8d49d718ce220b9173567fc97 handshake=Noise_NNpsk0_25519_AESGCM_BLAKE2s gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254a5fa9343b5a5a66947027412f3520c9b msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484663ba0d0f5cf7fc7257567f2f27c2fd627 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=7bb01e54840881ef4911b030602c665e4799652c4260b32f67119716cf2dac msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=63c4c131b3c079eb101cf9cd03627e5d50e693513402efb26d5f46d62ba1e0 handshake=Noise_NNpsk1_25519_AESGCM_BLAKE2s gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254cedfcc8eac13a24e1e689e3cfc7baf62 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466d387cd8664f5037d39aac8746ccd06b9 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=8617a57d1a212d915a093ba691465321b3a5e83a2a09334bc17a66e07f340b msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=bbddd9a51a1fe99634ea09790bfab387047c0bee2b540cbaa009e4b33f547d handshake=Noise_NNpsk2_25519_AESGCM_BLAKE2s gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662540ec56f5161a8755374b1848c641eddc3 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466478d9b9fb165b8eb3f4b6718e1f1e245 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=a924b18a801dad51bf702aa50f87d8f3e2d3e54cb76c94493f5305768f5f64 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=0c94546ec021695355755f7e82ce1a12679f8df2d5a5b6e533c4cdc645a5f9 handshake=Noise_NN_25519_AESGCM_BLAKE2s gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846626cb189266923cb8ce8e3fc80aa75d92678f6bfe13be7ff6aed1 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=0909e697fc6dca9ffceffebee77c39187c353d4256d66f6d42ff5d6a8b5bcd msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=0770576631856631b449818953d4252baf1cf8d49d718ce220b9173567fc97 handshake=Noise_NNpsk0_25519_AESGCM_BLAKE2s gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625499813d4f7cdbccb39053c90fa0232673ba28f11c1e925324c845 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484665a507bc4cb8222edadcb8a3c7dd94841834ec807680c5446d280 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=7bb01e54840881ef4911b030602c665e4799652c4260b32f67119716cf2dac msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=63c4c131b3c079eb101cf9cd03627e5d50e693513402efb26d5f46d62ba1e0 handshake=Noise_NNpsk1_25519_AESGCM_BLAKE2s gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254294dfe9247d7b2223638957faf2dd1bd18941b394140015d37ed msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846638d4e172b074863b2c8e80ee9b319d2677512167577c8d105ecb msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=8617a57d1a212d915a093ba691465321b3a5e83a2a09334bc17a66e07f340b msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=bbddd9a51a1fe99634ea09790bfab387047c0bee2b540cbaa009e4b33f547d handshake=Noise_NNpsk2_25519_AESGCM_BLAKE2s gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541b462c2b118f585719b4d2c84f08adfde3c8f24735ec8df3c5d7 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484664f09893c38c139765e44f2d6a49210f05ada099fb05937f7aa5b msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=a924b18a801dad51bf702aa50f87d8f3e2d3e54cb76c94493f5305768f5f64 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=0c94546ec021695355755f7e82ce1a12679f8df2d5a5b6e533c4cdc645a5f9 handshake=Noise_KN_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846664441190c10b03429a717dd68392cbc8 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=6e0b143fbe681fc040a0a32845a6766583a5b8b4615d43ef71a3345aa54e0e msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=8dc5ed06a9e9017a62f1aa3a25421a3264272044251bd7ac02e849872891ae handshake=Noise_KNpsk0_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254a3c3f95a1f27a264236e3ef44c8e4dde msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466facb3853ea6a08b4de16f555048fa04b msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=bc4c502252e5db42ab745807e689b501dddc0840bd276eb455d6ea1b6a9d8a msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=5cdd0dea469b39b46374e168adb6948bc0ec1b132381214394dd3d98d4e7c3 handshake=Noise_KNpsk1_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662545926fa51ad53d91b7a4f033a897a8930 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484661cb9f7cae8dc0045a8d861c5ddfa6aef msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=3af9773fcd5a612c186cf94c7b5e3d008c40d036be9227cf8f90a90bf59cdb msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=60f7a4448202b3535ab559b4a2b28583bf8475c4858b16e4460733a3b44bef handshake=Noise_KNpsk2_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625401d487a4cde829a7e46047baadfa8d75 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466ed06a23fee4f0d95820c4e1f3cbea303 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=415377cf4fe494b8bad397ec42f85401f9a11edfd752e6aaa30a5951e8c5b4 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=9562176c1eb69374a4186d61cda01ec132b826ae9e1644869a1fd5c93fde04 handshake=Noise_KN_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846678409b14b108da18bef6fbe76cd430200b471f2df5b968638a83 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=6e0b143fbe681fc040a0a32845a6766583a5b8b4615d43ef71a3345aa54e0e msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=8dc5ed06a9e9017a62f1aa3a25421a3264272044251bd7ac02e849872891ae handshake=Noise_KNpsk0_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254ac9a08aee31a00906e2c62ee6d06c88657479d8e51978da1bf21 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466d46bd6b98eb3ca668bacae3ee77e683c19ca06381ae1ac2f32ff msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=bc4c502252e5db42ab745807e689b501dddc0840bd276eb455d6ea1b6a9d8a msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=5cdd0dea469b39b46374e168adb6948bc0ec1b132381214394dd3d98d4e7c3 handshake=Noise_KNpsk1_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254f29b85c3ab64ada6747a6dab2e1e7a4cd26cdc28eb5a00cc1083 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484661ea48045213d2c8ac201ebab565e2df47e1a3e5fa9c13c674bff msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=3af9773fcd5a612c186cf94c7b5e3d008c40d036be9227cf8f90a90bf59cdb msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=60f7a4448202b3535ab559b4a2b28583bf8475c4858b16e4460733a3b44bef handshake=Noise_KNpsk2_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c5328cfba6436415d31dd4d5a50775cff355cb2d891dbbbf2af5 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466325031532f718417152caa21e8709f94486d527f4c2b946ebacd msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=415377cf4fe494b8bad397ec42f85401f9a11edfd752e6aaa30a5951e8c5b4 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=9562176c1eb69374a4186d61cda01ec132b826ae9e1644869a1fd5c93fde04 handshake=Noise_KN_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466fe09eb752d902e72e41d1b0daeb64844 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=6e0b143fbe681fc040a0a32845a6766583a5b8b4615d43ef71a3345aa54e0e msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=8dc5ed06a9e9017a62f1aa3a25421a3264272044251bd7ac02e849872891ae handshake=Noise_KNpsk0_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662540776f384d8dcbb0929c9ee5b13e3f0bd msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846689bd16f0e54d870dcbf293d64cb12ec5 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=bc4c502252e5db42ab745807e689b501dddc0840bd276eb455d6ea1b6a9d8a msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=5cdd0dea469b39b46374e168adb6948bc0ec1b132381214394dd3d98d4e7c3 handshake=Noise_KNpsk1_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625417510ed9f5b0c12079db76a8aa285424 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c716e009a9464a48d138b46f035805e0 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=3af9773fcd5a612c186cf94c7b5e3d008c40d036be9227cf8f90a90bf59cdb msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=60f7a4448202b3535ab559b4a2b28583bf8475c4858b16e4460733a3b44bef handshake=Noise_KNpsk2_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c32a9ede6e1cbd9b00610e80d2fdb2ea msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484662d90cba0b594c0e4e0a7c96bb616f298 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=415377cf4fe494b8bad397ec42f85401f9a11edfd752e6aaa30a5951e8c5b4 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=9562176c1eb69374a4186d61cda01ec132b826ae9e1644869a1fd5c93fde04 handshake=Noise_KN_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846678409b14b108da18bef6fc2974baa4e86c3595efbe635b98b3e2 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=6e0b143fbe681fc040a0a32845a6766583a5b8b4615d43ef71a3345aa54e0e msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=8dc5ed06a9e9017a62f1aa3a25421a3264272044251bd7ac02e849872891ae handshake=Noise_KNpsk0_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254ac9a08aee31a00906e2c8929167672a0faf33aacb6f2e727797f msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466d46bd6b98eb3ca668bacb80eebd706c1b753a568ab393636daef msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=bc4c502252e5db42ab745807e689b501dddc0840bd276eb455d6ea1b6a9d8a msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=5cdd0dea469b39b46374e168adb6948bc0ec1b132381214394dd3d98d4e7c3 handshake=Noise_KNpsk1_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254f29b85c3ab64ada6747a071c3c7927ef1c434aa4b4269d189234 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484661ea48045213d2c8ac201e6357b0a142b0804024efe755a596501 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=3af9773fcd5a612c186cf94c7b5e3d008c40d036be9227cf8f90a90bf59cdb msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=60f7a4448202b3535ab559b4a2b28583bf8475c4858b16e4460733a3b44bef handshake=Noise_KNpsk2_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c5328cfba6436415d31d40a72370f1f0b6ac748bae773d61cf5f msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466325031532f718417152cd4e5e44d98111867943972554a320228 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=415377cf4fe494b8bad397ec42f85401f9a11edfd752e6aaa30a5951e8c5b4 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=9562176c1eb69374a4186d61cda01ec132b826ae9e1644869a1fd5c93fde04 handshake=Noise_NK_25519_AESGCM_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662540aca6f817356230937ac107dff4a8f06 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484663ad767eba25b2c944082016459215cb2 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=a6f4e53c8e82abdc1877317ee614b2cf1c36694a48536e932f5d5970709c23 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=4d08651c70754decf41c8b79d1fe8e8da60cdf64cbb521ab1f5be171617988 handshake=Noise_NKpsk0_25519_AESGCM_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662546e8a8ab143d0babd5bb2974dfd62d421 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466fa53f63f7b00b20da8a8a24a249b8d00 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=e73eb987000909cc3ce02566091760e69f524f23372277fbd94d2b335ee020 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=0e503113b6f99ce899fee344347bcc59165d827f4982c9a0af6f53c45608ce handshake=Noise_NKpsk1_25519_AESGCM_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625467403733097e5ba8c0684832b42d212b msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484663c43292db7e2a865604940ab900ec307 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=f3415ea0c9132c69c06f29873d9192a0910a6763addfc4e306b13c4e06c57c msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=c61e0bcc08bc9e2571eabbd48f192ecc3e846463f3b05c4cae6ffa956dce72 handshake=Noise_NKpsk2_25519_AESGCM_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254f00172caeafa67f00bcf4b6a286d653c msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466fe2a80ce5f664bdeef527317284ef4b6 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=ed4dfff4fbbf57c63acf124128f12d3323706cd4212796f13ba3391f83e249 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=8009206bac08e514df2c83e3238bf92c5dc209430cbecb936b1a93813de1dc handshake=Noise_NK_25519_AESGCM_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254bdf08b60ecbebcc2f5068183649b76c2cc2674fd4d580911729d msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466dacd38c1ad625caa0a4720445c6ac87f16e4b09d8a27489483fa msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=a6f4e53c8e82abdc1877317ee614b2cf1c36694a48536e932f5d5970709c23 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=4d08651c70754decf41c8b79d1fe8e8da60cdf64cbb521ab1f5be171617988 handshake=Noise_NKpsk0_25519_AESGCM_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548bf52c4caaaaacfe7a715566f9652044280280d56a5301e3d4f7 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846694cf846b0941f8f8a46354a686838fa6efbeff8490cd3279ce6e msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=e73eb987000909cc3ce02566091760e69f524f23372277fbd94d2b335ee020 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=0e503113b6f99ce899fee344347bcc59165d827f4982c9a0af6f53c45608ce handshake=Noise_NKpsk1_25519_AESGCM_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625437ad3a66b77c777309c59e3ffb70fdaaa1998f0ea6a7fea4aaf7 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484662e4888b3081c3c5f198244d6a8245e8cbe0d843b4885374b5823 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=f3415ea0c9132c69c06f29873d9192a0910a6763addfc4e306b13c4e06c57c msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=c61e0bcc08bc9e2571eabbd48f192ecc3e846463f3b05c4cae6ffa956dce72 handshake=Noise_NKpsk2_25519_AESGCM_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662546f881ee2ccd20f3d6a748ee7bd31867d252abc83c3a2e810bc01 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466cc2683e6a737d2a339a6de63b341afc6e6da4f2e6acc295ba0c5 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=ed4dfff4fbbf57c63acf124128f12d3323706cd4212796f13ba3391f83e249 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=8009206bac08e514df2c83e3238bf92c5dc209430cbecb936b1a93813de1dc handshake=Noise_NK_25519_AESGCM_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625418771dd05bb254570cd36afecdd1f06b msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466cc535116cff2a6e84875769de7d118fa msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=a6f4e53c8e82abdc1877317ee614b2cf1c36694a48536e932f5d5970709c23 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=4d08651c70754decf41c8b79d1fe8e8da60cdf64cbb521ab1f5be171617988 handshake=Noise_NKpsk0_25519_AESGCM_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254235c1295c64674e9d24b1ac8387ceff0 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466f95d8632a153e1ba48ba7c604ac95c2c msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=e73eb987000909cc3ce02566091760e69f524f23372277fbd94d2b335ee020 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=0e503113b6f99ce899fee344347bcc59165d827f4982c9a0af6f53c45608ce handshake=Noise_NKpsk1_25519_AESGCM_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662547bb352c4574bffe38b6f2fd437245349 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466b4d595560f6d4bab34135d6d5f0e95b9 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=f3415ea0c9132c69c06f29873d9192a0910a6763addfc4e306b13c4e06c57c msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=c61e0bcc08bc9e2571eabbd48f192ecc3e846463f3b05c4cae6ffa956dce72 handshake=Noise_NKpsk2_25519_AESGCM_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625412175e79501bbdb8f9c34f832d70faf5 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484660faec0e7d65e6e02e540a12f372524de msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=ed4dfff4fbbf57c63acf124128f12d3323706cd4212796f13ba3391f83e249 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=8009206bac08e514df2c83e3238bf92c5dc209430cbecb936b1a93813de1dc handshake=Noise_NK_25519_AESGCM_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254bdf08b60ecbebcc2f5066ba2dc101956c40473b8c6dfbc24f58b msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466dacd38c1ad625caa0a4702d85babf3841256b5660d3228dc121c msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=a6f4e53c8e82abdc1877317ee614b2cf1c36694a48536e932f5d5970709c23 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=4d08651c70754decf41c8b79d1fe8e8da60cdf64cbb521ab1f5be171617988 handshake=Noise_NKpsk0_25519_AESGCM_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548bf52c4caaaaacfe7a71f5e1496c23adbee3020d4eb45211637a msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846694cf846b0941f8f8a463cfc791d89367bcce3320c4f0460a91b9 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=e73eb987000909cc3ce02566091760e69f524f23372277fbd94d2b335ee020 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=0e503113b6f99ce899fee344347bcc59165d827f4982c9a0af6f53c45608ce handshake=Noise_NKpsk1_25519_AESGCM_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625437ad3a66b77c777309c5d7683c6082c82b5adb434c70325029cc msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484662e4888b3081c3c5f1982d5856d4940dbdd17c07b285e331dce60 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=f3415ea0c9132c69c06f29873d9192a0910a6763addfc4e306b13c4e06c57c msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=c61e0bcc08bc9e2571eabbd48f192ecc3e846463f3b05c4cae6ffa956dce72 handshake=Noise_NKpsk2_25519_AESGCM_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662546f881ee2ccd20f3d6a74cad4c7694924e6494b10399373d97cd1 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466cc2683e6a737d2a339a62c5b55ccd5da93091e0295f94ae259b7 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=ed4dfff4fbbf57c63acf124128f12d3323706cd4212796f13ba3391f83e249 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=8009206bac08e514df2c83e3238bf92c5dc209430cbecb936b1a93813de1dc handshake=Noise_KK_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662544cfcee5c7fcaf9d598c33703fd0c2776 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484665e6949aaa57066895baf7ab83e004ae5 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=31f8fb1587255c4b0dd700a9b6c8f43f8a784c2b182fd9c90e236708314b5d msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=e536a299bf11d6abe9d3a94183d029f1eb3e12e11b3dab41e21789869dcc93 handshake=Noise_KKpsk0_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662549b23f41fd589eccd4f092f268f28d26b msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846660c9d890cdde369d3d997ed453e687da msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=91e44c0d5d9cd28abf7c8b30bb2e3d0550239b9e17953d9f089ec3d930df27 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=2e741b2768bfd0bbfeda04cbd22add5afa67b677a3b01af28dbaf63159b9bc handshake=Noise_KKpsk1_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254a0c920d6078d924f12ff949a21dc7538 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846682eb33bc6a6c88a84d4dc18a5d637337 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=d95cc1c999c97bbeedd5c7ec4652084d4b62a16f82500d755aa618eb4a53e5 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=868d5fcee2fc24e0449b05781857718f8a52fa5c7e3e91e31835579480126c handshake=Noise_KKpsk2_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662542c378d98d2cbcf1bd35e56b9dc028451 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466222d4ef8c802a217923cc92c7d12ff70 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=fe234b7f281411b7c6b3d7b75466259f4e5f05c12ba78c04f44432f0fba361 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=9e35422ab4388dd10073b1a0ef26ad00041372fdf968809e67f56f1b6ef723 handshake=Noise_KK_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548b607e12f23e87019e6edd5ff907e3244c4faabde9dd7f413268 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484667f550ee88c31bb77034f6b25459148fe70370546a6e427b27260 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=31f8fb1587255c4b0dd700a9b6c8f43f8a784c2b182fd9c90e236708314b5d msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=e536a299bf11d6abe9d3a94183d029f1eb3e12e11b3dab41e21789869dcc93 handshake=Noise_KKpsk0_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254aa72dba4eb5155d2465ab23ff1c5f93b23534b5f3e4af45250fd msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846662d579964a47442efacbe7a4d3d39194eeb4b540be23480bad21 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=91e44c0d5d9cd28abf7c8b30bb2e3d0550239b9e17953d9f089ec3d930df27 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=2e741b2768bfd0bbfeda04cbd22add5afa67b677a3b01af28dbaf63159b9bc handshake=Noise_KKpsk1_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662549e185b6bf0ab96577514a994636c9f591469389a01313efd8bd2 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466678170eb78b10bba2423cc2a8177294aae0ef03d0baaf925d9d7 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=d95cc1c999c97bbeedd5c7ec4652084d4b62a16f82500d755aa618eb4a53e5 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=868d5fcee2fc24e0449b05781857718f8a52fa5c7e3e91e31835579480126c handshake=Noise_KKpsk2_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254669c71c550b8a43b3435e62f9eb9a7e2b5b4ee7736ec81cd5b48 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466728e2a0d6eeceaee629ad6b31058960aaf8a1c97905808a811a4 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=fe234b7f281411b7c6b3d7b75466259f4e5f05c12ba78c04f44432f0fba361 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=9e35422ab4388dd10073b1a0ef26ad00041372fdf968809e67f56f1b6ef723 handshake=Noise_KK_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254287c6242f3601fc5c1bb6fcb4624c2c7 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466643b4a8d96d6ecdbe3237ac65f97c9d1 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=31f8fb1587255c4b0dd700a9b6c8f43f8a784c2b182fd9c90e236708314b5d msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=e536a299bf11d6abe9d3a94183d029f1eb3e12e11b3dab41e21789869dcc93 handshake=Noise_KKpsk0_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625418e6f83705c0ba5686b5e6c6fde73696 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466bb489365fc40d89e5eefae396f974201 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=91e44c0d5d9cd28abf7c8b30bb2e3d0550239b9e17953d9f089ec3d930df27 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=2e741b2768bfd0bbfeda04cbd22add5afa67b677a3b01af28dbaf63159b9bc handshake=Noise_KKpsk1_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662544bf11255412b8f2aa4998140f01f99d1 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466fe35b699e1018d03d289945c4b2e7f42 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=d95cc1c999c97bbeedd5c7ec4652084d4b62a16f82500d755aa618eb4a53e5 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=868d5fcee2fc24e0449b05781857718f8a52fa5c7e3e91e31835579480126c handshake=Noise_KKpsk2_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254b5821e0e9c8793543c024b5cd1f2db2d msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484663ee55655094444f57d6b2e120a31c73e msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=fe234b7f281411b7c6b3d7b75466259f4e5f05c12ba78c04f44432f0fba361 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=9e35422ab4388dd10073b1a0ef26ad00041372fdf968809e67f56f1b6ef723 handshake=Noise_KK_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548b607e12f23e87019e6eb13b92b5c3d17ba0183cb1389dcef1a6 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484667f550ee88c31bb77034f98d4889d5f34812eb534a2eca91ba158 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=31f8fb1587255c4b0dd700a9b6c8f43f8a784c2b182fd9c90e236708314b5d msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=e536a299bf11d6abe9d3a94183d029f1eb3e12e11b3dab41e21789869dcc93 handshake=Noise_KKpsk0_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254aa72dba4eb5155d2465a99e91f15ca6c1ffa47e49328ada51b0e msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846662d579964a47442efacb52b05a270d3e7875aa8266a03076750c msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=91e44c0d5d9cd28abf7c8b30bb2e3d0550239b9e17953d9f089ec3d930df27 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=2e741b2768bfd0bbfeda04cbd22add5afa67b677a3b01af28dbaf63159b9bc handshake=Noise_KKpsk1_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662549e185b6bf0ab965775140f26a11fb5f259000251c39c78189511 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466678170eb78b10bba2423c39edf7b3642c622754f7e6de1afc949 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=d95cc1c999c97bbeedd5c7ec4652084d4b62a16f82500d755aa618eb4a53e5 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=868d5fcee2fc24e0449b05781857718f8a52fa5c7e3e91e31835579480126c handshake=Noise_KKpsk2_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254669c71c550b8a43b34354d21b89675f5c3ab513ce0b34156462e msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466728e2a0d6eeceaee629a7e4b94070395666bc89812f54a5e443b msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=fe234b7f281411b7c6b3d7b75466259f4e5f05c12ba78c04f44432f0fba361 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=9e35422ab4388dd10073b1a0ef26ad00041372fdf968809e67f56f1b6ef723 handshake=Noise_NX_25519_AESGCM_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484663cab12734ea8f3f71a191dc053eb280e1760e951ba66c23b2d5d090d325f2bd154f933398586078af56948c397a8e522e525a530c01555483befa16d03b0a992 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=8436ee9176feeba72f40eaf8763e62578ad131ddaf3d0e4706f669b0746370 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=cc209ffad0968216785972cf62f4288fee898e542b62dba05cf740beac6912 handshake=Noise_NXpsk0_25519_AESGCM_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625407406c210acab2efa5a752bfc7f60f6a msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466e6de020041b1ed9cc0abc1ec10ffd7aab8841f05b32505bd9a4a111e3384642a8ae942b131e5cd1ffcf44770a663898c20a38eefe33480f356b9e87337056524 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=6a6eb79d6d2329043f6df6945f6b8dc1fad535c008f4393fb464323f179da8 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=58ba0042ea02ac6e21a075a4249ac396af30b38fd6db7209070b5594313a5d handshake=Noise_NXpsk1_25519_AESGCM_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254e3b84ba49e616863bae44f4ccf12dea5 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484660fe07338f262359efd7e66ec1129694e277c126937f27237c19af6dfb8fe373329bfbb3fbcca0bee5b4c9b396fc871dcecb0833e162796fde3b1a82e245eff47 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=e614e802e27f6218560f56fc3ac90afefc38855e54605b1ab8477408c4289c msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=7799c71060564989f88dcde89adbc68df6298afc5816cf5ccb1a3810ddd471 handshake=Noise_NXpsk2_25519_AESGCM_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254d98d5b739c87988f54e7981441d55055 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466945048334654701f49de37c70d567af745ec79534fc7a5b274085e6c60e07f98190ba719c270cec77adeb7bf9def9aec80a7e9b7aab8bb527908ce5ed0cb1549 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=18369c84a08bfe295c0b04773443e42ed07f8361d2fdc2d0c59dcd21284f76 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=e02c82141ccd4004caf2e15e112a0660475627f19400491c41468abdf04fb2 handshake=Noise_NX_25519_AESGCM_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484663cab12734ea8f3f71a191dc053eb280e1760e951ba66c23b2d5d090d325f2bd11c587cf45dd929e588e534b20082a5d02cf02b2b4188e655d60b9cb741196cbcef63ecdd5afa9805fee5 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=8436ee9176feeba72f40eaf8763e62578ad131ddaf3d0e4706f669b0746370 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=cc209ffad0968216785972cf62f4288fee898e542b62dba05cf740beac6912 handshake=Noise_NXpsk0_25519_AESGCM_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254fa0a83212633a12d6bccc46857f520db476dcaf663e969d2c865 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466e6de020041b1ed9cc0abc1ec10ffd7aab8841f05b32505bd9a4a111e3384642ad3b251d1a6eba26ecafaea916748c17a9c70de5e1fa6e0dd0b9954871761e1d485353b35615d6062a17a msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=6a6eb79d6d2329043f6df6945f6b8dc1fad535c008f4393fb464323f179da8 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=58ba0042ea02ac6e21a075a4249ac396af30b38fd6db7209070b5594313a5d handshake=Noise_NXpsk1_25519_AESGCM_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254f6807e4adc8d6dbb87a05381de4d11f6c8f24c89895fffea5d44 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484660fe07338f262359efd7e66ec1129694e277c126937f27237c19af6dfb8fe3733bfde55feb1e178d339b71b6843e8ad41ac5976d65bcc430454e87115cb8ed1f8af531005196898fbdd0a msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=e614e802e27f6218560f56fc3ac90afefc38855e54605b1ab8477408c4289c msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=7799c71060564989f88dcde89adbc68df6298afc5816cf5ccb1a3810ddd471 handshake=Noise_NXpsk2_25519_AESGCM_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625458a2a3b6fdb1de5fbee4c4d1b909cc23178033a2176354938109 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466945048334654701f49de37c70d567af745ec79534fc7a5b274085e6c60e07f98137e010d13a87401d82cf9fa31debe616dfea637d445322350acc39cce7c5750354fae351fa25d85aedf msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=18369c84a08bfe295c0b04773443e42ed07f8361d2fdc2d0c59dcd21284f76 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=e02c82141ccd4004caf2e15e112a0660475627f19400491c41468abdf04fb2 handshake=Noise_NX_25519_AESGCM_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484663cab12734ea8f3f71a191dc053eb280e1760e951ba66c23b2d5d090d325f2bd180a5ed192be8c4a710ac09ab86735c9d3242bc60c5111ea1e046d3d44a56357b msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=8436ee9176feeba72f40eaf8763e62578ad131ddaf3d0e4706f669b0746370 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=cc209ffad0968216785972cf62f4288fee898e542b62dba05cf740beac6912 handshake=Noise_NXpsk0_25519_AESGCM_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662546f0bbfa57497b723e7b2df35f66e5b49 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466e6de020041b1ed9cc0abc1ec10ffd7aab8841f05b32505bd9a4a111e3384642a5689f8f05401600a5b6d74e118644166f25301de37703a013fdad04de6aaddf8 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=6a6eb79d6d2329043f6df6945f6b8dc1fad535c008f4393fb464323f179da8 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=58ba0042ea02ac6e21a075a4249ac396af30b38fd6db7209070b5594313a5d handshake=Noise_NXpsk1_25519_AESGCM_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662547e8ba6bebe1a900604e09647da4bea6b msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484660fe07338f262359efd7e66ec1129694e277c126937f27237c19af6dfb8fe37332b83b975639a4c5476e4b308afe63b3d7e0502681de388787adaccb7912c594c msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=e614e802e27f6218560f56fc3ac90afefc38855e54605b1ab8477408c4289c msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=7799c71060564989f88dcde89adbc68df6298afc5816cf5ccb1a3810ddd471 handshake=Noise_NXpsk2_25519_AESGCM_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254abd5c4dbcd9bec08f5785ceef88c8c2f msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466945048334654701f49de37c70d567af745ec79534fc7a5b274085e6c60e07f987241469b3c8de0e1b02a94b215ead3207a8c188be0a5c7677e33d1d765308d42 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=18369c84a08bfe295c0b04773443e42ed07f8361d2fdc2d0c59dcd21284f76 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=e02c82141ccd4004caf2e15e112a0660475627f19400491c41468abdf04fb2 handshake=Noise_NX_25519_AESGCM_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484663cab12734ea8f3f71a191dc053eb280e1760e951ba66c23b2d5d090d325f2bd1819782ed84cf6815a49c0186e95910d22cf02b2b4188e655d60b3f1f5941cce7dec8fa01ce3c55c671c2 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=8436ee9176feeba72f40eaf8763e62578ad131ddaf3d0e4706f669b0746370 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=cc209ffad0968216785972cf62f4288fee898e542b62dba05cf740beac6912 handshake=Noise_NXpsk0_25519_AESGCM_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254fa0a83212633a12d6bcc9a6171915f8250f6e22ee5eb9935005c msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466e6de020041b1ed9cc0abc1ec10ffd7aab8841f05b32505bd9a4a111e3384642a7b72e559f79e16ba912e9e42d693318d9c70de5e1fa6e0dd0b99aee00aea4e091c9c78558b0dda450750 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=6a6eb79d6d2329043f6df6945f6b8dc1fad535c008f4393fb464323f179da8 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=58ba0042ea02ac6e21a075a4249ac396af30b38fd6db7209070b5594313a5d handshake=Noise_NXpsk1_25519_AESGCM_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254f6807e4adc8d6dbb87a0ae8cdebfa23da36d298070b955c319ab msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484660fe07338f262359efd7e66ec1129694e277c126937f27237c19af6dfb8fe37332302e237cbffd3e19f431a1cc57ea233ac5976d65bcc430454e825bf561eaaac606af413730ed8b93383 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=e614e802e27f6218560f56fc3ac90afefc38855e54605b1ab8477408c4289c msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=7799c71060564989f88dcde89adbc68df6298afc5816cf5ccb1a3810ddd471 handshake=Noise_NXpsk2_25519_AESGCM_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625458a2a3b6fdb1de5fbee4e074465318c6eb7e520349b275865007 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466945048334654701f49de37c70d567af745ec79534fc7a5b274085e6c60e07f98412430a46f760ec9e1a6849c01302cda6dfea637d445322350acca1bb1953e282c6dca68169edb531404 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=18369c84a08bfe295c0b04773443e42ed07f8361d2fdc2d0c59dcd21284f76 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=e02c82141ccd4004caf2e15e112a0660475627f19400491c41468abdf04fb2 handshake=Noise_KX_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466d750365e947a92608f1c492f6d7a07b738ad37cd00e241497371929a94c4e6d02ec1185f23719493931cc5fa4ab2f7fb197acfe601403b4cdc967bd4cfbfaa89 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=120302ad872ca2e8e3b44a5b25ee43323ebf5abc3ac15cb6cb5a5b6367f06d msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=8e276ab45beaadc196449e0137fc9c45531a4452153b1ef0f732caa7e9fe65 handshake=Noise_KXpsk0_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625468f71c2faf195aa778d37d4cc2859372 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466d2a0c08410deab404ac28d06fd35af5d5a1f7b45db9be3842df0988cf20cc7f433847dca55766a1df984e2d6387336ee54acbd608d81d44911b68d22f18ca5af msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=c406f3b52c73e6224bd731a3ff48b84c28ce5208cab54fd266e27003a925a3 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=05e22b85e52a23eabb16edc9afae206d59c234922e75f8385e65db5a56bfe8 handshake=Noise_KXpsk1_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662549dd6608dbfbdd3cf57c0f8169912c0ae msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466106146b159cbf91766e59566ea4c89cadf4b72f33418c93919793fdf6c00642117d43f701bda94e37d0cac2bc4490ff97557188ed6165537241084fa6609d7dd msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=8a3ddb48d59389bdac13a351f63d1f47e3aae4e56f849ca12f48195e751e15 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=625c80ee8afe830d7944fc7c33bf51077d94cc75433369d849f42d63edb751 handshake=Noise_KXpsk2_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625419f548b86c9a3238c72eb37b232d8679 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466a08a362949425a6abadf4e80b05db9449b0dbdbfbec6eb5220f535d9356f58a304f0c8066c9d955713b561b2925ee07af6f62f0a218a78ca75d68e0c84fb3350 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=42f348cf45b8ad1afbc3001151fde2c70109ea3c5cfb69d3de99fb5ffae827 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=6f68b6f3d97446f0e6510305eca839209f57506f3a02cbf38280352ea0e1a1 handshake=Noise_KX_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466d750365e947a92608f1c492f6d7a07b738ad37cd00e241497371929a94c4e6d0c4391a81757745480b7942495aa1f6650aa5c2a82a32eef9e381e107cbdb021584921e8a54aca1ba1cd7 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=120302ad872ca2e8e3b44a5b25ee43323ebf5abc3ac15cb6cb5a5b6367f06d msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=8e276ab45beaadc196449e0137fc9c45531a4452153b1ef0f732caa7e9fe65 handshake=Noise_KXpsk0_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625413c4eabc370d35e3b373f9fab0cc0bbee8b4f32d3409f7cb4ead msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466d2a0c08410deab404ac28d06fd35af5d5a1f7b45db9be3842df0988cf20cc7f4290baa0275f98fb151d5b19cdab8b58a59abc604fa23da55cb1bd4704b68e91f690a23973a314a9f5dca msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=c406f3b52c73e6224bd731a3ff48b84c28ce5208cab54fd266e27003a925a3 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=05e22b85e52a23eabb16edc9afae206d59c234922e75f8385e65db5a56bfe8 handshake=Noise_KXpsk1_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254b0f32759f1f61814826cbb693d34eb145f02a963fa85a6ab4009 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466106146b159cbf91766e59566ea4c89cadf4b72f33418c93919793fdf6c0064213f1f0f4c663b52091ac62d3acf442a74f5b738a71ccc543faf343b8dc949b31c79e37545eb8764d036de msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=8a3ddb48d59389bdac13a351f63d1f47e3aae4e56f849ca12f48195e751e15 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=625c80ee8afe830d7944fc7c33bf51077d94cc75433369d849f42d63edb751 handshake=Noise_KXpsk2_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662547b501815e69557bb5cf7c66a8311d8e798bab5eb7f85ec9fa07c msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466a08a362949425a6abadf4e80b05db9449b0dbdbfbec6eb5220f535d9356f58a3588e06ea64363458b186ea7df3d01e7b69d1855ec9bd0fbf751bc2ef6243ff5bffd1225474d6bfef9e36 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=42f348cf45b8ad1afbc3001151fde2c70109ea3c5cfb69d3de99fb5ffae827 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=6f68b6f3d97446f0e6510305eca839209f57506f3a02cbf38280352ea0e1a1 handshake=Noise_KX_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466d750365e947a92608f1c492f6d7a07b738ad37cd00e241497371929a94c4e6d0bc0e94d7a1cacca75268186bde15c7b68d93f6743aa9942f32dc4996837c5a4f msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=120302ad872ca2e8e3b44a5b25ee43323ebf5abc3ac15cb6cb5a5b6367f06d msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=8e276ab45beaadc196449e0137fc9c45531a4452153b1ef0f732caa7e9fe65 handshake=Noise_KXpsk0_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254a5b967e598dfffe9edb3f022904f70e0 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466d2a0c08410deab404ac28d06fd35af5d5a1f7b45db9be3842df0988cf20cc7f461dfc24838b85365bfdf871c46adb9b14154a3cf4d24f5da0de13d84b0661caf msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=c406f3b52c73e6224bd731a3ff48b84c28ce5208cab54fd266e27003a925a3 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=05e22b85e52a23eabb16edc9afae206d59c234922e75f8385e65db5a56bfe8 handshake=Noise_KXpsk1_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662544e148e82b52660be5c80f764a5d85cae msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466106146b159cbf91766e59566ea4c89cadf4b72f33418c93919793fdf6c006421036d52401f286d5f4f2dbcf1abcca8b1e076366728cc163d434715979894289f msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=8a3ddb48d59389bdac13a351f63d1f47e3aae4e56f849ca12f48195e751e15 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=625c80ee8afe830d7944fc7c33bf51077d94cc75433369d849f42d63edb751 handshake=Noise_KXpsk2_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625435474615c969451fe17e73448a5e9cdf msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466a08a362949425a6abadf4e80b05db9449b0dbdbfbec6eb5220f535d9356f58a37944ba3ebea3c35d041afeb9fd2eb648073e2e9fb6f39243f7c010c41a3b0dd3 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=42f348cf45b8ad1afbc3001151fde2c70109ea3c5cfb69d3de99fb5ffae827 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=6f68b6f3d97446f0e6510305eca839209f57506f3a02cbf38280352ea0e1a1 handshake=Noise_KX_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466d750365e947a92608f1c492f6d7a07b738ad37cd00e241497371929a94c4e6d0f60083401ee9c6620039c34566f38f0b0aa5c2a82a32eef9e381ae8acf215c4525e92c68a6c3f7bbd537 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=120302ad872ca2e8e3b44a5b25ee43323ebf5abc3ac15cb6cb5a5b6367f06d msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=8e276ab45beaadc196449e0137fc9c45531a4452153b1ef0f732caa7e9fe65 handshake=Noise_KXpsk0_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625413c4eabc370d35e3b37348719e87dc9f4a12d1ac3b597b94a40d msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466d2a0c08410deab404ac28d06fd35af5d5a1f7b45db9be3842df0988cf20cc7f47e0091dd10704dd2b2f1e8b9eb51168459abc604fa23da55cb1b05a5dd2f586a0557c0e207704830f000 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=c406f3b52c73e6224bd731a3ff48b84c28ce5208cab54fd266e27003a925a3 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=05e22b85e52a23eabb16edc9afae206d59c234922e75f8385e65db5a56bfe8 handshake=Noise_KXpsk1_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254b0f32759f1f61814826c4976c6e28b0a7ea7abac5d434a636617 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466106146b159cbf91766e59566ea4c89cadf4b72f33418c93919793fdf6c006421188de02a0d30be64807108e8e1f6bbacf5b738a71ccc543faf34078d7e42f606594a2058747095b8657f msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=8a3ddb48d59389bdac13a351f63d1f47e3aae4e56f849ca12f48195e751e15 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=625c80ee8afe830d7944fc7c33bf51077d94cc75433369d849f42d63edb751 handshake=Noise_KXpsk2_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662547b501815e69557bb5cf7dcdf6a40f62bd8c34a0dd2f667bb010a msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466a08a362949425a6abadf4e80b05db9449b0dbdbfbec6eb5220f535d9356f58a378ff6d119df2343b7960b727fe2ffaaf69d1855ec9bd0fbf751b71ac4833b739b3e246b9b5441cad9fd2 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=42f348cf45b8ad1afbc3001151fde2c70109ea3c5cfb69d3de99fb5ffae827 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=6f68b6f3d97446f0e6510305eca839209f57506f3a02cbf38280352ea0e1a1 handshake=Noise_XN_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466988474c4bc814eac3a4eb6e448d4acd0 msg_2_payload= msg_2_ciphertext=b1a131ae945d7cccbc46e74eed3289875967c9b743dff16c2cc404ee27cbeb70af25ce82007ae6deba2a37e1085023fe89248b5245916d6450c4e4582068dcba msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=b5812ae8d9c624ecb85f39515859c1cccff15caf017bb91db106b46c6924ef msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=20231a53dcc59ca97eeaa2a43394e5b4fc073716896e9a3ccac9387ea01243 handshake=Noise_XNpsk0_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541878c2328b45e172f0dfbad0e3b3aa68 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484663471c9d8776d5e49564cab43e9e79186 msg_2_payload= msg_2_ciphertext=a87b061dff06c9a56457e1d6a4c7c4df6b8769f343c1f1b33551f6bcc263c848e3be3328718b68bed193c51fb11ff996efc661808169b463ce1248ae676f50cd msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=a5956d8aae09289cdb03185f9b63de52f1447a79e307c6e604ccf817253a5f msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=6cda6e68ed4b4402b9ae56caf4d16db4f994a5ddcf65aa9f3a915307089859 handshake=Noise_XNpsk1_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254139465c03bc36f484cfc79b470d666cd msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466704ab2dc4aeb2a61d5782c0778070e8b msg_2_payload= msg_2_ciphertext=c816ad72c489e34b006988edc566f969ed71de0eb8f1254e5ec39eae02f27426058b160cd6bf1f495b6b0256fc2466f5471a45880c790198bdd1dbb448d53e4c msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=913446cef1a493a0fd96acdd702f5d772a9842c8545a96a4ef91b068eaafeb msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=5cc60635e934808c5a577baf0287316c34364c95667ad380a0b8fc4c9a3ad4 handshake=Noise_XNpsk2_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254088fae778f2f23315be81b8c5bbf4199 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846691de153aa38c996296165b23e39e4ba5 msg_2_payload= msg_2_ciphertext=c44848a758d20c51f1207057a6b75b5c30742221577758d0dd6f4d2ec7265b6991ca389832770d6646645f078ebfacfb4ef98fb67b22ef093c90b2b2de7261f5 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=454db968e85c0aa2018661c23973686005f5add451ae7bef0eba43ca978ebb msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=660a63b91e195715c181bfc04c12d6141dd1f0a6f3b77be74dbbf4a0aae7e6 handshake=Noise_XNpsk3_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625451e1b61a8dbb4cb8e33299a9f717cc7b msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484664ee2b9a6fb5aa8606f177824e9fed5bc msg_2_payload= msg_2_ciphertext=9f5dd4a9797066f984199e97e45af174bf8cd61adfdcd0fe178e495304bf52954113aaa5963a11be301b4034533fe0d142d11f4408aa61eb1be560849c3fdf1f msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=c40a299a4178ef3fc65641b39fab602d4d0112e4df25ef5ee667101280053f msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=0d80b82f62dba76f15ae04b55da791d5e7e1ec6c2c0a66762188e3c7f69815 handshake=Noise_XN_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484668ebd9d2110458ed54d5d12597a6218330b3fcbdfb59963b6c0cd msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=b1a131ae945d7cccbc46e74eed3289875967c9b743dff16c2cc404ee27cbeb707987c7eb9fb15e7b3425014e33ee2bdedede11aff10daa4794db8599579ba04348824534044c310360ee msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=b5812ae8d9c624ecb85f39515859c1cccff15caf017bb91db106b46c6924ef msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=20231a53dcc59ca97eeaa2a43394e5b4fc073716896e9a3ccac9387ea01243 handshake=Noise_XNpsk0_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625453bcb5ed740103515a70dccc5027f82ea16645c2cf12a4d0418e msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466fe5ae95f4d654f81ba88e2da3c9073cf753f83fcaa3392795c2b msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=a87b061dff06c9a56457e1d6a4c7c4df6b8769f343c1f1b33551f6bcc263c848ccd48e7a836de5a78f57ca660f9b0c0ae4019430d508e72e8b027a3dba64aa2421c14568bc5612ca39fe msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=a5956d8aae09289cdb03185f9b63de52f1447a79e307c6e604ccf817253a5f msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=6cda6e68ed4b4402b9ae56caf4d16db4f994a5ddcf65aa9f3a915307089859 handshake=Noise_XNpsk1_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254abe5c0277ce6547f2ef97887cb94162fc9ab8cf6ea2cb46f493b msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484667ba91997827a5f176569ff971962880e2b25094007ac03a8d95e msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=c816ad72c489e34b006988edc566f969ed71de0eb8f1254e5ec39eae02f274269138a3ae41d01e9d650a02787f12d35d15ec0e8394c3c28c4a208d01b35e9f6a29f2b30436827358e296 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=913446cef1a493a0fd96acdd702f5d772a9842c8545a96a4ef91b068eaafeb msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=5cc60635e934808c5a577baf0287316c34364c95667ad380a0b8fc4c9a3ad4 handshake=Noise_XNpsk2_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625430c66d8c51d826469cb0ed6da6f0e4a3b46262b84ecf63e0174f msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846684ab0ec2868afa8fd41a339d9585c2be4aef7c24748d994e3ff8 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=c44848a758d20c51f1207057a6b75b5c30742221577758d0dd6f4d2ec7265b6901bdc2e6295cb723ece5a0204021b93950d7406e563d02635e25b6656e46e0d84ac375737476397453f2 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=454db968e85c0aa2018661c23973686005f5add451ae7bef0eba43ca978ebb msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=660a63b91e195715c181bfc04c12d6141dd1f0a6f3b77be74dbbf4a0aae7e6 handshake=Noise_XNpsk3_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c47ebd8ffeb5672cb656bbfc0dec33c35496395a6db41a88417d msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846672c56c783089c040fd9a9a3a568f1b9e6a28bf847f3e0bc30c3d msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=9f5dd4a9797066f984199e97e45af174bf8cd61adfdcd0fe178e495304bf5295104af70ebac3b9df92578c538c2392360020415ec8cf0ee4c2dbbe42223069e1c1deb42a2959eea770f8 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=c40a299a4178ef3fc65641b39fab602d4d0112e4df25ef5ee667101280053f msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=0d80b82f62dba76f15ae04b55da791d5e7e1ec6c2c0a66762188e3c7f69815 handshake=Noise_XN_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846673271030e0003fb2df82539007eca645 msg_2_payload= msg_2_ciphertext=b1a131ae945d7cccbc46e74eed3289875967c9b743dff16c2cc404ee27cbeb70e4c109520e2d30a41c95652cd08b77d4df4a342bd396735eab5e28b47620ab8a msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=b5812ae8d9c624ecb85f39515859c1cccff15caf017bb91db106b46c6924ef msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=20231a53dcc59ca97eeaa2a43394e5b4fc073716896e9a3ccac9387ea01243 handshake=Noise_XNpsk0_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625436c9321ebf714c9519214b097526e929 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484664745d67a61913ce52d624f8df114c9b0 msg_2_payload= msg_2_ciphertext=a87b061dff06c9a56457e1d6a4c7c4df6b8769f343c1f1b33551f6bcc263c8483b4480058a82d425f3e43396950abbc58cd5097f9b26a79b0074d50200d2aa9b msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=a5956d8aae09289cdb03185f9b63de52f1447a79e307c6e604ccf817253a5f msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=6cda6e68ed4b4402b9ae56caf4d16db4f994a5ddcf65aa9f3a915307089859 handshake=Noise_XNpsk1_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662544ad2c659c6e1ca08e814589f0b4ab8da msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466d34fd899cd1663695b2898236c3e0b5f msg_2_payload= msg_2_ciphertext=c816ad72c489e34b006988edc566f969ed71de0eb8f1254e5ec39eae02f27426a7a4a69a02c7173a0ed58f36ef99bb7ed04b7ea534f8cfdc3df971fc5d83d612 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=913446cef1a493a0fd96acdd702f5d772a9842c8545a96a4ef91b068eaafeb msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=5cc60635e934808c5a577baf0287316c34364c95667ad380a0b8fc4c9a3ad4 handshake=Noise_XNpsk2_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254b0d6eb79c92622a3a96d2cbde54d5ee1 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846613d3b417279df8b6bf62ea4c898c1ccf msg_2_payload= msg_2_ciphertext=c44848a758d20c51f1207057a6b75b5c30742221577758d0dd6f4d2ec7265b692d513bf753446df5d0cdcb2ca7b812e2f2fe48a691a82468faac983edca29a53 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=454db968e85c0aa2018661c23973686005f5add451ae7bef0eba43ca978ebb msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=660a63b91e195715c181bfc04c12d6141dd1f0a6f3b77be74dbbf4a0aae7e6 handshake=Noise_XNpsk3_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662544c00554c4225bf63afcbbf37eaf0bb7c msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846686ba345caf5f9a6c1af1d61c0ebebabb msg_2_payload= msg_2_ciphertext=9f5dd4a9797066f984199e97e45af174bf8cd61adfdcd0fe178e495304bf52954b0996fc15cbe197806147e53701f6b3449a291a4fa39281652e1089230529c1 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=c40a299a4178ef3fc65641b39fab602d4d0112e4df25ef5ee667101280053f msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=0d80b82f62dba76f15ae04b55da791d5e7e1ec6c2c0a66762188e3c7f69815 handshake=Noise_XN_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484668ebd9d2110458ed54d5ddccba5d5ecd3cbc9839829239a072d47 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=b1a131ae945d7cccbc46e74eed3289875967c9b743dff16c2cc404ee27cbeb70087cae99cdb9325ed5d8e298eaa530a2dede11aff10daa4794db4e83b79ef22753e3dbe12caeb949dc6d msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=b5812ae8d9c624ecb85f39515859c1cccff15caf017bb91db106b46c6924ef msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=20231a53dcc59ca97eeaa2a43394e5b4fc073716896e9a3ccac9387ea01243 handshake=Noise_XNpsk0_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625453bcb5ed740103515a707998faf9a6f44cdee5b6d00344ad53e7 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466fe5ae95f4d654f81ba8861439ac7a95d1f953ba67f3842a18432 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=a87b061dff06c9a56457e1d6a4c7c4df6b8769f343c1f1b33551f6bcc263c8482aa326dc128555199a32b5d152079b5be4019430d508e72e8b028ee24bf4b647ecb32c58f90e9bbeed5c msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=a5956d8aae09289cdb03185f9b63de52f1447a79e307c6e604ccf817253a5f msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=6cda6e68ed4b4402b9ae56caf4d16db4f994a5ddcf65aa9f3a915307089859 handshake=Noise_XNpsk1_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254abe5c0277ce6547f2ef907329e13b94de50d15352ae9d78508e3 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484667ba91997827a5f176569ed5acaf721d9134fae48f89e345f6656 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=c816ad72c489e34b006988edc566f969ed71de0eb8f1254e5ec39eae02f27426df4e9fc31bfc969eb43577d1a4b8fe5b15ec0e8394c3c28c4a201364d8f1cc36146d4e71612d0ac7bb7a msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=913446cef1a493a0fd96acdd702f5d772a9842c8545a96a4ef91b068eaafeb msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=5cc60635e934808c5a577baf0287316c34364c95667ad380a0b8fc4c9a3ad4 handshake=Noise_XNpsk2_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625430c66d8c51d826469cb091809304068a4c45b31d201e3d6984d9 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846684ab0ec2868afa8fd41a8364284dcac1f6504dcbfb64f7fc2c89 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=c44848a758d20c51f1207057a6b75b5c30742221577758d0dd6f4d2ec7265b6955b7fbb5a9569540fb2894de52721ca250d7406e563d02635e2538f99a17e3c60de4afdc7f6845d12ffb msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=454db968e85c0aa2018661c23973686005f5add451ae7bef0eba43ca978ebb msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=660a63b91e195715c181bfc04c12d6141dd1f0a6f3b77be74dbbf4a0aae7e6 handshake=Noise_XNpsk3_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c47ebd8ffeb5672cb6563d3b2e8a24f22064c2824778c9ee1e1d msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846672c56c783089c040fd9aaf2198289d220313c7d715b060de7d11 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=9f5dd4a9797066f984199e97e45af174bf8cd61adfdcd0fe178e495304bf5295949f59aa6dcd20a9c8878b89303af7390020415ec8cf0ee4c2dbf425b90a723b4e45f296f6dd79243adf msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=c40a299a4178ef3fc65641b39fab602d4d0112e4df25ef5ee667101280053f msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=0d80b82f62dba76f15ae04b55da791d5e7e1ec6c2c0a66762188e3c7f69815 handshake=Noise_IN_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548f40c5adb68f25624ae5b214ea767a6ec94d829d3d7b5e1ad1ba6f3e2138285f msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466dc3a487d9accc35b9ae9b1c394217018 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=a19d6a777dfbe1012232727ad0c04cb68d76b903dcc87dd505b85bab3e5433 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=ce308865d60653f9e63cab1f039b63261ed5c37d1369020db0b2d8965a4b5a handshake=Noise_INpsk0_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254fa66a1d13c5e040a571cb62797f389f0bdc93b9d6a3d2916377e9def67461897b1fc44f1e9763665e80e00027d1f18182163f1ddd3634dd27996f029a73bad65 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466a15c2ffd0b6dde640803eab560d0a319 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=412466f3e30dbe8a0fcf5c7623ca89cf12aa18f0032261d8dbdb01ddfd9722 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=0c261cf8d2744677ee33080e07dec1fae865dcd42ce44f0bd11deb0103d46f handshake=Noise_INpsk1_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662543d0a33a5ca38ecd21362d671912fda8b15c33d39b4fd6a201ccaffd930371ec7ca83d762b357eb53be91392561c46d05fe177f9abe3298172695f49d07143787 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846626f2dd6ee861f026bd4f332a4a7cf281 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=a0ca0780e8b14b25ac4c10c848700fcfe6eb3375a79646f0246140ce0a38f7 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=ba8833e1c68886ac6610c85f6577fa357a6342e9af3a631c0af908e8f1b4a6 handshake=Noise_INpsk2_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662549261456b2aeb37966de232efa6cfc0d4d53fdcd7b9dc13c6f5969bf113c23f3b4a99c06df30d020a9918405444e90c798f56c43c2f6ee53a95f35c013df24cf1 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484669e0f90ae816bc5861579e1fc3dac31cf msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=5035ddbf91e81c481603d0a90e76a9afda117318298b758ff0be2645129d8e msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=6cfd82e4b22fdd8a45c4c3778c385cda5e05538d7bf300b9dc6d11be818d71 handshake=Noise_IN_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548f40c5adb68f25624ae5b214ea767a6ec94d829d3d7b5e1ad1ba6f3e2138285f746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846680415c34cf9cd2fcc5ff07ff0515d320986d75947d3e92887e33 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=a19d6a777dfbe1012232727ad0c04cb68d76b903dcc87dd505b85bab3e5433 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=ce308865d60653f9e63cab1f039b63261ed5c37d1369020db0b2d8965a4b5a handshake=Noise_INpsk0_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254fa66a1d13c5e040a571cb62797f389f0bdc93b9d6a3d2916377e9def67461897b1fc44f1e9763665e80e00027d1f18184d5e8c562d7176a44745bc732b92f1f6a47b8fee4fc04ebb0d7b msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466e210d10ffdd00b89c314bd8e118bbcf655d41d25db568d805ada msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=412466f3e30dbe8a0fcf5c7623ca89cf12aa18f0032261d8dbdb01ddfd9722 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=0c261cf8d2744677ee33080e07dec1fae865dcd42ce44f0bd11deb0103d46f handshake=Noise_INpsk1_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662543d0a33a5ca38ecd21362d671912fda8b15c33d39b4fd6a201ccaffd930371ec7ca83d762b357eb53be91392561c46d05f58ed688af22ea17c28eae9ad84b58de5d775f4cb08d73316c88 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c6649a9c5a7cc255713f1e47aa65ea192f550a54ba3d420afe5f msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=a0ca0780e8b14b25ac4c10c848700fcfe6eb3375a79646f0246140ce0a38f7 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=ba8833e1c68886ac6610c85f6577fa357a6342e9af3a631c0af908e8f1b4a6 handshake=Noise_INpsk2_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662549261456b2aeb37966de232efa6cfc0d4d53fdcd7b9dc13c6f5969bf113c23f3b4a99c06df30d020a9918405444e90c797485540b3e84439995285bfd581df450b29769fc6b2de211a440 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484669238932916977e5aa74ab7b5f3db22ac8b916a65a3c33075008f msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=5035ddbf91e81c481603d0a90e76a9afda117318298b758ff0be2645129d8e msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=6cfd82e4b22fdd8a45c4c3778c385cda5e05538d7bf300b9dc6d11be818d71 handshake=Noise_IN_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548f40c5adb68f25624ae5b214ea767a6ec94d829d3d7b5e1ad1ba6f3e2138285f msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466e1250b022b6dd38ae0ef98de771c551f msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=a19d6a777dfbe1012232727ad0c04cb68d76b903dcc87dd505b85bab3e5433 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=ce308865d60653f9e63cab1f039b63261ed5c37d1369020db0b2d8965a4b5a handshake=Noise_INpsk0_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254fa66a1d13c5e040a571cb62797f389f0bdc93b9d6a3d2916377e9def674618979df913c2e470e1e1533482ddd46d9009f84515ec8c05d6089bef6b0db4701428 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466de2ebdfc7517338ef3e808c6a357f034 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=412466f3e30dbe8a0fcf5c7623ca89cf12aa18f0032261d8dbdb01ddfd9722 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=0c261cf8d2744677ee33080e07dec1fae865dcd42ce44f0bd11deb0103d46f handshake=Noise_INpsk1_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662543d0a33a5ca38ecd21362d671912fda8b15c33d39b4fd6a201ccaffd930371ec7a7632ec505c484737048c2713e259053d774d5a366f33a64a9369065c6e07b67 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466ef84513938c77cb34209e0d1d2bc52bc msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=a0ca0780e8b14b25ac4c10c848700fcfe6eb3375a79646f0246140ce0a38f7 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=ba8833e1c68886ac6610c85f6577fa357a6342e9af3a631c0af908e8f1b4a6 handshake=Noise_INpsk2_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662549261456b2aeb37966de232efa6cfc0d4d53fdcd7b9dc13c6f5969bf113c23f3b414349604be5302d44a87c1de3df2357e5ee5528292efb2e05ae15c414969849 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484667915d63c972f647573c2255d86bd0916 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=5035ddbf91e81c481603d0a90e76a9afda117318298b758ff0be2645129d8e msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=6cfd82e4b22fdd8a45c4c3778c385cda5e05538d7bf300b9dc6d11be818d71 handshake=Noise_IN_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548f40c5adb68f25624ae5b214ea767a6ec94d829d3d7b5e1ad1ba6f3e2138285f746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846680415c34cf9cd2fcc5ff02c8f4f0e18740f9a54b24ff9f09a690 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=a19d6a777dfbe1012232727ad0c04cb68d76b903dcc87dd505b85bab3e5433 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=ce308865d60653f9e63cab1f039b63261ed5c37d1369020db0b2d8965a4b5a handshake=Noise_INpsk0_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254fa66a1d13c5e040a571cb62797f389f0bdc93b9d6a3d2916377e9def674618979df913c2e470e1e1533482ddd46d90094d5e8c562d7176a447450da75537282462cc96b900debc7e749d msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466e210d10ffdd00b89c3148aa8c3a69d47184af76d60acfec093c2 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=412466f3e30dbe8a0fcf5c7623ca89cf12aa18f0032261d8dbdb01ddfd9722 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=0c261cf8d2744677ee33080e07dec1fae865dcd42ce44f0bd11deb0103d46f handshake=Noise_INpsk1_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662543d0a33a5ca38ecd21362d671912fda8b15c33d39b4fd6a201ccaffd930371ec7a7632ec505c484737048c2713e259053f58ed688af22ea17c28e8271a57ef385d1c0c409eb563b360eeb msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c6649a9c5a7cc255713fa8b7c1d04992e2c3b3af30d5daa82c25 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=a0ca0780e8b14b25ac4c10c848700fcfe6eb3375a79646f0246140ce0a38f7 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=ba8833e1c68886ac6610c85f6577fa357a6342e9af3a631c0af908e8f1b4a6 handshake=Noise_INpsk2_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662549261456b2aeb37966de232efa6cfc0d4d53fdcd7b9dc13c6f5969bf113c23f3b414349604be5302d44a87c1de3df23577485540b3e844399952860995d9d1c90781fe677edc6d35867e7 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484669238932916977e5aa74aafe1d638562cec623b848e26b4df7a71 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=5035ddbf91e81c481603d0a90e76a9afda117318298b758ff0be2645129d8e msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=6cfd82e4b22fdd8a45c4c3778c385cda5e05538d7bf300b9dc6d11be818d71 handshake=Noise_XK_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625490210797b3a07855f135b5bdbbddf165 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484664733671042d65e0eb2ff0a9e7a9c7c9f msg_2_payload= msg_2_ciphertext=4324e614b0f53d138eaa88364af70c285c29f6f0a39a9205a67e60c4abe97668fd8020f0feee69a839100d5f262cb9314c619d97600d2e7acef6d5d39a7489fb msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=7a58f180a45f63401657a7a4817ac5c34dae211e1fbafcb8c42aaccb6c4fd5 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=e39cc5c38f30dd358deed825a045e77c96c856d9957b5eed88c6704cd113b3 handshake=Noise_XKpsk0_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548e209c79c8ea8a562a17a10307c60e87 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484669498034db343934e058df83380897eab msg_2_payload= msg_2_ciphertext=e7ee54258e880e01a57de43cacc12c5799e34ed9beb0e3d0d64dfc3d0e1dd0bfc27656f27cc417501e9769a73d8143adba8e31493d7415a5c58cbebd6c35c278 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=d85c66f45b68d04f1317197985ebbd021defdcec3bc7902c940754c7fe7175 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=d6b2f036e6cac49e862ccbcbfd359ea858a7c8e3cff228506758633ec53276 handshake=Noise_XKpsk1_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662547ce9d900de63dd0b5e9b840ad3f12149 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466088ad43090816c338733ba917a3a1853 msg_2_payload= msg_2_ciphertext=5008b6f662503afac70502840b3520d72b641a06dbc77426475b0b83eac6aa18e595fca7739b5985df46c9dea693614d5e44c50f9c9541ce7b80be0547c94050 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=60abaa1cdd2f173576adcd2f93d5d5737c4ef63598ee3ff6c006a6eb3c9266 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=61261512d684c773a79724182988e8382cd571a3d6aa4703cf1a17a0550204 handshake=Noise_XKpsk2_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254f5ae1b7c7a2c2d21366d159eba7965a5 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466381bc604f56a554d4660ed44ff9b67b0 msg_2_payload= msg_2_ciphertext=aa2b2e3078aa0054ca436df384c021f5bef28fbe3a9fb6608fc8f0e5a9a1faff3e12483b03fa8a28bf453b2ad69e18fb28624c08b45c1117694bfa6bd86a8d15 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=25ff84a3cb83d33bdf1559428a7d55ff15bdb042db3c85321346e2894a70f9 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=8be89bcd7bf5bc0326872bf15216c83b19df6d3f14b2744fa60138e364646c handshake=Noise_XKpsk3_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625474ef4fdbe6a15dbbd752aba5a6cba0b9 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466229f6b33b965af8a156dfa1a75e674d3 msg_2_payload= msg_2_ciphertext=75ef1297edb57f0efa872372675293bc721ecb4f58ee1d87012ff7069f4ff38b2f4c335d892fc2d7dd639a86382703c9d3ef7e99a00f439f51c51e804b0ea502 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=8e2c8d3c21594d58f0d7da8d4d40cb0b47ca6b0831e5f8f4ae66966aea4c8d msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=6cba677284723c05166976ceb2146d2978e38f17e102780c71cf11416272c8 handshake=Noise_XK_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254663eea19e1c296b8b49ff4f25ea226b3a7deb26fd267bf07d26c msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466b29eebb8f9cd52c9835ec61f24bce5cf57eeb626ad1f9f23b3ac msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=4324e614b0f53d138eaa88364af70c285c29f6f0a39a9205a67e60c4abe97668ce4e19a9e6ffb5c7faee8b79e3abe64f8bc983cb75059b3f3901d2dad6001f5d28fa78aa8749effe3566 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=7a58f180a45f63401657a7a4817ac5c34dae211e1fbafcb8c42aaccb6c4fd5 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=e39cc5c38f30dd358deed825a045e77c96c856d9957b5eed88c6704cd113b3 handshake=Noise_XKpsk0_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662544063ca1a8f35a6c0d7fb694032a174907330e3a3c8c6c2ffe073 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466bbd683767d4eabfb2908900e264d6e56078f380975020348fe3e msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=e7ee54258e880e01a57de43cacc12c5799e34ed9beb0e3d0d64dfc3d0e1dd0bf3dd4e97663863b3a0ed3e3db5ecdce7e9dceae07adfa85906cfdb8fb73388c85dbd34a6b2e80067d9a18 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=d85c66f45b68d04f1317197985ebbd021defdcec3bc7902c940754c7fe7175 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=d6b2f036e6cac49e862ccbcbfd359ea858a7c8e3cff228506758633ec53276 handshake=Noise_XKpsk1_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c0e58be3d117a08f563f1b81ddddf832cf92b0ef2ac7afaabead msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484660e4d7c7e528beab53894c8d0ff81686928997ec6472ed87c94a2 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=5008b6f662503afac70502840b3520d72b641a06dbc77426475b0b83eac6aa18447f5e5fbac32f7d1f206e82fc21319380bba5482b6c23826fbdb993b5aa8af89b038ed837de8a0c1c86 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=60abaa1cdd2f173576adcd2f93d5d5737c4ef63598ee3ff6c006a6eb3c9266 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=61261512d684c773a79724182988e8382cd571a3d6aa4703cf1a17a0550204 handshake=Noise_XKpsk2_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c0ff9243a441a9a38229d6b3a8cf3d920e7215c68d36e0d392bd msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846633ca26c2f74a980f4014d7fb2dcecb2bd4d68077063b0f28b1d3 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=aa2b2e3078aa0054ca436df384c021f5bef28fbe3a9fb6608fc8f0e5a9a1faffe4c3fdf4acfdc9d13750e31c72452fa0df12674bfe6a8e2c907ef9cf91cc273f486ee62cb02ff54a4c50 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=25ff84a3cb83d33bdf1559428a7d55ff15bdb042db3c85321346e2894a70f9 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=8be89bcd7bf5bc0326872bf15216c83b19df6d3f14b2744fa60138e364646c handshake=Noise_XKpsk3_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662545137f1f9a9ec7de03e77d735c92d8b4621ce96029727f4178386 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846610ae8c7cae2e22da73ff83374fcf9057e91f2f0cff1887955750 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=75ef1297edb57f0efa872372675293bc721ecb4f58ee1d87012ff7069f4ff38b4cf30e167d4b617817cda8df5a9762d97a7771f21e0af8ae4f3a7b85e1cf9d28d325c6eba8b7380c0c89 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=8e2c8d3c21594d58f0d7da8d4d40cb0b47ca6b0831e5f8f4ae66966aea4c8d msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=6cba677284723c05166976ceb2146d2978e38f17e102780c71cf11416272c8 handshake=Noise_XK_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254541b04eabcea3087b9ca2dde2bb9278b msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466dba3bcbb6e7023a137e00ac858b48e1c msg_2_payload= msg_2_ciphertext=4324e614b0f53d138eaa88364af70c285c29f6f0a39a9205a67e60c4abe9766882cd224050fe4084445cdc1250c47ca5bd039aa3a101885f18e12a2504722fb2 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=7a58f180a45f63401657a7a4817ac5c34dae211e1fbafcb8c42aaccb6c4fd5 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=e39cc5c38f30dd358deed825a045e77c96c856d9957b5eed88c6704cd113b3 handshake=Noise_XKpsk0_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662549fe2024079bf5448d04ff45c33883985 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846666048bf15fae44ad97f00d62dc0ca8c3 msg_2_payload= msg_2_ciphertext=e7ee54258e880e01a57de43cacc12c5799e34ed9beb0e3d0d64dfc3d0e1dd0bf75984919ae5741b23644ff3d5379b7d2f08ebe5fb8a95356cfe7ac933b9e153e msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=d85c66f45b68d04f1317197985ebbd021defdcec3bc7902c940754c7fe7175 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=d6b2f036e6cac49e862ccbcbfd359ea858a7c8e3cff228506758633ec53276 handshake=Noise_XKpsk1_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254073ecb95033a08aac58e5d4222c1d762 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846600b9141e162440a021c65a0e1787cddd msg_2_payload= msg_2_ciphertext=5008b6f662503afac70502840b3520d72b641a06dbc77426475b0b83eac6aa18e6282572b9342ee071855fcad25c59582b9cad4e1fa63e8b977961b724790442 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=60abaa1cdd2f173576adcd2f93d5d5737c4ef63598ee3ff6c006a6eb3c9266 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=61261512d684c773a79724182988e8382cd571a3d6aa4703cf1a17a0550204 handshake=Noise_XKpsk2_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625473f4564e2d12165fbde2a66c10c71dfc msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484669a8598e26a4635a2164c15ff96b58cd2 msg_2_payload= msg_2_ciphertext=aa2b2e3078aa0054ca436df384c021f5bef28fbe3a9fb6608fc8f0e5a9a1faffdadbbe77cdc53902d9c627a96d91e19e99c72e2e38997d762ac9d6a303edde2b msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=25ff84a3cb83d33bdf1559428a7d55ff15bdb042db3c85321346e2894a70f9 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=8be89bcd7bf5bc0326872bf15216c83b19df6d3f14b2744fa60138e364646c handshake=Noise_XKpsk3_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254b60e0abb01bd15d9cd344d3cdd15c2d5 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484662b0cf24cc6e33371991db9b3108b9d6b msg_2_payload= msg_2_ciphertext=75ef1297edb57f0efa872372675293bc721ecb4f58ee1d87012ff7069f4ff38bca915837e93948a9025a72c5121b0b2b7a1570e1385464d6abf1a2cbc4d84317 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=8e2c8d3c21594d58f0d7da8d4d40cb0b47ca6b0831e5f8f4ae66966aea4c8d msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=6cba677284723c05166976ceb2146d2978e38f17e102780c71cf11416272c8 handshake=Noise_XK_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254663eea19e1c296b8b49fa9de083783ed78ff77354e0c74a80c28 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466b29eebb8f9cd52c9835edda6bcf005b8af266497370cbfc77918 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=4324e614b0f53d138eaa88364af70c285c29f6f0a39a9205a67e60c4abe97668cadfa01051a709bff5eae2aac59313848bc983cb75059b3f390193b7a441c87d8dd707dc80571891d57f msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=7a58f180a45f63401657a7a4817ac5c34dae211e1fbafcb8c42aaccb6c4fd5 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=e39cc5c38f30dd358deed825a045e77c96c856d9957b5eed88c6704cd113b3 handshake=Noise_XKpsk0_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662544063ca1a8f35a6c0d7fb9e4cc482e8a6fde1e919208d6269551a msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466bbd683767d4eabfb29083fa0b3dd013a95ba81ed9e86311a47b5 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=e7ee54258e880e01a57de43cacc12c5799e34ed9beb0e3d0d64dfc3d0e1dd0bfc7e980ef5998136bcd7bfbfcaf00cece9dceae07adfa85906cfd90b300640ce55073fea11e49d65b58a7 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=d85c66f45b68d04f1317197985ebbd021defdcec3bc7902c940754c7fe7175 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=d6b2f036e6cac49e862ccbcbfd359ea858a7c8e3cff228506758633ec53276 handshake=Noise_XKpsk1_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c0e58be3d117a08f563f53f3a5664587644826ada8ee48f341f8 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484660e4d7c7e528beab538949b0a4dfa1f4e76cedf36a18562938ab5 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=5008b6f662503afac70502840b3520d72b641a06dbc77426475b0b83eac6aa1864cb6767a84466710caabc06396c6f0c80bba5482b6c23826fbd1718760e473df19cb475db068c6f27a5 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=60abaa1cdd2f173576adcd2f93d5d5737c4ef63598ee3ff6c006a6eb3c9266 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=61261512d684c773a79724182988e8382cd571a3d6aa4703cf1a17a0550204 handshake=Noise_XKpsk2_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c0ff9243a441a9a382292d3a1ef648bb687800b915d240d9ffc8 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846633ca26c2f74a980f401496b5665615f33b58499e2fdd6e8459cf msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=aa2b2e3078aa0054ca436df384c021f5bef28fbe3a9fb6608fc8f0e5a9a1faff11d841e395a8e26fd37d79d0bcff4df5df12674bfe6a8e2c907ed4286b8b168f2850b7637f300043bd4d msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=25ff84a3cb83d33bdf1559428a7d55ff15bdb042db3c85321346e2894a70f9 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=8be89bcd7bf5bc0326872bf15216c83b19df6d3f14b2744fa60138e364646c handshake=Noise_XKpsk3_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662545137f1f9a9ec7de03e77a2420c1f8a782a7bca8e52b1399c965a msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846610ae8c7cae2e22da73ff72bcd1043396c62063feb4d2fe3d51b1 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=75ef1297edb57f0efa872372675293bc721ecb4f58ee1d87012ff7069f4ff38b97ca82a1274c25acfe90da6b5786935e7a7771f21e0af8ae4f3aa4c970e4b172a655b63d8ad90e34e721 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=8e2c8d3c21594d58f0d7da8d4d40cb0b47ca6b0831e5f8f4ae66966aea4c8d msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=6cba677284723c05166976ceb2146d2978e38f17e102780c71cf11416272c8 handshake=Noise_IK_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254bd4f4131b33d738f4a2a299ee097f618811345c8fa0eb3de9fe75154b23f79e215fc093d990c4fa35c77f418515fe85be7f82ea4475e5b11703a89b904e605aa msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846616d4da51a337934aee3e82bab0b7b1f3 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=b57093f3d1261319399a1150d5a937f3ef1a27415d2f9581d3bc0143eedefe msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=fe045568d1f521838b2eb348e07f26cd10332485732fb821ff8841ccc3b9d1 handshake=Noise_IKpsk0_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c073edcce60db134899fe51feb700d92514276978d84cd27efe39f2691af2d4a4e00cf64ca504a736cb3ff448a4d8c080ffacdaeaae20f3b1c45ea6126104349 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466977bbfed6c53f8859e41fab61954c171 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=323a0be447f4985589dea6ff8f3f4d27d810be1e96862868332a4ad903a060 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=109670cd7de301fe4d6c3621935bc2d935db08c60b76f7096015ebcb0f5679 handshake=Noise_IKpsk1_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254afb4846f0ab102f56af491cdd2855b8a556936a17ac486c0f6446da6cafb19712c35fb1e5423b76643bb22c685d832c2ebc7bf156bda45e70d222cf1662298cf msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484662331a84da0076216b8d52a48f33ca4c3 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=1cb7c2b91b71ce817e0958bed36b5644996d8f2c63e4667627792127def75e msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=56320be0ca19a8b310230dca8e09b0002288e86e297286ca5810e913102170 handshake=Noise_IKpsk2_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625496931a9f8e5df3b9bfb984905e85191f366b770652f2222b7fa15c23eb721eafa6062da36f9201533e196a95894eddf0bedf2a6a3e7d7bf100418c962dcde379 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846624f9e1f6148f690211e6ec55b0f3869c msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=4a5d72c8e755787497f85fc22c91244a26efe8edb79806caf15e0c128b5e01 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=f31be3c70e06897a35d0167821f144b438b6a3fda809f20fca377895727730 handshake=Noise_IK_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254bd4f4131b33d738f4a2a299ee097f618811345c8fa0eb3de9fe75154b23f79e215fc093d990c4fa35c77f418515fe85b718a16e03b74978aee0e5fb0a382318c1438e588b4c6f5fb435e msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466bca07c8ea8d3db6803fa9cde7f2e8285562927a1503fe8922e8f msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=b57093f3d1261319399a1150d5a937f3ef1a27415d2f9581d3bc0143eedefe msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=fe045568d1f521838b2eb348e07f26cd10332485732fb821ff8841ccc3b9d1 handshake=Noise_IKpsk0_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c073edcce60db134899fe51feb700d92514276978d84cd27efe39f2691af2d4a4e00cf64ca504a736cb3ff448a4d8c0867cea5eea88023df452cbd6b03ecc3e05a8fe9bf4255c6622fa4 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484660fce1dc5223bdd289d0d5e218041462316be826c29ac6ad53228 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=323a0be447f4985589dea6ff8f3f4d27d810be1e96862868332a4ad903a060 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=109670cd7de301fe4d6c3621935bc2d935db08c60b76f7096015ebcb0f5679 handshake=Noise_IKpsk1_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254afb4846f0ab102f56af491cdd2855b8a556936a17ac486c0f6446da6cafb19712c35fb1e5423b76643bb22c685d832c29265090973e176e6ac4c49efeed0b41313413ba672358263aaf6 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466d6edc0252eaef96ad7802d71e982070ec80e6f0a48142a405110 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=1cb7c2b91b71ce817e0958bed36b5644996d8f2c63e4667627792127def75e msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=56320be0ca19a8b310230dca8e09b0002288e86e297286ca5810e913102170 handshake=Noise_IKpsk2_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625496931a9f8e5df3b9bfb984905e85191f366b770652f2222b7fa15c23eb721eafa6062da36f9201533e196a95894eddf0498cac29da3dc9ae306cf2959f1d510f60b60a555c52e5d4a1db msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466cf6f8562c58cda4461146db7e93a0dea4f1dc60792564dca6a0e msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=4a5d72c8e755787497f85fc22c91244a26efe8edb79806caf15e0c128b5e01 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=f31be3c70e06897a35d0167821f144b438b6a3fda809f20fca377895727730 handshake=Noise_IK_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254bd4f4131b33d738f4a2a299ee097f618811345c8fa0eb3de9fe75154b23f79e25007dbe6b36cbdfdf4a9cce3f365862218ecd1fdae9317673e275392f9bb54c8 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846657ca3004795589e226d50586a9c501ab msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=b57093f3d1261319399a1150d5a937f3ef1a27415d2f9581d3bc0143eedefe msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=fe045568d1f521838b2eb348e07f26cd10332485732fb821ff8841ccc3b9d1 handshake=Noise_IKpsk0_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c073edcce60db134899fe51feb700d92514276978d84cd27efe39f2691af2d4add525786f0b5486403c99532773cf71d38cc92838b0b5546b6ea89dd572bc610 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466a1a2385682ab40ed7eec1047d6311d6e msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=323a0be447f4985589dea6ff8f3f4d27d810be1e96862868332a4ad903a060 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=109670cd7de301fe4d6c3621935bc2d935db08c60b76f7096015ebcb0f5679 handshake=Noise_IKpsk1_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254afb4846f0ab102f56af491cdd2855b8a556936a17ac486c0f6446da6cafb1971afe73d2065190e650c2770cc69910e9c2fb119cda3e97199c7b025201f5af03a msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846676715a250c8d851c337934ea53c5cfba msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=1cb7c2b91b71ce817e0958bed36b5644996d8f2c63e4667627792127def75e msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=56320be0ca19a8b310230dca8e09b0002288e86e297286ca5810e913102170 handshake=Noise_IKpsk2_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625496931a9f8e5df3b9bfb984905e85191f366b770652f2222b7fa15c23eb721eaf0e22fb53171332b0d6d9cbd79d3f14211b141792d05aec8bface5ab036a34ab2 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484661994f62b38af687a844bb6c574a61ee8 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=4a5d72c8e755787497f85fc22c91244a26efe8edb79806caf15e0c128b5e01 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=f31be3c70e06897a35d0167821f144b438b6a3fda809f20fca377895727730 handshake=Noise_IK_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254bd4f4131b33d738f4a2a299ee097f618811345c8fa0eb3de9fe75154b23f79e25007dbe6b36cbdfdf4a9cce3f3658622718a16e03b74978aee0e485864a129d991809e531504fe89590e msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466bca07c8ea8d3db6803fadea87e1a26dd748e73277a458ef6379a msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=b57093f3d1261319399a1150d5a937f3ef1a27415d2f9581d3bc0143eedefe msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=fe045568d1f521838b2eb348e07f26cd10332485732fb821ff8841ccc3b9d1 handshake=Noise_IKpsk0_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c073edcce60db134899fe51feb700d92514276978d84cd27efe39f2691af2d4add525786f0b5486403c99532773cf71d67cea5eea88023df452c1a2188b56660ad8a4a43693fff90497a msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484660fce1dc5223bdd289d0d0b6dabc844dbacd0c7bc02535162cde6 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=323a0be447f4985589dea6ff8f3f4d27d810be1e96862868332a4ad903a060 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=109670cd7de301fe4d6c3621935bc2d935db08c60b76f7096015ebcb0f5679 handshake=Noise_IKpsk1_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254afb4846f0ab102f56af491cdd2855b8a556936a17ac486c0f6446da6cafb1971afe73d2065190e650c2770cc69910e9c9265090973e176e6ac4cf5cd4db3bf6527f987a742a2c83252d9 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466d6edc0252eaef96ad780ac004ef914e91c2a81181764334ca856 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=1cb7c2b91b71ce817e0958bed36b5644996d8f2c63e4667627792127def75e msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=56320be0ca19a8b310230dca8e09b0002288e86e297286ca5810e913102170 handshake=Noise_IKpsk2_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625496931a9f8e5df3b9bfb984905e85191f366b770652f2222b7fa15c23eb721eaf0e22fb53171332b0d6d9cbd79d3f1421498cac29da3dc9ae306c19babad8b3a5f6d7be72eca9272f7667 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466cf6f8562c58cda446114b33c5291da3398dc9b9485610b524536 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=4a5d72c8e755787497f85fc22c91244a26efe8edb79806caf15e0c128b5e01 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=f31be3c70e06897a35d0167821f144b438b6a3fda809f20fca377895727730 handshake=Noise_XX_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c558f251b38f5770b20bfe770709ec1aa6e0aa1a2d8b4485e51667a91055ceed52213b8314b06ae8c63d9c596e2cdcb332ca2b99b3a8a6e7f71d1b1e62340fb3 msg_2_payload= msg_2_ciphertext=c0eef7241004fcad6fb84daa25d9a8921a8da60da9b8b39f387667e98069e72fea2a13ea74822183fae1d17df8a490e5ea7ab72edd2bce950758a4482447f664 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=bb9dd5494e382306a88f8f32a4bb268cad2632353dd13aad364dc7493c4561 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=5e5ac356a3234cee842c6f719fa0657d35b69bcfe51e2edf5534c4276b7131 handshake=Noise_XXpsk0_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541eac09194c019139be771f49b620c91c msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846641342d97be7d620d656cff580ca58e8f11cc5001702990645cd09164242e8540a93a21344bede93c4d681e24a59314512bfcafee190ed63806ed3fa4b3aa541e msg_2_payload= msg_2_ciphertext=2e8196d00b701c2f09f141b1c4ccc47e9dca2922bd2491c34cd76b8c3d337e0841879b74366ade47342c3153e4c3dfef93cd1184d6ea2f44fbed3b705b9c569e msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=7d2b55d4b79d038d8398d42d75bbf870e77ab1d73ba429e188da7010317c89 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=c6c2a7901abf013a515ab87928fb7e7d87207ae956668e0e9795fffc08b25c handshake=Noise_XXpsk1_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662545126b622432ac37eabd44b8b671853ad msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484667c40d55b0bfa624fa6b23f02030ffaefe7925a9bd87194f8c4fe9d930dc959ec1d5f0b9d992fd41eb1eec03fe61d1b12fb4812e5f0b96645e5e4769146fa8671 msg_2_payload= msg_2_ciphertext=249a8e4d794c3c6df1b51eda2254f2653b19d99d124278a759abe483bb6d7906caadfe742ab3308406c369d18c95def0250afccdc7434602b5b38a1d49c710af msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=f5a6516b19d933d6c0a5dc8c0145ce39e9dfac207ff6fa5c654d49bc6b1ab0 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=73464d1a429f4c20cbeb5d668e17cb5ec4158eea21db21bd2432f8b4733813 handshake=Noise_XXpsk2_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662544d08b0eb94fee5f11568817855354556 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484662906b946c77f56bfe59790f6704d3506d892dec0ba85771b18f8d371e23e2970e2e534ad4921563e1560ea5696496cc68ca7fcca73011070e324a5d9505b9f6c msg_2_payload= msg_2_ciphertext=72cc9fc9a204b27abb198bdf41e73002d1b348de18ca66cd2574193a06fd9c64253f7755e1975ad268d0f0cc6adae8a43bd3dcf7d9246691c31cdf435c0a887d msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=1dcab75cb31e3e6d0e761090558ef90578435d3543a53ff7abca20ee152a82 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=86e26d4813675ea40de3cbbf14a4b80e6299422374ef84a3ee6d45b8f0e7b8 handshake=Noise_XXpsk3_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662544c13ab819ea6ed3499570aef3a388eb8 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484668e7a60ef8fbfa562e6542a22ef5e4944d733237508bf157ed4492e233b46162085060ee627d35f17b178d9519d9e86802c82d79abc624b8e2a82fb6b5bc0223d msg_2_payload= msg_2_ciphertext=16fa408d9a67b448377f6a27288d735f09088bd0493bbab602a0b3608b648138f95c9f1d5651729782ce22578543f6c0e6deb733cdab22a589c91b92d0a79954 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=c45aa274ed25812f1a749351bcc6f968d834f8e2bb7008119c58fbe7a9eedd msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=53fd1fc7eecbbf238f3b67111f718da5d85381a0de6009a46e5a415e5f75ac handshake=Noise_XX_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c558f251b38f5770b20bfe770709ec1aa6e0aa1a2d8b4485e51667a91055ceedff4f63d2d8eca379c401e83654b61786843c6dd463d2f588ba12d1d142fceeafa8131dab9e00214566b7 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=c0eef7241004fcad6fb84daa25d9a8921a8da60da9b8b39f387667e98069e72f2ac97f4079de25d8760541b7be628fd8427be5ec64387fbf2f983fa7989f88310b47d6d2577980a7d4b9 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=bb9dd5494e382306a88f8f32a4bb268cad2632353dd13aad364dc7493c4561 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=5e5ac356a3234cee842c6f719fa0657d35b69bcfe51e2edf5534c4276b7131 handshake=Noise_XXpsk0_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625443dbdf007bb4875a4d95f427ceac82a818307571a82a9888f324 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846641342d97be7d620d656cff580ca58e8f11cc5001702990645cd09164242e8540e4eb0518983a8996373abbfb7c83473780c6f834d01a5e023cf450299ef1a361f11092a75e7d11a1950e msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=2e8196d00b701c2f09f141b1c4ccc47e9dca2922bd2491c34cd76b8c3d337e0810775c9452ed0bc21fad36d99cd9b325a5a1e299a65623fcf08b62aba10a58909d5c7c1eaa45ed50cf6c msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=7d2b55d4b79d038d8398d42d75bbf870e77ab1d73ba429e188da7010317c89 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=c6c2a7901abf013a515ab87928fb7e7d87207ae956668e0e9795fffc08b25c handshake=Noise_XXpsk1_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254909b4be38128fa1ee3821ec8256c9961c713bccb82aa844d7d6e msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484667c40d55b0bfa624fa6b23f02030ffaefe7925a9bd87194f8c4fe9d930dc959ecbfa439481180c1fa2665a4dfc37855fdfae5baae64f2b1cb55fbec0507a6882974c58a4e9ed063d24a59 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=249a8e4d794c3c6df1b51eda2254f2653b19d99d124278a759abe483bb6d79067ded5abf82f76071cc900b5b99e49c2ce2e7127ee75d79d77d23cf7943689beae674993aca9ded6a0581 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=f5a6516b19d933d6c0a5dc8c0145ce39e9dfac207ff6fa5c654d49bc6b1ab0 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=73464d1a429f4c20cbeb5d668e17cb5ec4158eea21db21bd2432f8b4733813 handshake=Noise_XXpsk2_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662543d46c611dff6b8421ca04cbf2dc1a71bd2f17e9aca5cb3d47f1e msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484662906b946c77f56bfe59790f6704d3506d892dec0ba85771b18f8d371e23e2970d9eca6cec4744d6c0d01c4588b8c47becfec6d91b61f265adeb8e7d237be6c4970cf47183143be50cce6 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=72cc9fc9a204b27abb198bdf41e73002d1b348de18ca66cd2574193a06fd9c646ba5b239f740c3f5824d818974348687ed71162b3d3104ca4aa588973e50ce241ccbeb9494a17e72f74c msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=1dcab75cb31e3e6d0e761090558ef90578435d3543a53ff7abca20ee152a82 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=86e26d4813675ea40de3cbbf14a4b80e6299422374ef84a3ee6d45b8f0e7b8 handshake=Noise_XXpsk3_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254425bfa36e76a8838d5d964c082e46b0fb8bbee7bb0d8efe882e2 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484668e7a60ef8fbfa562e6542a22ef5e4944d733237508bf157ed4492e233b461620fcbd9a9234eacd67a25d0ad5a7818bcd53bc6adbd943656eceefd701de1c68ca75ad16693e0205b3f3e5 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=16fa408d9a67b448377f6a27288d735f09088bd0493bbab602a0b3608b648138429bf29a9ffe33163d05345fec308712f7c3bb2fffecbdf00ca7d0ede3768f41d5774259f7fd971dc4d4 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=c45aa274ed25812f1a749351bcc6f968d834f8e2bb7008119c58fbe7a9eedd msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=53fd1fc7eecbbf238f3b67111f718da5d85381a0de6009a46e5a415e5f75ac handshake=Noise_XX_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c558f251b38f5770b20bfe770709ec1aa6e0aa1a2d8b4485e51667a91055ceeddce4ec65c8701bb8e394894acf42ee631f9e735b3cf68b830731abfe45e4c578 msg_2_payload= msg_2_ciphertext=c0eef7241004fcad6fb84daa25d9a8921a8da60da9b8b39f387667e98069e72f6e03e7676577b7c2e23edc932cb7269d60ab5a53084cd3cbf9d26bc420f65426 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=bb9dd5494e382306a88f8f32a4bb268cad2632353dd13aad364dc7493c4561 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=5e5ac356a3234cee842c6f719fa0657d35b69bcfe51e2edf5534c4276b7131 handshake=Noise_XXpsk0_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662549c3e79e8d77ebc7c8096364ee6641264 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846641342d97be7d620d656cff580ca58e8f11cc5001702990645cd09164242e854007095bac0754ea0e3575efa81d8bd1dc73256f79cf94429ec4097a84cefb4ae2 msg_2_payload= msg_2_ciphertext=2e8196d00b701c2f09f141b1c4ccc47e9dca2922bd2491c34cd76b8c3d337e08ee24c6f9c32e75df9c0ffee981226a1917a55e32f4dffd80f8c6291883af6de5 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=7d2b55d4b79d038d8398d42d75bbf870e77ab1d73ba429e188da7010317c89 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=c6c2a7901abf013a515ab87928fb7e7d87207ae956668e0e9795fffc08b25c handshake=Noise_XXpsk1_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254d637e75932c13066f7d9ae8202e434e9 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484667c40d55b0bfa624fa6b23f02030ffaefe7925a9bd87194f8c4fe9d930dc959ec7f0d1d6e6ef7fe8e9d099b7283e8e4c00793986c521afd21ced3bffc6ef3ec23 msg_2_payload= msg_2_ciphertext=249a8e4d794c3c6df1b51eda2254f2653b19d99d124278a759abe483bb6d7906bc6104737c7e8072b6b9c1b2742699495e478b0434d240b3989a1d4df21a7009 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=f5a6516b19d933d6c0a5dc8c0145ce39e9dfac207ff6fa5c654d49bc6b1ab0 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=73464d1a429f4c20cbeb5d668e17cb5ec4158eea21db21bd2432f8b4733813 handshake=Noise_XXpsk2_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662543c9c4f5f492c2bd6298624dbc89f8cec msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484662906b946c77f56bfe59790f6704d3506d892dec0ba85771b18f8d371e23e297005331f9cf890ae50499c20de44cb81ec82cdda938bc9693f36ed9ea63fa36e44 msg_2_payload= msg_2_ciphertext=72cc9fc9a204b27abb198bdf41e73002d1b348de18ca66cd2574193a06fd9c64b71437f9cf75d18d4ee5a748568c35ed76c8a0a7e52917864f65947f8c6950b4 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=1dcab75cb31e3e6d0e761090558ef90578435d3543a53ff7abca20ee152a82 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=86e26d4813675ea40de3cbbf14a4b80e6299422374ef84a3ee6d45b8f0e7b8 handshake=Noise_XXpsk3_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662549891f0cad0f98f78af16e0c6bfc729d3 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484668e7a60ef8fbfa562e6542a22ef5e4944d733237508bf157ed4492e233b461620eea5a18ee7d4c6aebc3be1649b7c94aff64dcd3aac9bc1ca5e4419d281669075 msg_2_payload= msg_2_ciphertext=16fa408d9a67b448377f6a27288d735f09088bd0493bbab602a0b3608b64813893f6fdc1de28aa54d076a1cf4b3e86ef9c6348a34f8ecddb9c3797184ffb4d08 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=c45aa274ed25812f1a749351bcc6f968d834f8e2bb7008119c58fbe7a9eedd msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=53fd1fc7eecbbf238f3b67111f718da5d85381a0de6009a46e5a415e5f75ac handshake=Noise_XX_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c558f251b38f5770b20bfe770709ec1aa6e0aa1a2d8b4485e51667a91055ceed9c32712c57e5aa04f65932b60b4c6064843c6dd463d2f588ba128cd76050bb6209711df3294879ad0e11 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=c0eef7241004fcad6fb84daa25d9a8921a8da60da9b8b39f387667e98069e72f9bd63447f97b7741e373ebbf9015ddd9427be5ec64387fbf2f98ea4a70997c58ecb2fe807114cabb46ae msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=bb9dd5494e382306a88f8f32a4bb268cad2632353dd13aad364dc7493c4561 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=5e5ac356a3234cee842c6f719fa0657d35b69bcfe51e2edf5534c4276b7131 handshake=Noise_XXpsk0_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625443dbdf007bb4875a4d95a73282156c90715757356ed75e725b2b msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846641342d97be7d620d656cff580ca58e8f11cc5001702990645cd09164242e8540661edb60a6a8540e6c5e82f0bd95ab8b80c6f834d01a5e023cf46b51e3b2c9796244f4791c4f4c2ad9f7 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=2e8196d00b701c2f09f141b1c4ccc47e9dca2922bd2491c34cd76b8c3d337e08d7d5063ef629525d81a06e1ad0e8ce06a5a1e299a65623fcf08b6be25d3c554898997726450ccbb56652 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=7d2b55d4b79d038d8398d42d75bbf870e77ab1d73ba429e188da7010317c89 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=c6c2a7901abf013a515ab87928fb7e7d87207ae956668e0e9795fffc08b25c handshake=Noise_XXpsk1_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254909b4be38128fa1ee382b46bfbe2630124202d4749ea2d06487d msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484667c40d55b0bfa624fa6b23f02030ffaefe7925a9bd87194f8c4fe9d930dc959ec216aa6b7d41596b4f9e4905f412771befae5baae64f2b1cb55fbae113857fc75634d33125ef64c8515c5 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=249a8e4d794c3c6df1b51eda2254f2653b19d99d124278a759abe483bb6d7906375331eb14a43a9eed6ab1c848203e14e2e7127ee75d79d77d23068fe13e799ae21be2a6521f159608b9 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=f5a6516b19d933d6c0a5dc8c0145ce39e9dfac207ff6fa5c654d49bc6b1ab0 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=73464d1a429f4c20cbeb5d668e17cb5ec4158eea21db21bd2432f8b4733813 handshake=Noise_XXpsk2_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662543d46c611dff6b8421ca09dc79567842ed38928256a9a35128c20 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484662906b946c77f56bfe59790f6704d3506d892dec0ba85771b18f8d371e23e2970c8bc8b2a9fcbe96bcaf5dbb53d958841cfec6d91b61f265adeb8b93fde4f1c6d12a5a66fbd65265c67af msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=72cc9fc9a204b27abb198bdf41e73002d1b348de18ca66cd2574193a06fd9c64aa0e01924994fa145ddb10417d16aa53ed71162b3d3104ca4aa578762e51724a97e08b1762d715c7f9c0 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=1dcab75cb31e3e6d0e761090558ef90578435d3543a53ff7abca20ee152a82 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=86e26d4813675ea40de3cbbf14a4b80e6299422374ef84a3ee6d45b8f0e7b8 handshake=Noise_XXpsk3_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254425bfa36e76a8838d5d9f71f26594bce0a57407a4b1760b814ee msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484668e7a60ef8fbfa562e6542a22ef5e4944d733237508bf157ed4492e233b461620be67b52b7bd6053e7767ac64fd91e8df53bc6adbd943656eceef1daadc583828bf9580dc9229e5f87205 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=16fa408d9a67b448377f6a27288d735f09088bd0493bbab602a0b3608b6481380c5cf5a0a5a5b91aa942222b90b489a8f7c3bb2fffecbdf00ca7642bb47f1258177d174797f4d9846494 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=c45aa274ed25812f1a749351bcc6f968d834f8e2bb7008119c58fbe7a9eedd msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=53fd1fc7eecbbf238f3b67111f718da5d85381a0de6009a46e5a415e5f75ac handshake=Noise_IX_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548f40c5adb68f25624ae5b214ea767a6ec94d829d3d7b5e1ad1ba6f3e2138285f msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466001a448f30a50045a3773283db2513353903f4e248a9b3e2b5c24afb272fe857d7489eb482f3634ac012c7f90637184f3c37d3bbb3cc1741696ea3e8780db3dc msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=121b6531c524e613f3b3cfbb08e2c23c11c43ac1715e9f074f01a4fd038e1c msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=1f24c3924ad3d79ceca2efb690500b560e43de2cbc367e1deeecfd983b270b handshake=Noise_IXpsk0_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662549d7ce1d656b5eb9151fba77523378e964f2a8ef91720a611902132d691741271c3d3307b904253d8254a28d98887e407b04239c1c15396fb45fcaa651bb12bf1 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484666133c831594ab52216dd0807616b26056d0e80f5f6d8fa91fe77e5060db7db9506ef4df925af2c7834a634db720a835ea0afd35264770fa0ce4a40ffc2f3a45b msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=39b2227addce43c4691d21674f9695c6a09b112c8222b306075e9515e2c867 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=6b01cb18b13f46a8816cdaeac1e8dd93f014affb39fa763aaeebf771b43de4 handshake=Noise_IXpsk1_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625468f5566d63685e265e45046bc696c9c9f0bebd8cf1052c95805155d8c0ee4db5cba654e668d672097727bedb322262c15da304f0ff23ecd5e0bacfd141a2a1e7 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c84ed22bb5a1c2a86915757631e35fb2eca787ddbcdc8ea4bc4e20a1f5887efd0a7b4ba3ca44e42bdd7c2ceacda3c85a5dce29603d296ae093a193bf17a4c46a msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=3c49de16ee26037dfe6b9b489f9786a584f44b08821bb5dab44b0e371f6e26 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=8771d4351bfa2cb24c5497b8c5a6f5a01a29bd27056c00a29617c7f625689f handshake=Noise_IXpsk2_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254fb6c82215400d2057e6eaa9938cbc77e3fa904df7d3a80b104eff6484b5eb2f92c52ff4d51ef8590bf8b3c7e42ccaf36f5203e5b6cc1255385dd1f7edf0b20a1 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466aba779821e4e49f52ea4e5fb0ffb8788943f1e50d4fec498230f3d22f119831af4fd75ac2f666d09c5840305632216f6193fdc63d5648e114fa44662ae78d9a7 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=7af8e7b931417440cdea7240873bf94dd43a92641167a9f984560f56481ea4 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=69a6c04db91b2a176d92b6c51b47f5b476e7ae15302e4782e0bc4c7e1b37ae handshake=Noise_IX_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548f40c5adb68f25624ae5b214ea767a6ec94d829d3d7b5e1ad1ba6f3e2138285f746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466001a448f30a50045a3773283db2513353903f4e248a9b3e2b5c24afb272fe8577b273d51b51d4b8ca49ad87e8e1b52025713f6ad6dc975e0f86b25a35b74fc3555e1c91994f94c043080 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=121b6531c524e613f3b3cfbb08e2c23c11c43ac1715e9f074f01a4fd038e1c msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=1f24c3924ad3d79ceca2efb690500b560e43de2cbc367e1deeecfd983b270b handshake=Noise_IXpsk0_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662549d7ce1d656b5eb9151fba77523378e964f2a8ef91720a611902132d691741271c3d3307b904253d8254a28d98887e407a44b0c1e24a560d89e223072156a69a1fb99a798d1683d6e9674 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484666133c831594ab52216dd0807616b26056d0e80f5f6d8fa91fe77e5060db7db959c490fe4c98dec54c73b93b3f3150aa522d0889bee5a6675b46a219b8c197bd38a409b0319cb18d13ae4 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=39b2227addce43c4691d21674f9695c6a09b112c8222b306075e9515e2c867 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=6b01cb18b13f46a8816cdaeac1e8dd93f014affb39fa763aaeebf771b43de4 handshake=Noise_IXpsk1_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625468f5566d63685e265e45046bc696c9c9f0bebd8cf1052c95805155d8c0ee4db5cba654e668d672097727bedb322262c19b4d7142a128929d49c3b558f781c4bf9189d05b178cc7a04ca2 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c84ed22bb5a1c2a86915757631e35fb2eca787ddbcdc8ea4bc4e20a1f5887efd9c442f3f6e1e52cf41e96a7b85d31a56bc3b2c8d31f40ca8ac16064518b495caba81820a1c73ba43f2d4 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=3c49de16ee26037dfe6b9b489f9786a584f44b08821bb5dab44b0e371f6e26 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=8771d4351bfa2cb24c5497b8c5a6f5a01a29bd27056c00a29617c7f625689f handshake=Noise_IXpsk2_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254fb6c82215400d2057e6eaa9938cbc77e3fa904df7d3a80b104eff6484b5eb2f92c52ff4d51ef8590bf8b3c7e42ccaf367f8e9c43fadcbe94ec0166219dfa665bf065f286bf0d7684aed6 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466aba779821e4e49f52ea4e5fb0ffb8788943f1e50d4fec498230f3d22f119831a81a9001883959687765f997fcf2e6880f3da82537df7241288faa0075350c178c7a4651dd554b2aeb564 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=7af8e7b931417440cdea7240873bf94dd43a92641167a9f984560f56481ea4 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=69a6c04db91b2a176d92b6c51b47f5b476e7ae15302e4782e0bc4c7e1b37ae handshake=Noise_IX_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548f40c5adb68f25624ae5b214ea767a6ec94d829d3d7b5e1ad1ba6f3e2138285f msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466001a448f30a50045a3773283db2513353903f4e248a9b3e2b5c24afb272fe857972736c91937300c3a33d0f45f84967554fbd34e74a3ed2da8aa7b187755c58a msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=121b6531c524e613f3b3cfbb08e2c23c11c43ac1715e9f074f01a4fd038e1c msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=1f24c3924ad3d79ceca2efb690500b560e43de2cbc367e1deeecfd983b270b handshake=Noise_IXpsk0_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662549d7ce1d656b5eb9151fba77523378e964f2a8ef91720a611902132d691741271d228ca8491bbf257394442a722a705173bbe4efea8677818654b390540df1a18 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484666133c831594ab52216dd0807616b26056d0e80f5f6d8fa91fe77e5060db7db959871017b10f8c4b3f1042d2d2932b77bfbb57f9756768ad417cd6f7b111a57e3 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=39b2227addce43c4691d21674f9695c6a09b112c8222b306075e9515e2c867 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=6b01cb18b13f46a8816cdaeac1e8dd93f014affb39fa763aaeebf771b43de4 handshake=Noise_IXpsk1_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625468f5566d63685e265e45046bc696c9c9f0bebd8cf1052c95805155d8c0ee4db525fa6858eff76b69343b28ced0e7ba02e849f7f3fa7ff70d856f2b3a18a127cd msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c84ed22bb5a1c2a86915757631e35fb2eca787ddbcdc8ea4bc4e20a1f5887efda53329c4f4b7540d09ad79bbc106dc0513cce4751ea0b78fef76ccd03cbbb3d8 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=3c49de16ee26037dfe6b9b489f9786a584f44b08821bb5dab44b0e371f6e26 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=8771d4351bfa2cb24c5497b8c5a6f5a01a29bd27056c00a29617c7f625689f handshake=Noise_IXpsk2_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254fb6c82215400d2057e6eaa9938cbc77e3fa904df7d3a80b104eff6484b5eb2f925cc71907dbef4fd4df1218a622a5b54a6eeaa63623e51a50e9cc6b5a65f2230 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466aba779821e4e49f52ea4e5fb0ffb8788943f1e50d4fec498230f3d22f119831aafd335e73319c4c1d0b67c713fed38346e88c2f18e65fdf3ac90a5a703d753ed msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=7af8e7b931417440cdea7240873bf94dd43a92641167a9f984560f56481ea4 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=69a6c04db91b2a176d92b6c51b47f5b476e7ae15302e4782e0bc4c7e1b37ae handshake=Noise_IX_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548f40c5adb68f25624ae5b214ea767a6ec94d829d3d7b5e1ad1ba6f3e2138285f746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466001a448f30a50045a3773283db2513353903f4e248a9b3e2b5c24afb272fe857fb091b2195012c08b0b140bc35cb12735713f6ad6dc975e0f86b731f028f7626e597b40d8649f718297c msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=121b6531c524e613f3b3cfbb08e2c23c11c43ac1715e9f074f01a4fd038e1c msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=1f24c3924ad3d79ceca2efb690500b560e43de2cbc367e1deeecfd983b270b handshake=Noise_IXpsk0_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662549d7ce1d656b5eb9151fba77523378e964f2a8ef91720a611902132d691741271d228ca8491bbf257394442a722a70517a44b0c1e24a560d89e225feaed436f2e1b4ebf905774414df4f8 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484666133c831594ab52216dd0807616b26056d0e80f5f6d8fa91fe77e5060db7db954fd203f0c9d25c3e926672269f2dbe4722d0889bee5a6675b46a801f7f1978b39a17e75bc3505313a9d6 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=39b2227addce43c4691d21674f9695c6a09b112c8222b306075e9515e2c867 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=6b01cb18b13f46a8816cdaeac1e8dd93f014affb39fa763aaeebf771b43de4 handshake=Noise_IXpsk1_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625468f5566d63685e265e45046bc696c9c9f0bebd8cf1052c95805155d8c0ee4db525fa6858eff76b69343b28ced0e7ba029b4d7142a128929d49c31c75b3d55df3ac834bd50fc48e781bc5 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c84ed22bb5a1c2a86915757631e35fb2eca787ddbcdc8ea4bc4e20a1f5887efd81f8705b7fd1ac44e0db631f6498740ebc3b2c8d31f40ca8ac163346c04b5cc1dcbe242c18dfde5322eb msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=3c49de16ee26037dfe6b9b489f9786a584f44b08821bb5dab44b0e371f6e26 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=8771d4351bfa2cb24c5497b8c5a6f5a01a29bd27056c00a29617c7f625689f handshake=Noise_IXpsk2_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254fb6c82215400d2057e6eaa9938cbc77e3fa904df7d3a80b104eff6484b5eb2f925cc71907dbef4fd4df1218a622a5b547f8e9c43fadcbe94ec013ac799c77b3b0a6a8dcd4a311473ee22 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466aba779821e4e49f52ea4e5fb0ffb8788943f1e50d4fec498230f3d22f119831a48658943f9d91741e1a33103e775e920f3da82537df7241288fab18a128e3c84939f20abf92374bef607 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=7af8e7b931417440cdea7240873bf94dd43a92641167a9f984560f56481ea4 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=69a6c04db91b2a176d92b6c51b47f5b476e7ae15302e4782e0bc4c7e1b37ae handshake=Noise_N_25519_AESGCM_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541f79dccb3aa4d5b94432bafca11574ed msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=6c123bcb14329bcb133fce1b378e7b3b46e2d98b58e3dae5bf6ef38f77d2a5 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=9e1891da8d5c3333d5c4e85dc726a52356d2908013a234f353acb3922a9230 handshake=Noise_Npsk0_25519_AESGCM_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254345e04d65d31b4503b548304455bbd46 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=d634a8f886d4f0d9ed43ca28dae0b7dbe47f19dfd6fb51cd16e66be0213c8e msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=33775b15e461621ce9a5e20c50221231d8e230484d44e2c37438200771bfbb handshake=Noise_Npsk1_25519_AESGCM_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254fe78ed820f4450ab1348aad583dda57e msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=79568cdbca6a38933f2240f37ce995f44ec540f8a3ab1e31c66da6bfe8b0eb msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=ff319a896146cb627b7e9bcc087307ab7b5cd09b675fc762fefdb743eefef3 handshake=Noise_N_25519_AESGCM_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625442f641b74b61890f33bd3becef41f81f69923bf63c60b1cc6231 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=6c123bcb14329bcb133fce1b378e7b3b46e2d98b58e3dae5bf6ef38f77d2a5 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=9e1891da8d5c3333d5c4e85dc726a52356d2908013a234f353acb3922a9230 handshake=Noise_Npsk0_25519_AESGCM_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254f3f4ecd437c593a22cfb64af15662f4bd7e6ef03a841d0260e66 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=d634a8f886d4f0d9ed43ca28dae0b7dbe47f19dfd6fb51cd16e66be0213c8e msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=33775b15e461621ce9a5e20c50221231d8e230484d44e2c37438200771bfbb handshake=Noise_Npsk1_25519_AESGCM_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254619e5aa215267f135b43473fcae9566b9e67882d44789b29e9da msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=79568cdbca6a38933f2240f37ce995f44ec540f8a3ab1e31c66da6bfe8b0eb msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=ff319a896146cb627b7e9bcc087307ab7b5cd09b675fc762fefdb743eefef3 handshake=Noise_N_25519_AESGCM_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662547c2d612458dea09c1056ae723f545f1f msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=6c123bcb14329bcb133fce1b378e7b3b46e2d98b58e3dae5bf6ef38f77d2a5 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=9e1891da8d5c3333d5c4e85dc726a52356d2908013a234f353acb3922a9230 handshake=Noise_Npsk0_25519_AESGCM_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254a12e1251ccb886f1d3d363a48195a860 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=d634a8f886d4f0d9ed43ca28dae0b7dbe47f19dfd6fb51cd16e66be0213c8e msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=33775b15e461621ce9a5e20c50221231d8e230484d44e2c37438200771bfbb handshake=Noise_Npsk1_25519_AESGCM_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662546b5f9c84b3c1c392a387aa90ed926280 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=79568cdbca6a38933f2240f37ce995f44ec540f8a3ab1e31c66da6bfe8b0eb msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=ff319a896146cb627b7e9bcc087307ab7b5cd09b675fc762fefdb743eefef3 handshake=Noise_N_25519_AESGCM_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625442f641b74b61890f33bd4391759de0d03df2ad8026a68f4190b0 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=6c123bcb14329bcb133fce1b378e7b3b46e2d98b58e3dae5bf6ef38f77d2a5 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=9e1891da8d5c3333d5c4e85dc726a52356d2908013a234f353acb3922a9230 handshake=Noise_Npsk0_25519_AESGCM_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254f3f4ecd437c593a22cfb0bac55293cc03f1617a481ede42ab62b msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=d634a8f886d4f0d9ed43ca28dae0b7dbe47f19dfd6fb51cd16e66be0213c8e msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=33775b15e461621ce9a5e20c50221231d8e230484d44e2c37438200771bfbb handshake=Noise_Npsk1_25519_AESGCM_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254619e5aa215267f135b435e993029733e9d969d29343938c1b1df msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=79568cdbca6a38933f2240f37ce995f44ec540f8a3ab1e31c66da6bfe8b0eb msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=ff319a896146cb627b7e9bcc087307ab7b5cd09b675fc762fefdb743eefef3 handshake=Noise_K_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625438e26a348a6cfdbcb07102e8e5091989 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=b9d11027b8d5c0684f197d3d013eb85af4156198273288daeef8221e3b9a4d msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=74c2881e55dcbee999ade00f6c433a35d60371a3cf651bc1c5617cc397cb87 handshake=Noise_Kpsk0_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254bbc991897e496d88cc4713aa52d34443 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=11f82fb066f3635d85a8f9a98ea5b67c400485a089a4abb74834e2e5a57f4d msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=eb8febbc984e0c0b8d92d59025912cbed4c7a5986a0c1ee61dbc64565f3228 handshake=Noise_Kpsk1_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662545b9bdef6f6b2b03db5c430f4eea428fd msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=2ea39abe8e5e7dde6c727f9a970b1cc5f0db6c5825feb620dc4e40fefea543 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=8018b274983cbc58f5036d2ce8c0d8833634c86b0d85bd6a038a8036e0621d handshake=Noise_K_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254e6608d0e457383df16f84fb3a03c9d986dfd2441f69eab6586e9 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=b9d11027b8d5c0684f197d3d013eb85af4156198273288daeef8221e3b9a4d msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=74c2881e55dcbee999ade00f6c433a35d60371a3cf651bc1c5617cc397cb87 handshake=Noise_Kpsk0_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625408d9b97427847c9e21cfa5fa926792c424bac2922df0b6719ca4 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=11f82fb066f3635d85a8f9a98ea5b67c400485a089a4abb74834e2e5a57f4d msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=eb8febbc984e0c0b8d92d59025912cbed4c7a5986a0c1ee61dbc64565f3228 handshake=Noise_Kpsk1_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662547fefbe317b025d36f640f51d6d0ab59af487b829a06968eda96c msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=2ea39abe8e5e7dde6c727f9a970b1cc5f0db6c5825feb620dc4e40fefea543 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=8018b274983cbc58f5036d2ce8c0d8833634c86b0d85bd6a038a8036e0621d handshake=Noise_K_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254176d7116aaeb842d6dcf237932eccf03 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=b9d11027b8d5c0684f197d3d013eb85af4156198273288daeef8221e3b9a4d msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=74c2881e55dcbee999ade00f6c433a35d60371a3cf651bc1c5617cc397cb87 handshake=Noise_Kpsk0_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c610aa4b7520958544adaf4375afc3de msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=11f82fb066f3635d85a8f9a98ea5b67c400485a089a4abb74834e2e5a57f4d msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=eb8febbc984e0c0b8d92d59025912cbed4c7a5986a0c1ee61dbc64565f3228 handshake=Noise_Kpsk1_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625499a8f592f261e9b5339c8f477cc9c16c msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=2ea39abe8e5e7dde6c727f9a970b1cc5f0db6c5825feb620dc4e40fefea543 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=8018b274983cbc58f5036d2ce8c0d8833634c86b0d85bd6a038a8036e0621d handshake=Noise_K_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254e6608d0e457383df16f88fad0f657acae9f22fe892786cb660b2 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=b9d11027b8d5c0684f197d3d013eb85af4156198273288daeef8221e3b9a4d msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=74c2881e55dcbee999ade00f6c433a35d60371a3cf651bc1c5617cc397cb87 handshake=Noise_Kpsk0_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625408d9b97427847c9e21cf912833fff74a652fa343036dfb1b41ea msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=11f82fb066f3635d85a8f9a98ea5b67c400485a089a4abb74834e2e5a57f4d msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=eb8febbc984e0c0b8d92d59025912cbed4c7a5986a0c1ee61dbc64565f3228 handshake=Noise_Kpsk1_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662547fefbe317b025d36f6408925984d138fde176f4a9733c7706df9 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=2ea39abe8e5e7dde6c727f9a970b1cc5f0db6c5825feb620dc4e40fefea543 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=8018b274983cbc58f5036d2ce8c0d8833634c86b0d85bd6a038a8036e0621d handshake=Noise_X_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662545730809282cfc06c3f895a7660f5bb7725583f11e5566e698a972505841076fd193070f26567584ddb9a11f44c37722efa4689cece4fd7b57371b7aa56233e27 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=458838a0dd2fb593e0264aa8f65ecf54a29227215742be16065db5a9e64ae0 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=ce36ae61d167896842a9117b31ed88845c34ea868ce4f99075df0eb388dbbe handshake=Noise_Xpsk0_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541401f93c17b8761a54f7a233e20fae86a9858038716057a8a1376d708c390e5c8395e377b11f0ebc06500cc47602c4c7a4f348296b28740fe8b5e84a8c02db6c msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=1085833cf5bcf7446d55ec7a8a07af2752b57b729e2dd6ca882b946d00b4fe msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=bcbb6258caa407556855bf3236705c6f24003ebb2c79ba707afef937cfadcd handshake=Noise_Xpsk1_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625447657edc39b8a745cd59d07d6e5a2c003c7f9b3e3643af88ca131edbc5578f4a636583b0b613417ec497846b87dfa005cc61f92786e7692362934a0eed2484c4 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=0843a331ef88666075f33de5baa1a3cb426f0d4b16de1ff591a6f2e467d07b msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=a6edf21b63c3d67b27e4235f7c6249153c182cb5fd0bab4e2113c4aecc4017 handshake=Noise_X_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662545730809282cfc06c3f895a7660f5bb7725583f11e5566e698a972505841076fd193070f26567584ddb9a11f44c37722e155570cd162d7626fdd606a44acba5181f943a9576dc6c0787cb msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=458838a0dd2fb593e0264aa8f65ecf54a29227215742be16065db5a9e64ae0 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=ce36ae61d167896842a9117b31ed88845c34ea868ce4f99075df0eb388dbbe handshake=Noise_Xpsk0_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541401f93c17b8761a54f7a233e20fae86a9858038716057a8a1376d708c390e5c8395e377b11f0ebc06500cc47602c4c755841fd865669d89825061d5fca07ba66ed0abc4f4218f4d6899 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=1085833cf5bcf7446d55ec7a8a07af2752b57b729e2dd6ca882b946d00b4fe msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=bcbb6258caa407556855bf3236705c6f24003ebb2c79ba707afef937cfadcd handshake=Noise_Xpsk1_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625447657edc39b8a745cd59d07d6e5a2c003c7f9b3e3643af88ca131edbc5578f4a636583b0b613417ec497846b87dfa00568b6e7db7a7e3dd0e5ab3dc13a2e726a95e9487330354b79556a msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=0843a331ef88666075f33de5baa1a3cb426f0d4b16de1ff591a6f2e467d07b msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=a6edf21b63c3d67b27e4235f7c6249153c182cb5fd0bab4e2113c4aecc4017 handshake=Noise_X_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662545730809282cfc06c3f895a7660f5bb7725583f11e5566e698a972505841076fd287c0bb778052148eed1a556d5a39611dac85f63cdb36c055a0b62f0488fb1eb msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=458838a0dd2fb593e0264aa8f65ecf54a29227215742be16065db5a9e64ae0 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=ce36ae61d167896842a9117b31ed88845c34ea868ce4f99075df0eb388dbbe handshake=Noise_Xpsk0_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541401f93c17b8761a54f7a233e20fae86a9858038716057a8a1376d708c390e5ca20d0296245bd7bde6f607b09dcb7b244553d8e657f7683cd076f4dda56f8300 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=1085833cf5bcf7446d55ec7a8a07af2752b57b729e2dd6ca882b946d00b4fe msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=bcbb6258caa407556855bf3236705c6f24003ebb2c79ba707afef937cfadcd handshake=Noise_Xpsk1_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625447657edc39b8a745cd59d07d6e5a2c003c7f9b3e3643af88ca131edbc5578f4a3d88a7587a88291fced6580a9485994229bf2b68b22e0364494c2ce92e253ffa msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=0843a331ef88666075f33de5baa1a3cb426f0d4b16de1ff591a6f2e467d07b msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=a6edf21b63c3d67b27e4235f7c6249153c182cb5fd0bab4e2113c4aecc4017 handshake=Noise_X_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662545730809282cfc06c3f895a7660f5bb7725583f11e5566e698a972505841076fd287c0bb778052148eed1a556d5a39611155570cd162d7626fdd63547ad497b220e81b9ff2557f057f698 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=458838a0dd2fb593e0264aa8f65ecf54a29227215742be16065db5a9e64ae0 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=ce36ae61d167896842a9117b31ed88845c34ea868ce4f99075df0eb388dbbe handshake=Noise_Xpsk0_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541401f93c17b8761a54f7a233e20fae86a9858038716057a8a1376d708c390e5ca20d0296245bd7bde6f607b09dcb7b2455841fd865669d8982503fad6c369df182f624375e02b6537b80 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=1085833cf5bcf7446d55ec7a8a07af2752b57b729e2dd6ca882b946d00b4fe msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=bcbb6258caa407556855bf3236705c6f24003ebb2c79ba707afef937cfadcd handshake=Noise_Xpsk1_25519_AESGCM_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625447657edc39b8a745cd59d07d6e5a2c003c7f9b3e3643af88ca131edbc5578f4a3d88a7587a88291fced6580a9485994268b6e7db7a7e3dd0e5ab679b5d4402ec2c50e88cda1c46aa7811 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=0843a331ef88666075f33de5baa1a3cb426f0d4b16de1ff591a6f2e467d07b msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=a6edf21b63c3d67b27e4235f7c6249153c182cb5fd0bab4e2113c4aecc4017 handshake=Noise_NN_25519_ChaChaPoly_SHA256 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466b9a74f6724441623af038022288c2556 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=96cd46be111804586a935795eeb4ce62bdec121048a10520b00266b22722eb msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=fe2bc534e31964c0bd56337223e921565e39dbc5f156aa04766ced4689a2a2 handshake=Noise_NNpsk0_25519_ChaChaPoly_SHA256 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254e7136508cb8178281204abd62e9f2a3e msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466922f3b7824001193c077abd8b7a73030 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=b349a522c145762c7c737ac1d1425ce1fb25c7cca626177ee4ceed3cd6fb3d msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=b41e24399dc3f1ad2faf82868700e4bf31bb89f6616e1d6a92802bb8ad80d6 handshake=Noise_NNpsk1_25519_ChaChaPoly_SHA256 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254ee9d033f6e676839de40170aca012002 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466fa780f5014acbab4d9e8a60099774b2f msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=75c86e1615188d3feae514a908523ccbbce6f0b0fa368c0dbac6ddf01b6571 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=3b27b0caca5899086a3ebfb80a0651a18f1af75c9f71f3b3818a0170c8e615 handshake=Noise_NNpsk2_25519_ChaChaPoly_SHA256 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254649f81a8f7cd2ee213caf437abedbbf5 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466f61e2ebde3648ba1353298a7b8f99454 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=eb1a9999225c8a03f6c053d24da26df330c7b2ac6315c5aeff9a4c2893d9e3 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=17aecb7454199636aa7e8a44b7e51b5dc6729b39faddd2739bc66d8cbf07be handshake=Noise_NN_25519_ChaChaPoly_SHA256 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466bb598b7e636e9475d9a7d3111d7a7f3929f0f4c47293613c173f msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=96cd46be111804586a935795eeb4ce62bdec121048a10520b00266b22722eb msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=fe2bc534e31964c0bd56337223e921565e39dbc5f156aa04766ced4689a2a2 handshake=Noise_NNpsk0_25519_ChaChaPoly_SHA256 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662547c78f22f8cea986f934a675201c7f431a539e50c9be46986fa89 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484666913ea64c74c2f63ee5e814fda25301b9508e4685ee02e9852fd msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=b349a522c145762c7c737ac1d1425ce1fb25c7cca626177ee4ceed3cd6fb3d msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=b41e24399dc3f1ad2faf82868700e4bf31bb89f6616e1d6a92802bb8ad80d6 handshake=Noise_NNpsk1_25519_ChaChaPoly_SHA256 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254d14f69b3b9d75ea1662d0ce4daecd3845bd11582aebf2fba3e99 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466961705fd812d19815374d102e749b09e623ad659a7a3afef8415 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=75c86e1615188d3feae514a908523ccbbce6f0b0fa368c0dbac6ddf01b6571 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=3b27b0caca5899086a3ebfb80a0651a18f1af75c9f71f3b3818a0170c8e615 handshake=Noise_NNpsk2_25519_ChaChaPoly_SHA256 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254ba71add3db8e76dddcfecd52c7db8b92e7b993407c57d909b7f9 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484665aeaba3e8ae057890d222d19af245e23209100a4b501ca82f843 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=eb1a9999225c8a03f6c053d24da26df330c7b2ac6315c5aeff9a4c2893d9e3 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=17aecb7454199636aa7e8a44b7e51b5dc6729b39faddd2739bc66d8cbf07be handshake=Noise_NN_25519_ChaChaPoly_SHA256 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484665cda04f69d491f9bf509e632fc1a20dd msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=96cd46be111804586a935795eeb4ce62bdec121048a10520b00266b22722eb msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=fe2bc534e31964c0bd56337223e921565e39dbc5f156aa04766ced4689a2a2 handshake=Noise_NNpsk0_25519_ChaChaPoly_SHA256 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662546e96a20116b68fd776478e81d11779ca msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846666f51bc44f88917daa53fb4529499b55 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=b349a522c145762c7c737ac1d1425ce1fb25c7cca626177ee4ceed3cd6fb3d msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=b41e24399dc3f1ad2faf82868700e4bf31bb89f6616e1d6a92802bb8ad80d6 handshake=Noise_NNpsk1_25519_ChaChaPoly_SHA256 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662545860fa411dfa26d26f2128f7e347eaf9 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484662d6b25a63eb7741de46ecfe91e243f6f msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=75c86e1615188d3feae514a908523ccbbce6f0b0fa368c0dbac6ddf01b6571 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=3b27b0caca5899086a3ebfb80a0651a18f1af75c9f71f3b3818a0170c8e615 handshake=Noise_NNpsk2_25519_ChaChaPoly_SHA256 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254358bf186163f6d621580cf909c191a7c msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466b382c809faae2b2874cd218c7b075c96 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=eb1a9999225c8a03f6c053d24da26df330c7b2ac6315c5aeff9a4c2893d9e3 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=17aecb7454199636aa7e8a44b7e51b5dc6729b39faddd2739bc66d8cbf07be handshake=Noise_NN_25519_ChaChaPoly_SHA256 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466bb598b7e636e9475d9a74243a419c31324b40cc77cc7a7ea3b24 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=96cd46be111804586a935795eeb4ce62bdec121048a10520b00266b22722eb msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=fe2bc534e31964c0bd56337223e921565e39dbc5f156aa04766ced4689a2a2 handshake=Noise_NNpsk0_25519_ChaChaPoly_SHA256 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662547c78f22f8cea986f934ab17c2484a24a990a6473d588a4f20e99 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484666913ea64c74c2f63ee5e32a5358320d459322d624c9ccc975fa0 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=b349a522c145762c7c737ac1d1425ce1fb25c7cca626177ee4ceed3cd6fb3d msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=b41e24399dc3f1ad2faf82868700e4bf31bb89f6616e1d6a92802bb8ad80d6 handshake=Noise_NNpsk1_25519_ChaChaPoly_SHA256 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254d14f69b3b9d75ea1662d338ce00a4c4454f04db11957c29b45ba msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466961705fd812d198153745358e4e1e28b5a350b1f7abd0f271620 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=75c86e1615188d3feae514a908523ccbbce6f0b0fa368c0dbac6ddf01b6571 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=3b27b0caca5899086a3ebfb80a0651a18f1af75c9f71f3b3818a0170c8e615 handshake=Noise_NNpsk2_25519_ChaChaPoly_SHA256 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254ba71add3db8e76dddcfe83087861219e26e6f5b0b682e6758cdd msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484665aeaba3e8ae057890d221b12297799709eb36b11f4fd7366a4b2 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=eb1a9999225c8a03f6c053d24da26df330c7b2ac6315c5aeff9a4c2893d9e3 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=17aecb7454199636aa7e8a44b7e51b5dc6729b39faddd2739bc66d8cbf07be handshake=Noise_KN_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466f99627c2b9a34dc2e78efc21ea6d09e0 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=440ade028b567ce045b4a367bc7644ba49ff120f2e704abe4be8ce31a43c0f msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=644df69c08e6c5b832b7b34b54a7e616efc276686ea257ca570c7b0af25e03 handshake=Noise_KNpsk0_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662549d36baa6dbd5bae534893a1691872bff msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466eec752b6d790962a0adb9fa92948a16f msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=58d034db684b5b9548fa8a2596d5ef48bdc0827f3c936757f824f25190410c msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=5987d3cbe26bcf75946a86d0555108608e7ed18325dd60fe7d4fd200ee741d handshake=Noise_KNpsk1_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662545c1042a1c7e8f74e1c96e053fc8ca7d4 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466458d2cdf33b1fbee339147985abf0afa msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=7474619bc60a98042cc7bce09f4f631f20af421de18fc434457e2fb7f9e48e msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=00783db976d144d85fb4dbb341e908748eb0bc90123fcf4162b10cd34277ef handshake=Noise_KNpsk2_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541c91264cfdb8fc6b8804d45a55b62a8b msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846696ab554cdc752c12efb617a2bbb548d0 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=d65a6ebbe3f38a2f2de8529b5203ed2668cbcefc48219fce3f2414bf3b2bdb msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=cdef5b6bd32cdca6ebfe2a3b697caadc3099b9e820eb1c9d27d28b6ed99138 handshake=Noise_KN_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c39ce1d8e1bc7d551d60e0f13021b569aaf063bbfbaeb5df1d48 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=440ade028b567ce045b4a367bc7644ba49ff120f2e704abe4be8ce31a43c0f msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=644df69c08e6c5b832b7b34b54a7e616efc276686ea257ca570c7b0af25e03 handshake=Noise_KNpsk0_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254d9e492b73ab5e7b411ca24b530505ed9f9a7434b7fb9e3942543 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466faed543a83225ae87e5f7b9ed811dd5a5bea64334ddf210e18b4 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=58d034db684b5b9548fa8a2596d5ef48bdc0827f3c936757f824f25190410c msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=5987d3cbe26bcf75946a86d0555108608e7ed18325dd60fe7d4fd200ee741d handshake=Noise_KNpsk1_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548b78fe393615d3918bb58f0884d2d372e53e4851ce80e67fe922 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466273122b0e5f91c8b4a7ef2d5a964eb79bc00a41011e068557be1 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=7474619bc60a98042cc7bce09f4f631f20af421de18fc434457e2fb7f9e48e msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=00783db976d144d85fb4dbb341e908748eb0bc90123fcf4162b10cd34277ef handshake=Noise_KNpsk2_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254d738849e4f8635b57bf99e438b655ab0cdd92b50c3eb8a38fa47 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466874006ee8e970d1140a893ddd52de47e27b95d0f17bd424122fd msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=d65a6ebbe3f38a2f2de8529b5203ed2668cbcefc48219fce3f2414bf3b2bdb msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=cdef5b6bd32cdca6ebfe2a3b697caadc3099b9e820eb1c9d27d28b6ed99138 handshake=Noise_KN_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484667f658a41f0ba1afd9c3df2bc05eb14e0 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=440ade028b567ce045b4a367bc7644ba49ff120f2e704abe4be8ce31a43c0f msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=644df69c08e6c5b832b7b34b54a7e616efc276686ea257ca570c7b0af25e03 handshake=Noise_KNpsk0_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662544914ec3c41b58c96b596001a8abe3938 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484668f00eba16f40a2355d414ed7b0bab565 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=58d034db684b5b9548fa8a2596d5ef48bdc0827f3c936757f824f25190410c msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=5987d3cbe26bcf75946a86d0555108608e7ed18325dd60fe7d4fd200ee741d handshake=Noise_KNpsk1_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254a01257cd75ea9e8e2fe8a59205962271 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846680d63539016c3cf1e09fe3440be095d6 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=7474619bc60a98042cc7bce09f4f631f20af421de18fc434457e2fb7f9e48e msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=00783db976d144d85fb4dbb341e908748eb0bc90123fcf4162b10cd34277ef handshake=Noise_KNpsk2_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254677a7c6247070ec793bfa8ea24a40134 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466931ff9b08ae6a9b92eab49565d39c990 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=d65a6ebbe3f38a2f2de8529b5203ed2668cbcefc48219fce3f2414bf3b2bdb msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=cdef5b6bd32cdca6ebfe2a3b697caadc3099b9e820eb1c9d27d28b6ed99138 handshake=Noise_KN_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c39ce1d8e1bc7d551d6096fc00a1fb421a5a36483878f3112caa msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=440ade028b567ce045b4a367bc7644ba49ff120f2e704abe4be8ce31a43c0f msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=644df69c08e6c5b832b7b34b54a7e616efc276686ea257ca570c7b0af25e03 handshake=Noise_KNpsk0_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254d9e492b73ab5e7b411ca38a73ec25f1334931010f25867aa8dd2 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466faed543a83225ae87e5f4fa930e2a1af4d46cb19721cc97cddd9 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=58d034db684b5b9548fa8a2596d5ef48bdc0827f3c936757f824f25190410c msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=5987d3cbe26bcf75946a86d0555108608e7ed18325dd60fe7d4fd200ee741d handshake=Noise_KNpsk1_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548b78fe393615d3918bb584c160d00bae8672e05bb010987c999f msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466273122b0e5f91c8b4a7e9e8a59e9c89269df77d30fbeaec514c2 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=7474619bc60a98042cc7bce09f4f631f20af421de18fc434457e2fb7f9e48e msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=00783db976d144d85fb4dbb341e908748eb0bc90123fcf4162b10cd34277ef handshake=Noise_KNpsk2_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254d738849e4f8635b57bf9f7c2d1cce4db786552b21fc809e097b9 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466874006ee8e970d1140a8eee4c4694467251fe8db35416cf00ff2 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=d65a6ebbe3f38a2f2de8529b5203ed2668cbcefc48219fce3f2414bf3b2bdb msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=cdef5b6bd32cdca6ebfe2a3b697caadc3099b9e820eb1c9d27d28b6ed99138 handshake=Noise_NK_25519_ChaChaPoly_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254bb9e8fd1c92e99737291c111956e17ab msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466d97cd906e611b305ce4c22ffd315b750 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=9cfd3ddea89d9f445475098f834e572ec4a8c5e9be740dd92831ef6cf6fd9e msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=5db2eb7c7b37b33cd42fd321e05d9048c9be3efa0ae3a8c76724307e7562ff handshake=Noise_NKpsk0_25519_ChaChaPoly_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254718a7d4c2e3c99dbf622a533aee2274f msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c286f86f4a7cfd2b81fe3d1444add3f2 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=01d0ab0f394923f44c3abad69154757bbf902c64c5219bf8c624d69b11c959 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=2c2a431db9e64c43b6c0a520547bdd8e1368358c099345ab4969f1bb4a9299 handshake=Noise_NKpsk1_25519_ChaChaPoly_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254afc9110414941f0b3fa72bd395095718 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484669c069692405e7802986d04a3d2430961 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=7d7766291245b52e9d504ca48bc3fb1118bdf46179c1b9bd32c925493533b3 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=11a8d0014a1f8b258deb81bed19ea97bec009031d6a7a374eba5528490926c handshake=Noise_NKpsk2_25519_ChaChaPoly_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254f93a440c4497c8dc01d655826bc1e042 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846680f0334cb21d5a78f12947bb80c7735b msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=6647abf5c995fb4b851bfd63c8e699286071c1fc2559764335c6329e2bea0f msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=89e20c2dca7e4c2202aa731271c5d2081164c86e7b365ca98465961e7113a6 handshake=Noise_NK_25519_ChaChaPoly_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662543e44c6b6a0a9a28f5daf1796ae55886ff960a634ddc73b72e7b0 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484666e1a02e46e9053fa2a81f648b1fee43c438299bba0e77bc34d08 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=9cfd3ddea89d9f445475098f834e572ec4a8c5e9be740dd92831ef6cf6fd9e msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=5db2eb7c7b37b33cd42fd321e05d9048c9be3efa0ae3a8c76724307e7562ff handshake=Noise_NKpsk0_25519_ChaChaPoly_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254ca3238dddb5256cd690a81f68c59b5d5216a7806cc1e63fcdceb msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484660aa92dceb01712153f8dbce8ba3752e32b0a055a3f56a4900e58 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=01d0ab0f394923f44c3abad69154757bbf902c64c5219bf8c624d69b11c959 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=2c2a431db9e64c43b6c0a520547bdd8e1368358c099345ab4969f1bb4a9299 handshake=Noise_NKpsk1_25519_ChaChaPoly_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254b74e16d251935c4ba865774bfc2d3703bf09fe397d41b70e66b0 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466668442074729cbc1afdd21edaed1bd0c2bfe8b0bbd4797e22a73 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=7d7766291245b52e9d504ca48bc3fb1118bdf46179c1b9bd32c925493533b3 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=11a8d0014a1f8b258deb81bed19ea97bec009031d6a7a374eba5528490926c handshake=Noise_NKpsk2_25519_ChaChaPoly_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662545b3af61cb5aa81f19c8ece0651d022203328454673d001ede6b8 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466bf9e6c127466353179c7c004f953f2584b10238b823e7cc5e97c msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=6647abf5c995fb4b851bfd63c8e699286071c1fc2559764335c6329e2bea0f msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=89e20c2dca7e4c2202aa731271c5d2081164c86e7b365ca98465961e7113a6 handshake=Noise_NK_25519_ChaChaPoly_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254660f1a4e72e678e4b0bcacd08c2cc9f4 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484669b3dc8f07dd44673e4833fc90ce1164e msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=9cfd3ddea89d9f445475098f834e572ec4a8c5e9be740dd92831ef6cf6fd9e msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=5db2eb7c7b37b33cd42fd321e05d9048c9be3efa0ae3a8c76724307e7562ff handshake=Noise_NKpsk0_25519_ChaChaPoly_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625460387695ddb6a97647f93847e8923922 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466dd59aa9c3ee7803c98e3651db6b3e81b msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=01d0ab0f394923f44c3abad69154757bbf902c64c5219bf8c624d69b11c959 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=2c2a431db9e64c43b6c0a520547bdd8e1368358c099345ab4969f1bb4a9299 handshake=Noise_NKpsk1_25519_ChaChaPoly_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662544259ae3d24d8665ff7ce9256b701954c msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c3d5626dcdd6dbd0ef679f92fa2f4518 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=7d7766291245b52e9d504ca48bc3fb1118bdf46179c1b9bd32c925493533b3 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=11a8d0014a1f8b258deb81bed19ea97bec009031d6a7a374eba5528490926c handshake=Noise_NKpsk2_25519_ChaChaPoly_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254b9cfbfa816d97f7a4c47a7a9f8ecc6ac msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484661629749d9a9c1558d3a8027a81a7b97f msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=6647abf5c995fb4b851bfd63c8e699286071c1fc2559764335c6329e2bea0f msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=89e20c2dca7e4c2202aa731271c5d2081164c86e7b365ca98465961e7113a6 handshake=Noise_NK_25519_ChaChaPoly_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662543e44c6b6a0a9a28f5dafb35dfe4f2cf52995fadd57f0a4006d1c msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484666e1a02e46e9053fa2a81414fd4a5bd34dbd73cb3a6e1b896bce6 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=9cfd3ddea89d9f445475098f834e572ec4a8c5e9be740dd92831ef6cf6fd9e msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=5db2eb7c7b37b33cd42fd321e05d9048c9be3efa0ae3a8c76724307e7562ff handshake=Noise_NKpsk0_25519_ChaChaPoly_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254ca3238dddb5256cd690ae943692a4c055f22d3dd834ea90edfd8 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484660aa92dceb01712153f8d214f8f71c03c898cbd891e751f10d132 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=01d0ab0f394923f44c3abad69154757bbf902c64c5219bf8c624d69b11c959 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=2c2a431db9e64c43b6c0a520547bdd8e1368358c099345ab4969f1bb4a9299 handshake=Noise_NKpsk1_25519_ChaChaPoly_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254b74e16d251935c4ba86516dfd74e045ff1c291281bcaa9362d00 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466668442074729cbc1afddf5f76f8ec753aa54926873c9096709c3 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=7d7766291245b52e9d504ca48bc3fb1118bdf46179c1b9bd32c925493533b3 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=11a8d0014a1f8b258deb81bed19ea97bec009031d6a7a374eba5528490926c handshake=Noise_NKpsk2_25519_ChaChaPoly_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662545b3af61cb5aa81f19c8e33d34af062c6a72f793a6612ed12887f msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466bf9e6c127466353179c7c97611f0c4ac0ac3142512e76f650851 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=6647abf5c995fb4b851bfd63c8e699286071c1fc2559764335c6329e2bea0f msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=89e20c2dca7e4c2202aa731271c5d2081164c86e7b365ca98465961e7113a6 handshake=Noise_KK_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254de3641cda8802b636ee7afe370f7e34e msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466e4c15cda24dee01c5c60ef6c4d6b92b3 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=ab44bf778165ad086eaebbb994df826628b3fe26ad310642480a1b2af8fc23 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=baacf816b83aaeb15954621113f8e0603cb79168fe6308b87413004beee4d2 handshake=Noise_KKpsk0_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625498bf0afa6ad430bef2179595b80f00af msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484660bc0a013b37277dafd0e2a2073ac3cc0 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=fe6f6f749a1495883a1715674543c2ebe56c1cb674d4f4e47f9086553700ce msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=7a88c03c458db5b49827d899535210ba453d7dfc0f76a661b8cad08cf967ef handshake=Noise_KKpsk1_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625482f300522a0b96d0e03c3d41f98f6030 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846652279732a99893f3b89cf55f3784a3b5 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=de7af56efebaae1c6a616b624b39a441d8b82e09a2f2a30531a7c30441e6eb msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=408aae72aaa26f98d436f4a64c34ea26baa1802548774b8f14cff3d1891895 handshake=Noise_KKpsk2_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254f76e9ef85e5bc141f0d2ac73c491af69 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466479ea79a1a541cbc7eb522078716e1d4 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=cdafd1b6afea01667934ed26de85e3a200927343f534ccee0bdab0fbbe5aee msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=2c4b0bdb11291ee7b67616af3c37e7a9f8c400c715e7f9142a620db4fd3e05 handshake=Noise_KK_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254558809aaeff03abdf354a87685ef23c3191ad86ae0c81bbaafa8 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466f7c3b2f7cef28a2f21245150a4abd05d6404ab474c115c578ea5 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=ab44bf778165ad086eaebbb994df826628b3fe26ad310642480a1b2af8fc23 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=baacf816b83aaeb15954621113f8e0603cb79168fe6308b87413004beee4d2 handshake=Noise_KKpsk0_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254b999c716e2b5ebd7dddc18c68985cfb4351b19d5aa51e6b6a3d9 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466ad07cf9d7d4c88039123d1fae114ca14da9754cad2103495e943 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=fe6f6f749a1495883a1715674543c2ebe56c1cb674d4f4e47f9086553700ce msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=7a88c03c458db5b49827d899535210ba453d7dfc0f76a661b8cad08cf967ef handshake=Noise_KKpsk1_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541a96b079a0d93c9c8a155898e5985630a9b1f023773114dabe32 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466677a31f9e25c3322951402efef0b854d68e456565be88e0d51a2 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=de7af56efebaae1c6a616b624b39a441d8b82e09a2f2a30531a7c30441e6eb msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=408aae72aaa26f98d436f4a64c34ea26baa1802548774b8f14cff3d1891895 handshake=Noise_KKpsk2_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662543d75d4599f7a207000b95e3ba21772976160bc0d0e9d849b969b msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484669ba2c1c12e0ae525b5442707aa5ea703c57d8aa875aa18ed909a msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=cdafd1b6afea01667934ed26de85e3a200927343f534ccee0bdab0fbbe5aee msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=2c4b0bdb11291ee7b67616af3c37e7a9f8c400c715e7f9142a620db4fd3e05 handshake=Noise_KK_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c2b1750e0c698c0a6112819f9c76fc36 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846680da3b11f10f1a9b7790d0edd4dffbaf msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=ab44bf778165ad086eaebbb994df826628b3fe26ad310642480a1b2af8fc23 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=baacf816b83aaeb15954621113f8e0603cb79168fe6308b87413004beee4d2 handshake=Noise_KKpsk0_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662543dbdbd15ce16ebbd5cbe94c31693a31d msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c6530671018ea8a0fc755a25fc2567ce msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=fe6f6f749a1495883a1715674543c2ebe56c1cb674d4f4e47f9086553700ce msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=7a88c03c458db5b49827d899535210ba453d7dfc0f76a661b8cad08cf967ef handshake=Noise_KKpsk1_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254840a997d6af2ba012dd07b2df7798fee msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466ca8bb47ff4a43848304c6d2edcf068dd msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=de7af56efebaae1c6a616b624b39a441d8b82e09a2f2a30531a7c30441e6eb msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=408aae72aaa26f98d436f4a64c34ea26baa1802548774b8f14cff3d1891895 handshake=Noise_KKpsk2_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625482752d661cd7555efeb06de81c9c7440 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466faf6abfeb8c57688af793a94b8b59903 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=cdafd1b6afea01667934ed26de85e3a200927343f534ccee0bdab0fbbe5aee msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=2c4b0bdb11291ee7b67616af3c37e7a9f8c400c715e7f9142a620db4fd3e05 handshake=Noise_KK_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254558809aaeff03abdf354ad47d26523f1b98b5ce386c3b066ff53 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466f7c3b2f7cef28a2f212487967f4b709e22ff452dcb68821a10aa msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=ab44bf778165ad086eaebbb994df826628b3fe26ad310642480a1b2af8fc23 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=baacf816b83aaeb15954621113f8e0603cb79168fe6308b87413004beee4d2 handshake=Noise_KKpsk0_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254b999c716e2b5ebd7dddc071a74c7c4c9cb80ac268b23a5284fc2 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466ad07cf9d7d4c88039123b962375716b252dc4ad12cfe6f5d4bb8 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=fe6f6f749a1495883a1715674543c2ebe56c1cb674d4f4e47f9086553700ce msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=7a88c03c458db5b49827d899535210ba453d7dfc0f76a661b8cad08cf967ef handshake=Noise_KKpsk1_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541a96b079a0d93c9c8a154abc656a5b149ecbeb06e87583b65868 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466677a31f9e25c33229514bb8c7076d4faff8789a0e351738b86fd msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=de7af56efebaae1c6a616b624b39a441d8b82e09a2f2a30531a7c30441e6eb msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=408aae72aaa26f98d436f4a64c34ea26baa1802548774b8f14cff3d1891895 handshake=Noise_KKpsk2_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662543d75d4599f7a207000b9c74a6e5fb64546dabaea326eae41e103 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484669ba2c1c12e0ae525b54442c957df906bb8905ee7620374ebf0b2 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=cdafd1b6afea01667934ed26de85e3a200927343f534ccee0bdab0fbbe5aee msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=2c4b0bdb11291ee7b67616af3c37e7a9f8c400c715e7f9142a620db4fd3e05 handshake=Noise_NX_25519_ChaChaPoly_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846686b5f4e8c51a605bcb276206a6df60ae938b905adaf29a2dae4a4951bbd9ac64830ab64f2329646560b930979ff52da8dda7c0677c502dba13c078b5afd1bf11 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=92613cda6ccb2936449efb8ff870b5a4536f5734a4e31056d38101230762e8 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=ed89355072429afe6c3442ba7af66f6647499291bab58d40f6a392e79ff80a handshake=Noise_NXpsk0_25519_ChaChaPoly_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254a9ee73b4288fdbc31cb51797c65fbaa9 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484664f6b8c9a95aeb764b26cf8c501bacc34e529749e4f6ae88920bd387fabb8637dcde2392baf3709659849325856ac9cf356aaefe992efcb4f9ab2a3970fbb99f5 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=48a1263c75d2406120b1a37c67ea6dbfd419846d447bb9561f7b2e59e519fb msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=73b72d691daf65626d78168e0ed56bea89856f26a9dafe3e9bfc9eb6e0f31d handshake=Noise_NXpsk1_25519_ChaChaPoly_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254630415173b9f1928701ff2289f37d561 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846605a586d5481fff45caeea1cd0655af37781458d66a4815875d47b78c96a3a12d093a0dc166d20f0c3214a4626b9e66336caf89021d364d65e4772bc8f1321040 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=0939720a26cecdc36b1c4026bd90b3dbcf385f01e559ca5a0a0d3e873490e5 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=4d4d6c20c1864598f66f01fe45acc18f5bda9ffa8df1ef6ceb816767b89a58 handshake=Noise_NXpsk2_25519_ChaChaPoly_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254162c9c2f5940535c6bfd1f890e60408d msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466353ad209b6a362c223414b1d0a03e9e81e22fa4caeb6b362260fbfe5c128631598e58eba6e707e7d2222949ee232b54ebf61e33970b46cd4eeac807a2f0cf192 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=a4e0c92d865ded40ef3c75ba54bdf98e66a5a0f2518d3b0a7f6f0282f2b20a msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=295ed0f56eb5f31822f8d9555d259cad3287f00b0a190e11039c84931c3da5 handshake=Noise_NX_25519_ChaChaPoly_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846686b5f4e8c51a605bcb276206a6df60ae938b905adaf29a2dae4a4951bbd9ac64ab58309bc12c2c6833badcfdd3d7ff0761dbe60d6d29ade8507d29fb2bc4117057fc8179e6fbef5007ad msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=92613cda6ccb2936449efb8ff870b5a4536f5734a4e31056d38101230762e8 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=ed89355072429afe6c3442ba7af66f6647499291bab58d40f6a392e79ff80a handshake=Noise_NXpsk0_25519_ChaChaPoly_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254e9015cba2a23b0096a05011567485f6bf02291236c1a148210fc msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484664f6b8c9a95aeb764b26cf8c501bacc34e529749e4f6ae88920bd387fabb8637dd40f5cfab465b3b2502a36bd5eb32fcfcd18d09a129a297e8b6ec14c40f49ddefba21635f51fb72aa086 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=48a1263c75d2406120b1a37c67ea6dbfd419846d447bb9561f7b2e59e519fb msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=73b72d691daf65626d78168e0ed56bea89856f26a9dafe3e9bfc9eb6e0f31d handshake=Noise_NXpsk1_25519_ChaChaPoly_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662546f39612d4d40b9e9cfdc3a11c3356eeff3ebf41fbfaeeef9aa39 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846605a586d5481fff45caeea1cd0655af37781458d66a4815875d47b78c96a3a12d555e64b1d866a2cc146e4d71d56b0bacf2c3abdcf587228060f0a41bb179568b9c95191f7bdb9ab94e9d msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=0939720a26cecdc36b1c4026bd90b3dbcf385f01e559ca5a0a0d3e873490e5 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=4d4d6c20c1864598f66f01fe45acc18f5bda9ffa8df1ef6ceb816767b89a58 handshake=Noise_NXpsk2_25519_ChaChaPoly_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625438e8bbb2574005b8a72c7fc4a5455835244356622ed2cdbbd68d msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466353ad209b6a362c223414b1d0a03e9e81e22fa4caeb6b362260fbfe5c1286315de9dafc57e6d45a3fbd49aced15f14ce967be96d154f36efe24015a68924e69b7c9135349ce6264f6c59 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=a4e0c92d865ded40ef3c75ba54bdf98e66a5a0f2518d3b0a7f6f0282f2b20a msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=295ed0f56eb5f31822f8d9555d259cad3287f00b0a190e11039c84931c3da5 handshake=Noise_NX_25519_ChaChaPoly_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846686b5f4e8c51a605bcb276206a6df60ae938b905adaf29a2dae4a4951bbd9ac64609b51f99bea30ec0bbedbd1007843d83c9763a959b00ab5cab5ba49eafb3e2e msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=92613cda6ccb2936449efb8ff870b5a4536f5734a4e31056d38101230762e8 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=ed89355072429afe6c3442ba7af66f6647499291bab58d40f6a392e79ff80a handshake=Noise_NXpsk0_25519_ChaChaPoly_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254d93a8a6ccad06b8a39521b804712e760 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484664f6b8c9a95aeb764b26cf8c501bacc34e529749e4f6ae88920bd387fabb8637d74d1f7e7e208bab05d20d4b685ce7dbd7c3ac274d2fc417b9ea17fca299290ea msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=48a1263c75d2406120b1a37c67ea6dbfd419846d447bb9561f7b2e59e519fb msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=73b72d691daf65626d78168e0ed56bea89856f26a9dafe3e9bfc9eb6e0f31d handshake=Noise_NXpsk1_25519_ChaChaPoly_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254921fe5c4bb90760e53d6faf1a0740c79 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846605a586d5481fff45caeea1cd0655af37781458d66a4815875d47b78c96a3a12d92c26414634b717744bf686cda3a086e2a5f112e7b50193a0981c9052b26b95a msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=0939720a26cecdc36b1c4026bd90b3dbcf385f01e559ca5a0a0d3e873490e5 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=4d4d6c20c1864598f66f01fe45acc18f5bda9ffa8df1ef6ceb816767b89a58 handshake=Noise_NXpsk2_25519_ChaChaPoly_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254a816c865955730f32f7955893a0d7f2e msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466353ad209b6a362c223414b1d0a03e9e81e22fa4caeb6b362260fbfe5c128631555051ef062c98db54b470d1e15b0050171b4b5a3b57703c66b018918176481dd msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=a4e0c92d865ded40ef3c75ba54bdf98e66a5a0f2518d3b0a7f6f0282f2b20a msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=295ed0f56eb5f31822f8d9555d259cad3287f00b0a190e11039c84931c3da5 handshake=Noise_NX_25519_ChaChaPoly_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846686b5f4e8c51a605bcb276206a6df60ae938b905adaf29a2dae4a4951bbd9ac640fc955b72cd7be36df1431bc363bf15b61dbe60d6d29ade8507d549c2b17ff58629ba542d5129adf100f msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=92613cda6ccb2936449efb8ff870b5a4536f5734a4e31056d38101230762e8 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=ed89355072429afe6c3442ba7af66f6647499291bab58d40f6a392e79ff80a handshake=Noise_NXpsk0_25519_ChaChaPoly_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254e9015cba2a23b0096a053a030712430d2c4b67068f03021e228f msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484664f6b8c9a95aeb764b26cf8c501bacc34e529749e4f6ae88920bd387fabb8637da2ba3faccfe2faa68a3139e1c8447a55cd18d09a129a297e8b6eae2479c85097b112227d3a5f8c151535 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=48a1263c75d2406120b1a37c67ea6dbfd419846d447bb9561f7b2e59e519fb msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=73b72d691daf65626d78168e0ed56bea89856f26a9dafe3e9bfc9eb6e0f31d handshake=Noise_NXpsk1_25519_ChaChaPoly_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662546f39612d4d40b9e9cfdc571de866bca651aafdc036069e6287ee msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846605a586d5481fff45caeea1cd0655af37781458d66a4815875d47b78c96a3a12d10417dc13d71a4453495b69c0892beb5f2c3abdcf587228060f0258e113345473d901ace83f9bdbd0b41 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=0939720a26cecdc36b1c4026bd90b3dbcf385f01e559ca5a0a0d3e873490e5 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=4d4d6c20c1864598f66f01fe45acc18f5bda9ffa8df1ef6ceb816767b89a58 handshake=Noise_NXpsk2_25519_ChaChaPoly_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625438e8bbb2574005b8a72cea9f0f940e1159de27b869b82e9779f0 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466353ad209b6a362c223414b1d0a03e9e81e22fa4caeb6b362260fbfe5c1286315e1f3a591d5886270af814b41d8bacb7a967be96d154f36efe240b4f5bbe437a4669d354ec3f988467b16 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=a4e0c92d865ded40ef3c75ba54bdf98e66a5a0f2518d3b0a7f6f0282f2b20a msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=295ed0f56eb5f31822f8d9555d259cad3287f00b0a190e11039c84931c3da5 handshake=Noise_KX_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846622be88163c561546e4bed5f7edf59c4a66de1b08618f33e5795acaac602ccefed747d2332f470a6322d692464a05fcd67cba64be6a7e2398b84f0874a7d27c38 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=0bdd14922642db2bd89e286bac9a93db23f5677f0c21a2504d12a30ba345c9 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=01d6ba6fa72b364f3595ecd4fcfd2163c6419dcaaf81400f2a2475841bf0d8 handshake=Noise_KXpsk0_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254d46828feccb106fce1347259efe3d560 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466e10980f3530a4aaf3535bcd0434d86038c899f9f7eaa14ec3b953dfccd14f38eeceda506dac5ffaa99ff52fe7504945eb9b6072986d1e7120e06d3c1972f7180 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=10541bac3d4a63122a37a4f7b5dcfcc525e1181fc5dd8acc49d47583d318a8 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=863dcf756c35668a469a0b54d4e1dfe6c8eb5731fefa8fd1ea01ee193ca65a handshake=Noise_KXpsk1_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254239128e9c724ebca8616533a70d2437b msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484666502920f436afe0924fb9e2089dae0157d3aece8be75d5e40c6c32324963763a5208664eb984e338151d464d04f944b15fc0cf85a10bb0c55d8971abe75aa2b3 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=f4df46901c83ffc83cb5a2b8e3f551f94413e760c545fe690c376fcc67d2c6 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=6ae230f4066266b0d5acbd1f88e9a369008a22f37234bb29edccccd574835b handshake=Noise_KXpsk2_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254016d9bce67aca6fbde6cd635a26a793b msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484665707e22c0421b4143fb60cdb66d4abe8e9f9f96622ed7415a4bef49e881e6259ec92755a87cf9ae7807a98d2b99b2886a6afd2cf42f6ec465d945fceeaa6ca42 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=ccf1e63eb05b5935b3925d91e55cc46e95c883af0c86ceb81b44679d63b8df msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=bfb507e53620a99a87de6c5118a296da629e71582b4315d3f9d276cd6d8123 handshake=Noise_KX_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846622be88163c561546e4bed5f7edf59c4a66de1b08618f33e5795acaac602ccefea1671c0794e5e89f47225379b721d4ec0bff04812072f6475715344dbbf02f94c684290d67dbdbc8207d msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=0bdd14922642db2bd89e286bac9a93db23f5677f0c21a2504d12a30ba345c9 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=01d6ba6fa72b364f3595ecd4fcfd2163c6419dcaaf81400f2a2475841bf0d8 handshake=Noise_KXpsk0_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c3e81f3136465c96cebd9ede3119a58997cc9451cb028c655ffe msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466e10980f3530a4aaf3535bcd0434d86038c899f9f7eaa14ec3b953dfccd14f38e945d19af90678c770e7fa5b44cf2f028a97d8dcafbf2716d9afdcfbbcb54a91f9a244f39bdc24b915afe msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=10541bac3d4a63122a37a4f7b5dcfcc525e1181fc5dd8acc49d47583d318a8 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=863dcf756c35668a469a0b54d4e1dfe6c8eb5731fefa8fd1ea01ee193ca65a handshake=Noise_KXpsk1_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254326b26fa793456510d57c3fbdb793f6b4b818a362b84c1b66c8f msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484666502920f436afe0924fb9e2089dae0157d3aece8be75d5e40c6c32324963763a4a342ec239c8c23d581a3c32e692458a71115f8a46511990d9df9e566c592c7cd453946d482d1b0471ca msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=f4df46901c83ffc83cb5a2b8e3f551f94413e760c545fe690c376fcc67d2c6 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=6ae230f4066266b0d5acbd1f88e9a369008a22f37234bb29edccccd574835b handshake=Noise_KXpsk2_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548ae113e0354a922eba4fcd8f1779c9e2a7e299b5dd36d51a3a88 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484665707e22c0421b4143fb60cdb66d4abe8e9f9f96622ed7415a4bef49e881e62592ad072445cec53458b1a2afe797bd4b04144407359790a257fcb9ab38935582670d3355072c7f3df624b msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=ccf1e63eb05b5935b3925d91e55cc46e95c883af0c86ceb81b44679d63b8df msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=bfb507e53620a99a87de6c5118a296da629e71582b4315d3f9d276cd6d8123 handshake=Noise_KX_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846622be88163c561546e4bed5f7edf59c4a66de1b08618f33e5795acaac602ccefe8ac78598314baf570622d86009c726c36d35cf3d7a7d73b97b17feb38c3b39d8 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=0bdd14922642db2bd89e286bac9a93db23f5677f0c21a2504d12a30ba345c9 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=01d6ba6fa72b364f3595ecd4fcfd2163c6419dcaaf81400f2a2475841bf0d8 handshake=Noise_KXpsk0_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254af3f8d444ba03713f5022a823e640a91 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466e10980f3530a4aaf3535bcd0434d86038c899f9f7eaa14ec3b953dfccd14f38e10d88a49863b30c39deeac932734a107a7dcd046a5c72e44ffe7568799d921d8 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=10541bac3d4a63122a37a4f7b5dcfcc525e1181fc5dd8acc49d47583d318a8 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=863dcf756c35668a469a0b54d4e1dfe6c8eb5731fefa8fd1ea01ee193ca65a handshake=Noise_KXpsk1_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625400e84c01aaed5f725ab7f61e29eeb91b msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484666502920f436afe0924fb9e2089dae0157d3aece8be75d5e40c6c32324963763a9c046b9524fcbdb33f1659ae34847bf2b199c8870b646a54304818f51af06071 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=f4df46901c83ffc83cb5a2b8e3f551f94413e760c545fe690c376fcc67d2c6 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=6ae230f4066266b0d5acbd1f88e9a369008a22f37234bb29edccccd574835b handshake=Noise_KXpsk2_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254e705ff1f11873ffc5d577a6a5cf567e0 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484665707e22c0421b4143fb60cdb66d4abe8e9f9f96622ed7415a4bef49e881e62597f5a32f7d06d14b6f025a25d9c5c4d4757d58ed15d8db3099ad8e3eb486f924c msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=ccf1e63eb05b5935b3925d91e55cc46e95c883af0c86ceb81b44679d63b8df msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=bfb507e53620a99a87de6c5118a296da629e71582b4315d3f9d276cd6d8123 handshake=Noise_KX_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846622be88163c561546e4bed5f7edf59c4a66de1b08618f33e5795acaac602ccefee3df782d6947d1c911aac6358c29ee3a0bff04812072f6475715256b60c70ed7efb0e39e3228d109cc28 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=0bdd14922642db2bd89e286bac9a93db23f5677f0c21a2504d12a30ba345c9 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=01d6ba6fa72b364f3595ecd4fcfd2163c6419dcaaf81400f2a2475841bf0d8 handshake=Noise_KXpsk0_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c3e81f3136465c96cebdfe53333e37d04b3ecfc1ce18c24d8655 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466e10980f3530a4aaf3535bcd0434d86038c899f9f7eaa14ec3b953dfccd14f38e0d9282cf7902b2cf30bdc567ba9b58c2a97d8dcafbf2716d9afd88d956892efd1b1f7e4e9e43e5d33812 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=10541bac3d4a63122a37a4f7b5dcfcc525e1181fc5dd8acc49d47583d318a8 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=863dcf756c35668a469a0b54d4e1dfe6c8eb5731fefa8fd1ea01ee193ca65a handshake=Noise_KXpsk1_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254326b26fa793456510d5783814b7b0b910fa84f2e03549260a3ff msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484666502920f436afe0924fb9e2089dae0157d3aece8be75d5e40c6c32324963763a9e52ca3691a9bb4da162c6b52f63a33d71115f8a46511990d9dfae8beae37024a6d8f9d64a13ed725a88 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=f4df46901c83ffc83cb5a2b8e3f551f94413e760c545fe690c376fcc67d2c6 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=6ae230f4066266b0d5acbd1f88e9a369008a22f37234bb29edccccd574835b handshake=Noise_KXpsk2_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548ae113e0354a922eba4f54c106d22ef8b5012baa9d3f6282043e msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484665707e22c0421b4143fb60cdb66d4abe8e9f9f96622ed7415a4bef49e881e62598c2243a2c57862be374df2bcf1dca08b4144407359790a257fcb737585008b71d92634ed2e0006947bf3 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=ccf1e63eb05b5935b3925d91e55cc46e95c883af0c86ceb81b44679d63b8df msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=bfb507e53620a99a87de6c5118a296da629e71582b4315d3f9d276cd6d8123 handshake=Noise_XN_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466421a842962910af6f41bae34e0432825 msg_2_payload= msg_2_ciphertext=90ec9aa1d942e2a4659f38aa2c3aaea30db7c881779be22b7a75216bfc85f5b9a89cc47f2214dfe6ef4dbfcde419e1b976d89bde05869c2d4f63411b62d9e1aa msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=a3a03ed5f7e2e7f28a52c981ec059601e1f159914f3f3cd9a2c6c4430dd720 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=014e0d10df4f445f70e49bd6c70f73559fb941fd476c2a024a3c41faa85fd5 handshake=Noise_XNpsk0_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254d18427cf1cf5b8d6efedc50e72f98d61 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466a868b8ef62dddac660ccbd0ef5a2f638 msg_2_payload= msg_2_ciphertext=711758abed5d3a6ac8da8b44e5c5e8172fc2ac0d276c26869df19a6d7692bc215109dd8465dccae346b7c3244b8dec4bb0b920dd013a869726939ae290787a03 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=e70cfd7879dcb0954e022417341a5610ffa95efe16d46fd0a009ec563ead28 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=a3cf3d1c5147d0674557713d2bb5cee2dd14b19fb068191ccbae7f2eb37d15 handshake=Noise_XNpsk1_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254adaac346cc6dc2d8445919ef7814b47e msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466dc9fdacd87762acf1ffc1fc0030efbdf msg_2_payload= msg_2_ciphertext=ed69ae5a01433c142b45a612ad047ea28ea5fb892aec8502d2301d25379af0062277dc4aa770beb5920c299388f21f64076253ef99811b89c4c4d095baa9b663 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=0466462e068b7a45a52f923a3ff92045c003d75c0abfb5fef22e50930cdf0b msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=b1e2d80773770ecd305c15a6eb937794aacc757668d6a35c0b6b757c3661d9 handshake=Noise_XNpsk2_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541a0f3449ec3aefd8d282186f3cbf6d2c msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c6de47296cd1a124ae1bede32568b2eb msg_2_payload= msg_2_ciphertext=8c4f737e9523fc333fd7790a0da924aa5e9102815e6e58470ebfcb225505442f17316a2cfa8a0e08d6e8c61612390b023ead1a6e918977666182bf060f6e1f32 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=36b805eb8ae644d22dcd34bded50eb1d9ef8492011dfa55686877643444bf7 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=a623e85f1faa8a611b90e0267b9849cd137835c068773781c6020f6c29760e handshake=Noise_XNpsk3_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662547b1edc47b836d1657bba9ae2905187f9 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484665288e35fd769417d86673fe39856df48 msg_2_payload= msg_2_ciphertext=f9de295774dd85031fbfc643d31a9b8d22ad1c59c8c692f8fc24131ca25245d54aaa337b7f7543c27e2e7cece2034a3db47e10ce55ddb3e0500fc0707275b6a2 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=94d5355cbc643ba0617f5cb48d4dbc0bdd474526acea6a03788ffd875ed37c msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=d1ad326bfcc585060bd2b228a417401e532ebc5379b65d120a4c490131b02a handshake=Noise_XN_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466922d0c0809fbcd211f3ea7a49bd48d7d21b00709e8be9a1224e8 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=90ec9aa1d942e2a4659f38aa2c3aaea30db7c881779be22b7a75216bfc85f5b9ef116e53e5dd64ea8edb4fe0b9f020503103e387380039fd95ec75f82879c19b87bc1551964b8f019c8a msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=a3a03ed5f7e2e7f28a52c981ec059601e1f159914f3f3cd9a2c6c4430dd720 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=014e0d10df4f445f70e49bd6c70f73559fb941fd476c2a024a3c41faa85fd5 handshake=Noise_XNpsk0_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662544c40f70b1887c5e34173b42f5026cd011744f344d83d07fef6cb msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846622f0479024f9448013d11ed7cb13158b680cbd558e5f3ddd79c3 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=711758abed5d3a6ac8da8b44e5c5e8172fc2ac0d276c26869df19a6d7692bc21b951c8a293b10a8f53d3df938218ba8f669a67d1173c5f07ed10faebb25bf8d08eb5cf41230028d4f802 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=e70cfd7879dcb0954e022417341a5610ffa95efe16d46fd0a009ec563ead28 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=a3cf3d1c5147d0674557713d2bb5cee2dd14b19fb068191ccbae7f2eb37d15 handshake=Noise_XNpsk1_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254379bde1d982cb2c03b9125fd7ec573360c0d9eec0f0edc62514e msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846647abc11d0a30e8f48bee07a92bcc55f96d90613992ed2d1134d8 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=ed69ae5a01433c142b45a612ad047ea28ea5fb892aec8502d2301d25379af00620ccb49ae6217d2b906749a1d0901aa8245792e450b5a4856e2163b939b2113c20dcc1f6f962a4553e9e msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=0466462e068b7a45a52f923a3ff92045c003d75c0abfb5fef22e50930cdf0b msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=b1e2d80773770ecd305c15a6eb937794aacc757668d6a35c0b6b757c3661d9 handshake=Noise_XNpsk2_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254ab4c7101ed3993f615d370a8828e83d1b95e936d6543b31cf738 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c0aa4588158d1d69aacd89d72b0212efd61f553f5b46dced9288 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=8c4f737e9523fc333fd7790a0da924aa5e9102815e6e58470ebfcb225505442fcb02ed71bba2e642e3c673513f3086f2eabc32362bb438fa2719088bbc8b17eb0ab94995f4ef2b2e8240 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=36b805eb8ae644d22dcd34bded50eb1d9ef8492011dfa55686877643444bf7 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=a623e85f1faa8a611b90e0267b9849cd137835c068773781c6020f6c29760e handshake=Noise_XNpsk3_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254f9c15e88f3b35e1fb6ee32fc27e793d457328549cf440cf21bc8 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466dccf8bea81d7143217517e7f8889214aa825fde0c0f5f3730b04 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=f9de295774dd85031fbfc643d31a9b8d22ad1c59c8c692f8fc24131ca25245d511898ead584b2dff13d737c764a1068c5d79d90ea348d9a29e201390c72628151e1ec8ae3064c1847ff8 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=94d5355cbc643ba0617f5cb48d4dbc0bdd474526acea6a03788ffd875ed37c msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=d1ad326bfcc585060bd2b228a417401e532ebc5379b65d120a4c490131b02a handshake=Noise_XN_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466afdc554dbb2a7201c412bb437be1c270 msg_2_payload= msg_2_ciphertext=90ec9aa1d942e2a4659f38aa2c3aaea30db7c881779be22b7a75216bfc85f5b9ea8fcff35f027e4a4d34061afc8f293f1cc2d2845ad0e6c60fb28cd6a97ee7c9 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=a3a03ed5f7e2e7f28a52c981ec059601e1f159914f3f3cd9a2c6c4430dd720 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=014e0d10df4f445f70e49bd6c70f73559fb941fd476c2a024a3c41faa85fd5 handshake=Noise_XNpsk0_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662547efeb1446d33829e9121e2dd88d5890e msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484663a379fc907edb2d482c7cfd079c9061e msg_2_payload= msg_2_ciphertext=711758abed5d3a6ac8da8b44e5c5e8172fc2ac0d276c26869df19a6d7692bc21b2dbb6994af1e68351ca08a13d7aaacc314eb77d44983a1b8c0e73c6452cdbdd msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=e70cfd7879dcb0954e022417341a5610ffa95efe16d46fd0a009ec563ead28 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=a3cf3d1c5147d0674557713d2bb5cee2dd14b19fb068191ccbae7f2eb37d15 handshake=Noise_XNpsk1_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625482b27dc5a03ff90f7101dc91e98e48d5 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466f6c92addd63257386faff8abe78e38b0 msg_2_payload= msg_2_ciphertext=ed69ae5a01433c142b45a612ad047ea28ea5fb892aec8502d2301d25379af006b1f0245bcfdf0581add0bd95d520f601f53d08bc3407f230a562a42d9ffda18e msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=0466462e068b7a45a52f923a3ff92045c003d75c0abfb5fef22e50930cdf0b msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=b1e2d80773770ecd305c15a6eb937794aacc757668d6a35c0b6b757c3661d9 handshake=Noise_XNpsk2_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625417f654a5baf18317e0cbe73b91ab38e4 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846655bb48ca5581a0f31d217afbb880f4b2 msg_2_payload= msg_2_ciphertext=8c4f737e9523fc333fd7790a0da924aa5e9102815e6e58470ebfcb225505442fe7f943ccead5ea1eddbdafc92b73898d7b606fcfd0aef45e783d25f42f380a71 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=36b805eb8ae644d22dcd34bded50eb1d9ef8492011dfa55686877643444bf7 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=a623e85f1faa8a611b90e0267b9849cd137835c068773781c6020f6c29760e handshake=Noise_XNpsk3_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254edefc841a615045a125f9dca19e4587b msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846640df4f3bd14e278b1fe26af20aec9e2d msg_2_payload= msg_2_ciphertext=f9de295774dd85031fbfc643d31a9b8d22ad1c59c8c692f8fc24131ca25245d55076475f2e0d77cf754774a9f1fbc7fc540731fe9a5acfbee5ec79b48fb9cef3 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=94d5355cbc643ba0617f5cb48d4dbc0bdd474526acea6a03788ffd875ed37c msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=d1ad326bfcc585060bd2b228a417401e532ebc5379b65d120a4c490131b02a handshake=Noise_XN_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466922d0c0809fbcd211f3e38dde4eba0b653d54097896cd7d5dbd0 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=90ec9aa1d942e2a4659f38aa2c3aaea30db7c881779be22b7a75216bfc85f5b90c44c7fe245a16301dd8dc8addcc5ca23103e387380039fd95ecb996d7be061eb5ff1fc53559cd9e193d msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=a3a03ed5f7e2e7f28a52c981ec059601e1f159914f3f3cd9a2c6c4430dd720 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=014e0d10df4f445f70e49bd6c70f73559fb941fd476c2a024a3c41faa85fd5 handshake=Noise_XNpsk0_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662544c40f70b1887c5e3417316dcb4d39a81bfcdc6d54853afdc3136 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846622f0479024f9448013d1c4dd5c46e912265bc7f262f8f9b87d4d msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=711758abed5d3a6ac8da8b44e5c5e8172fc2ac0d276c26869df19a6d7692bc2143d3856c18125b39f327923b49af097a669a67d1173c5f07ed10aa46ec9fbe18ede3cfb2e7f69d677010 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=e70cfd7879dcb0954e022417341a5610ffa95efe16d46fd0a009ec563ead28 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=a3cf3d1c5147d0674557713d2bb5cee2dd14b19fb068191ccbae7f2eb37d15 handshake=Noise_XNpsk1_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254379bde1d982cb2c03b91964cd0759fe82fed89182aeee56f18e6 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846647abc11d0a30e8f48bee4cdda0ba985e7d4b29a633657c339893 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=ed69ae5a01433c142b45a612ad047ea28ea5fb892aec8502d2301d25379af0068a312038d318ec92ac5eb587e9d8f84c245792e450b5a4856e219aa62777c215570307456d87365a897c msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=0466462e068b7a45a52f923a3ff92045c003d75c0abfb5fef22e50930cdf0b msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=b1e2d80773770ecd305c15a6eb937794aacc757668d6a35c0b6b757c3661d9 handshake=Noise_XNpsk2_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254ab4c7101ed3993f615d302da475cd0a6b0e5c40bf650a8570877 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c0aa4588158d1d69aacd8a86346e8a06ae02b5364f1564f3c056 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=8c4f737e9523fc333fd7790a0da924aa5e9102815e6e58470ebfcb225505442f6da9381647d31eb43af101b61460abefeabc32362bb438fa2719426f5763a62850870e17dabdd9d6efa5 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=36b805eb8ae644d22dcd34bded50eb1d9ef8492011dfa55686877643444bf7 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=a623e85f1faa8a611b90e0267b9849cd137835c068773781c6020f6c29760e handshake=Noise_XNpsk3_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254f9c15e88f3b35e1fb6eeb3f05c99e382cdc86df79a4fa2da66c4 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466dccf8bea81d714321751aafc0f0c02a7ba7ee4cca458c4ddd539 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=f9de295774dd85031fbfc643d31a9b8d22ad1c59c8c692f8fc24131ca25245d5c8d46971e69149e03da88ddf49bee3175d79d90ea348d9a29e20f6290a1735c098a32f1be67db24cf40b msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=94d5355cbc643ba0617f5cb48d4dbc0bdd474526acea6a03788ffd875ed37c msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=d1ad326bfcc585060bd2b228a417401e532ebc5379b65d120a4c490131b02a handshake=Noise_IN_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548f40c5adb68f25624ae5b214ea767a6ec94d829d3d7b5e1ad1ba6f3e2138285f msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c841939357934ea06e78f5e8e698684d msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=2bd30250706a1499562e15fa575c2a5fa7a3c0629af62e55b05201f5ee9a88 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=8d24c99e0e9d13c7a8ea87e782a85620a2d9cfffdb51fcbfbb9f47bedb1d7a handshake=Noise_INpsk0_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254e6392475570fd5848881a9e38debf0e3ef40f0f089c76a43dadf1559adb12f96c20d7b69e8333944ccf04538f378771335ff7c6937772e71fee4cbdd504774cc msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466f612bd5240c0b09912b38443ae23b80a msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=8ee45a004c4c4dea075b1b53c6336c68b12499a8014ec4d159edb4d8d2d61b msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=c0ac2d8afe9d104aa19e725b419512b446d379380b524430ad69251033b740 handshake=Noise_INpsk1_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625412d935cd6b08a35c8ac9d91c82849b1318050ce5ccaeb3ff03a74fc657a862f0e9e1fcc385f2dd4e16efd6f9122f15e8d094df35f7d9fa9bbae5bb7737a4537b msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466d973603676b783cc27f40ddc2248b573 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=ebdd5b2ca6c67d29b7d2a99fc6f852211df419b41ac7aa73b6afed124aefe8 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=40560f67839ab4d6af1857af31b623678ff4247bfd4fe52c298519e4b37748 handshake=Noise_INpsk2_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625487f7d8fbdfe8f1b1391dda5c06ec57e068ee0de9e260a3b48444e0ec45ba243ba02332c9e0e6c9faa1c008ebffde52607c9d8d921ca2f9e8bef5846584dd0d27 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846656d415e8c837b3c9793297af04684d7d msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=aae275159d2a9c8f77e94377242515e9c6faa83a1479dbcb7881dbd29f0fb2 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=4d567ed8546efc8c4efd024eb3ff7a80a2e7a3c2cb15be8d00269e7dfb0e6c handshake=Noise_IN_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548f40c5adb68f25624ae5b214ea767a6ec94d829d3d7b5e1ad1ba6f3e2138285f746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466e06c1cbe16f8d6eb194e341725b655563795ebd72a92f673016a msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=2bd30250706a1499562e15fa575c2a5fa7a3c0629af62e55b05201f5ee9a88 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=8d24c99e0e9d13c7a8ea87e782a85620a2d9cfffdb51fcbfbb9f47bedb1d7a handshake=Noise_INpsk0_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254e6392475570fd5848881a9e38debf0e3ef40f0f089c76a43dadf1559adb12f96c20d7b69e8333944ccf04538f3787713a3f341409341bc2633a44d0d0cffc67cb924c5f817986201f89f msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846697a1574e379eb22d4ed6c9bb37a249152f86f772c0b6b0405714 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=8ee45a004c4c4dea075b1b53c6336c68b12499a8014ec4d159edb4d8d2d61b msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=c0ac2d8afe9d104aa19e725b419512b446d379380b524430ad69251033b740 handshake=Noise_INpsk1_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625412d935cd6b08a35c8ac9d91c82849b1318050ce5ccaeb3ff03a74fc657a862f0e9e1fcc385f2dd4e16efd6f9122f15e8dc20bd3b6d2a59bacce24fe77d836c67f156db32f914abf48a6c msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466480c53c0cd421691e09cf8c71845481d77f82da21ab4404e01cd msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=ebdd5b2ca6c67d29b7d2a99fc6f852211df419b41ac7aa73b6afed124aefe8 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=40560f67839ab4d6af1857af31b623678ff4247bfd4fe52c298519e4b37748 handshake=Noise_INpsk2_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625487f7d8fbdfe8f1b1391dda5c06ec57e068ee0de9e260a3b48444e0ec45ba243ba02332c9e0e6c9faa1c008ebffde52601555b3462a986b29bd0d0aca61ce824686b5ee49ec4a48ca8e7f msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484661f6cfea732227f439b5149a4d581b9ecd78c6c61b944aad00f7b msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=aae275159d2a9c8f77e94377242515e9c6faa83a1479dbcb7881dbd29f0fb2 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=4d567ed8546efc8c4efd024eb3ff7a80a2e7a3c2cb15be8d00269e7dfb0e6c handshake=Noise_IN_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548f40c5adb68f25624ae5b214ea767a6ec94d829d3d7b5e1ad1ba6f3e2138285f msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846699119bc615749ecd1e6e7d1ac6d1977c msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=2bd30250706a1499562e15fa575c2a5fa7a3c0629af62e55b05201f5ee9a88 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=8d24c99e0e9d13c7a8ea87e782a85620a2d9cfffdb51fcbfbb9f47bedb1d7a handshake=Noise_INpsk0_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254e6392475570fd5848881a9e38debf0e3ef40f0f089c76a43dadf1559adb12f963da30abf52e7bfc3b55a0209fcc0f7a175871e2e30e8450989365002aca269b2 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484662b230f643036ec899a5a4f68d9d7044e msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=8ee45a004c4c4dea075b1b53c6336c68b12499a8014ec4d159edb4d8d2d61b msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=c0ac2d8afe9d104aa19e725b419512b446d379380b524430ad69251033b740 handshake=Noise_INpsk1_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625412d935cd6b08a35c8ac9d91c82849b1318050ce5ccaeb3ff03a74fc657a862f07ab83b4c64b03c9e2033777cbb1312bbcdfbbe5ff2fdaf57ef374eff49d47fc6 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466cfc8f480e99a7c4c2ca19519a93b555e msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=ebdd5b2ca6c67d29b7d2a99fc6f852211df419b41ac7aa73b6afed124aefe8 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=40560f67839ab4d6af1857af31b623678ff4247bfd4fe52c298519e4b37748 handshake=Noise_INpsk2_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625487f7d8fbdfe8f1b1391dda5c06ec57e068ee0de9e260a3b48444e0ec45ba243b5fca98a7970812685deaf53e7ffb1575eb3f3daecc6f33e17d11d5301ab96b7b msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484665e39de767762c2beb6d96b26e84dbac6 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=aae275159d2a9c8f77e94377242515e9c6faa83a1479dbcb7881dbd29f0fb2 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=4d567ed8546efc8c4efd024eb3ff7a80a2e7a3c2cb15be8d00269e7dfb0e6c handshake=Noise_IN_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548f40c5adb68f25624ae5b214ea767a6ec94d829d3d7b5e1ad1ba6f3e2138285f746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466e06c1cbe16f8d6eb194ee5323d1b620bf0b6767e08d8027ee9e7 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=2bd30250706a1499562e15fa575c2a5fa7a3c0629af62e55b05201f5ee9a88 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=8d24c99e0e9d13c7a8ea87e782a85620a2d9cfffdb51fcbfbb9f47bedb1d7a handshake=Noise_INpsk0_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254e6392475570fd5848881a9e38debf0e3ef40f0f089c76a43dadf1559adb12f963da30abf52e7bfc3b55a0209fcc0f7a1a3f341409341bc2633a483e8bf7bea8307e6dc21c16519a91cbd msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846697a1574e379eb22d4ed66f506c2ec0fe5994eea0f25cced08528 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=8ee45a004c4c4dea075b1b53c6336c68b12499a8014ec4d159edb4d8d2d61b msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=c0ac2d8afe9d104aa19e725b419512b446d379380b524430ad69251033b740 handshake=Noise_INpsk1_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625412d935cd6b08a35c8ac9d91c82849b1318050ce5ccaeb3ff03a74fc657a862f07ab83b4c64b03c9e2033777cbb1312bbdc20bd3b6d2a59bacce207c6e3a1f515317eb137612cb3d35409 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466480c53c0cd421691e09cc75414f28abdc13ecc8b13cc73692825 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=ebdd5b2ca6c67d29b7d2a99fc6f852211df419b41ac7aa73b6afed124aefe8 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=40560f67839ab4d6af1857af31b623678ff4247bfd4fe52c298519e4b37748 handshake=Noise_INpsk2_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625487f7d8fbdfe8f1b1391dda5c06ec57e068ee0de9e260a3b48444e0ec45ba243b5fca98a7970812685deaf53e7ffb15751555b3462a986b29bd0d93839bd9528630f52982f870bfd48f38 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484661f6cfea732227f439b51131d5eeb7da02a5d2293f0ecd9d4183a msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=aae275159d2a9c8f77e94377242515e9c6faa83a1479dbcb7881dbd29f0fb2 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=4d567ed8546efc8c4efd024eb3ff7a80a2e7a3c2cb15be8d00269e7dfb0e6c handshake=Noise_XK_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662549963aa4003cb0f60f51f7f8b1c0e6a9c msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846630166c893dafe95f71d102a8ac640a52 msg_2_payload= msg_2_ciphertext=24a819b832ab7a11dd1464c2baf72f2c49e0665757911662ab11495a5fd4437e0abe01f5c07176e776e02716c4cb98a005ec4c884c4dc7500d2d9b99e9670ab3 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=e8b0f2fc220f7edc287a91ba45c76f6da1327405789dc61e31a649f57d6d93 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=ed6901a7cd973e880242b047fc86da03b498e8ed8e9838d6f3d107420dfcd9 handshake=Noise_XKpsk0_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662542bd753046e7314ec3133494e382b7a24 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466b2ea43a59356b0531b01cd1572eb7dda msg_2_payload= msg_2_ciphertext=2d53813722d086e90ea67567c62e7363b8ac9207c580da580ef863a83ff27bcc7ad8b275fc0893de2d6b29ac0abce0a944491d09b7da32b734090a98c2c6845d msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=84ae2612b7e30a08826858696ffe58b04409582f7f61a9fd89b8da7436540d msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=1909701a9f7ef6101bd2399cbdb58ce6a2fe375265d1b31599480046a21c40 handshake=Noise_XKpsk1_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254b29b3029f6d95e9dd623a64fdf0ffaf0 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484662671dcf4fe27e8fd1c025e45e28d31c1 msg_2_payload= msg_2_ciphertext=b9cbb82dfbae55029e5f8fde96d8295f8e132adaf171665e7e1e2ae82598eeb3cf1a6d2a1e4f9b60273187384d328fe084441b93fdfff3c58e76947db2e3293b msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=66909973ba7571691166adc1cba72feaf1870d0fe1a71372421114b227bafb msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=a6113e6302cfedcdc0439a2606a06d1a6f0053306d188a8d0aee1a630a5e15 handshake=Noise_XKpsk2_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662542720ac573d81470b7a09238c46ff7bb7 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c760c8dd0d16469689650665b8a1f189 msg_2_payload= msg_2_ciphertext=efe0329519660a84a2a418b869683458a06342db2cd97684000854900aa0274f5529a3d47b81a76d31e483f431b8bffd2c592e06ee566085a6cca7b48a904e74 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=b9bad622368e64fbacab57ce79a664941d75ff62778de9757ca00f96ac58af msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=5d8a8111907d497e9905d883cfca75175f6bc39d0ae332fd3bdd6031d569cd handshake=Noise_XKpsk3_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254e29da5e10212297d03bea07586a8960e msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484660a6c9b67beafadf4560b3ef5e8024902 msg_2_payload= msg_2_ciphertext=7e44891d25df444c83119a57b2d12d38ba30c73ae1b3894959bde4a3beddeabd73ad111c22c79bf0b7f5bf854d220e6cae35a1fa0b46e3244bedec61067b3ea0 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=784797cf5ced552a14a2bce97597b2b65d3508f7aeca0bf669b54ffd1b6d71 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=e5d7034b907fdced33489bb43015d216dad917aea17d4c410e24e5e6c0f24f handshake=Noise_XK_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662540c4e6c2fa1de96ff5794a3f905720f0fa07aa85019d1138cfb87 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466e3186922b93e29c4a8f4d1c4e448467cbed9a9a4dd2ec38c1ab4 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=24a819b832ab7a11dd1464c2baf72f2c49e0665757911662ab11495a5fd4437e2a7ab6eac00781f1afcc98a4a72d60deed954c511b2929288a7115b740e75dd4c4eb940229b3abb9dae6 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=e8b0f2fc220f7edc287a91ba45c76f6da1327405789dc61e31a649f57d6d93 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=ed6901a7cd973e880242b047fc86da03b498e8ed8e9838d6f3d107420dfcd9 handshake=Noise_XKpsk0_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254f642fb7c3aae91f49563f6ac1b84370b1c71b22b294ab8fbc0e3 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466744cd29d79ec8af7a4cfe521cfe0f2b373b489b428532ebc08f0 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=2d53813722d086e90ea67567c62e7363b8ac9207c580da580ef863a83ff27bcc1af9bbcbafee583d2692f2dfe82545cd693b7e89832715ec64be608745e0e529c0d90c60e037991dddd4 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=84ae2612b7e30a08826858696ffe58b04409582f7f61a9fd89b8da7436540d msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=1909701a9f7ef6101bd2399cbdb58ce6a2fe375265d1b31599480046a21c40 handshake=Noise_XKpsk1_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541d470c86e081f6c44d8b73ba2be130caf21500fe997f61f5d5ad msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846641d7543c89c33909dac24b427d715fc5b85633f07b6e1148b976 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=b9cbb82dfbae55029e5f8fde96d8295f8e132adaf171665e7e1e2ae82598eeb32e9e7173605c5adb7581f57cfa5d89d24d2d7e8c228739a46f3fa0fe6261c0ee83b9d083fa913f88221a msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=66909973ba7571691166adc1cba72feaf1870d0fe1a71372421114b227bafb msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=a6113e6302cfedcdc0439a2606a06d1a6f0053306d188a8d0aee1a630a5e15 handshake=Noise_XKpsk2_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662545be852e934eda94d7e61eaf39ea402c8db0c77433a9251cb654f msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466aa809bd7a0a842c28f35d10bc7cdfb061053952aaf8482c57e60 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=efe0329519660a84a2a418b869683458a06342db2cd97684000854900aa0274f907ff4a42648255711c7be088ad03d8c09f5ccd0fd217383120ea6a650101e5b09e4478d40bc614c6ad3 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=b9bad622368e64fbacab57ce79a664941d75ff62778de9757ca00f96ac58af msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=5d8a8111907d497e9905d883cfca75175f6bc39d0ae332fd3bdd6031d569cd handshake=Noise_XKpsk3_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254313d1c2a3e4aaebf8a13d13077b5d6aa7fd8cd93ada82e139ce9 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484663c387e2bc40b834219ff11f5ff429d83c9e01741eaa4435fe3eb msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=7e44891d25df444c83119a57b2d12d38ba30c73ae1b3894959bde4a3beddeabd12aad42cd41d78dae898b163db19600f28c4e2910f865045f0341124d69b9f5b0cd2d2518ef701ce559d msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=784797cf5ced552a14a2bce97597b2b65d3508f7aeca0bf669b54ffd1b6d71 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=e5d7034b907fdced33489bb43015d216dad917aea17d4c410e24e5e6c0f24f handshake=Noise_XK_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548d6383ab07befc895d34bfab2c20bb25 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484667607d670be43da5c6ecbd567171a0113 msg_2_payload= msg_2_ciphertext=24a819b832ab7a11dd1464c2baf72f2c49e0665757911662ab11495a5fd4437e79e34779a2989c930f3b98e0fbc5dc1f059efd8983ccf4319dcdc99374e5d193 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=e8b0f2fc220f7edc287a91ba45c76f6da1327405789dc61e31a649f57d6d93 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=ed6901a7cd973e880242b047fc86da03b498e8ed8e9838d6f3d107420dfcd9 handshake=Noise_XKpsk0_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662546b813fb56423cef52924214450ca79a0 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466d81b686856f42a493326b1407010180e msg_2_payload= msg_2_ciphertext=2d53813722d086e90ea67567c62e7363b8ac9207c580da580ef863a83ff27bcc5a15b5094d3448614cf0e63d2dda3be9d3ba315f1f1a805c414db06ffe663fbd msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=84ae2612b7e30a08826858696ffe58b04409582f7f61a9fd89b8da7436540d msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=1909701a9f7ef6101bd2399cbdb58ce6a2fe375265d1b31599480046a21c40 handshake=Noise_XKpsk1_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254b32bc1b6ebb0501ed71168bbdeeb9318 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c2e9c14cbb5200d147b6c8f489c05c42 msg_2_payload= msg_2_ciphertext=b9cbb82dfbae55029e5f8fde96d8295f8e132adaf171665e7e1e2ae82598eeb3c51ae537252a89cb6ceb1ecf331c89b3190c3517e90bff4ada05101678e8679d msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=66909973ba7571691166adc1cba72feaf1870d0fe1a71372421114b227bafb msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=a6113e6302cfedcdc0439a2606a06d1a6f0053306d188a8d0aee1a630a5e15 handshake=Noise_XKpsk2_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c75ef7d4eb006f9a21368b1260f350c9 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466539edf21f03d684bfc564ebd12168bc1 msg_2_payload= msg_2_ciphertext=efe0329519660a84a2a418b869683458a06342db2cd97684000854900aa0274f593132dee4feea416b20df934a782f8de96321e62cc97693d5bf3521c64717a4 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=b9bad622368e64fbacab57ce79a664941d75ff62778de9757ca00f96ac58af msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=5d8a8111907d497e9905d883cfca75175f6bc39d0ae332fd3bdd6031d569cd handshake=Noise_XKpsk3_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254957d3b5c945018bb3bfe5ed1350eadcb msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846664a86c797bdd9e60c061831340fa2afe msg_2_payload= msg_2_ciphertext=7e44891d25df444c83119a57b2d12d38ba30c73ae1b3894959bde4a3beddeabd0e05d74b64b68f9da9e4751f6eabac15bfc46a0e4909b3a90f6033848e316060 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=784797cf5ced552a14a2bce97597b2b65d3508f7aeca0bf669b54ffd1b6d71 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=e5d7034b907fdced33489bb43015d216dad917aea17d4c410e24e5e6c0f24f handshake=Noise_XK_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662540c4e6c2fa1de96ff57949c01e13796236098242159a3226d7efc msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466e3186922b93e29c4a8f481bf540b7b9425152ed77d3ac32b6d5f msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=24a819b832ab7a11dd1464c2baf72f2c49e0665757911662ab11495a5fd4437e0fe2fb0506b390ab1e1527e2765e53dbed954c511b2929288a71525a716ce72aa94bca5bb136a6e3f02a msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=e8b0f2fc220f7edc287a91ba45c76f6da1327405789dc61e31a649f57d6d93 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=ed6901a7cd973e880242b047fc86da03b498e8ed8e9838d6f3d107420dfcd9 handshake=Noise_XKpsk0_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254f642fb7c3aae91f49563f25c1b81e11ff9e6d6baaa12f93db4e8 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466744cd29d79ec8af7a4cf81de742a83ee52d471a819e16e3d4a6d msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=2d53813722d086e90ea67567c62e7363b8ac9207c580da580ef863a83ff27bcc4568150efc37962fd4465366a61ebe29693b7e89832715ec64be7037e15af89fa2d1a1b6b34ff222e70f msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=84ae2612b7e30a08826858696ffe58b04409582f7f61a9fd89b8da7436540d msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=1909701a9f7ef6101bd2399cbdb58ce6a2fe375265d1b31599480046a21c40 handshake=Noise_XKpsk1_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541d470c86e081f6c44d8b89b84f8d57dae2408286970cef550461 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846641d7543c89c33909dac270471bfdfb14c212b05e9e1d89108c3c msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=b9cbb82dfbae55029e5f8fde96d8295f8e132adaf171665e7e1e2ae82598eeb3320cd9243495f571dc2b26a545c13efe4d2d7e8c228739a46f3fce27869ab41e1a1f674f9554ec4fc8be msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=66909973ba7571691166adc1cba72feaf1870d0fe1a71372421114b227bafb msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=a6113e6302cfedcdc0439a2606a06d1a6f0053306d188a8d0aee1a630a5e15 handshake=Noise_XKpsk2_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662545be852e934eda94d7e61afc8c49437cb522881b7b27897ae8443 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466aa809bd7a0a842c28f350858fa12e20248091009ca7e2a5e1470 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=efe0329519660a84a2a418b869683458a06342db2cd97684000854900aa0274f701af0cafe1731d286886a8b99ef51ff09f5ccd0fd217383120e173a10693d93478e668e1f4db49fc09e msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=b9bad622368e64fbacab57ce79a664941d75ff62778de9757ca00f96ac58af msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=5d8a8111907d497e9905d883cfca75175f6bc39d0ae332fd3bdd6031d569cd handshake=Noise_XKpsk3_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254313d1c2a3e4aaebf8a13761a0eaa2344e96fa3cf99b0f43756f7 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484663c387e2bc40b834219ff7fd28443b5731f8122fee058af7270bd msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=7e44891d25df444c83119a57b2d12d38ba30c73ae1b3894959bde4a3beddeabd5d5617889062645c78eeb9ba04f1a58828c4e2910f865045f03473dcfec07ba5a485641d0cb0c8986388 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=784797cf5ced552a14a2bce97597b2b65d3508f7aeca0bf669b54ffd1b6d71 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=e5d7034b907fdced33489bb43015d216dad917aea17d4c410e24e5e6c0f24f handshake=Noise_IK_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662544f8445e5dc2467b1e32653192d05dee85c4781bf0dd8d33ceebb5905a7a069f09e0d3f2cad1c842930a762eb75e52827f01d2c85189d527644b3221b4c3fc5cc msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466aabfe2e5b1650bbaa88e33679893fc77 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=226ca869f2777611f37350a7ab446f650c0cfe2855b7f020ce658bcf100f2d msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=90d84d69cd44829283b05d684879b53b8d714e51619b601438a1ae67caacd9 handshake=Noise_IKpsk0_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662542723c3e2684abdc13656c8196a8dbd704eae2b5029b57d6f1387e1cf81cf8d968b42ff98eb66e9325f8a9bdf8f16f340c2cdae84d473830429e7d3e4b6731149 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846665a7ee5c74f123200a6d63a482c11412 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=fd57c203d5a1b8ae62c297614b5d71668c52ab4e70c1cbbc52c0538a069ccd msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=4cca33eb83505243974e576cbd818c98d3b346ff5c3374fac028ff153a4e9b handshake=Noise_IKpsk1_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254b4a9c4176c417784b1ee28a0f323750682da959b44f9d8e06a07f757567492fa9c485c377303672a2809b5a5bb0f90133dfe4b427300d7bb2519877180db9826 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466bd7e6a1364b08460dccf8961a117a93a msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=4492510a2b642757ad4089fda1333476635f5e8d984d8de917325a480380c8 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=1e263d17ead44ed55677c2a12b11a3c9b625d3aa9f128b279cd5e281d5a8d9 handshake=Noise_IKpsk2_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662545bdb2d5031ac09dcb167ccedf2898899c56e3e963e1e707a4df1bed7f3f9594b80af8aa87faa8e0f7b1b9c32a49360cd3dbf48c162520192f875fbe743e38cea msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484662a35d5a9542bd4d8d2f2f4f1784e9ba5 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=abbc8826715c00752948d22874560b57dc102dbf6c3dd853037efdd9499ad0 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=f80bad7ea7c64490f8123d2728a176c3afb97a59f197c7b1be246b7cd3eb1d handshake=Noise_IK_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662544f8445e5dc2467b1e32653192d05dee85c4781bf0dd8d33ceebb5905a7a069f09e0d3f2cad1c842930a762eb75e528270337527f958f92050deefa1892482d74328fee90d08201bba3cc msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466cb4a35db52355821787bb891112ba10f4d3dfe08b27d634db8af msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=226ca869f2777611f37350a7ab446f650c0cfe2855b7f020ce658bcf100f2d msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=90d84d69cd44829283b05d684879b53b8d714e51619b601438a1ae67caacd9 handshake=Noise_IKpsk0_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662542723c3e2684abdc13656c8196a8dbd704eae2b5029b57d6f1387e1cf81cf8d968b42ff98eb66e9325f8a9bdf8f16f3406cad606d45c38082aaf0636e8e77d36ee0b14bbd18c11b0fc688 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466a3cacf615ab82f05d73a4699120208b2e421656f8dcba114854e msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=fd57c203d5a1b8ae62c297614b5d71668c52ab4e70c1cbbc52c0538a069ccd msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=4cca33eb83505243974e576cbd818c98d3b346ff5c3374fac028ff153a4e9b handshake=Noise_IKpsk1_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254b4a9c4176c417784b1ee28a0f323750682da959b44f9d8e06a07f757567492fa9c485c377303672a2809b5a5bb0f9013363eebbdb99964a60f81048f750a3e578d215067a83d2699d584 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466e07ee913ea981e364239c3d829a9b1851d249f6fcd440f660431 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=4492510a2b642757ad4089fda1333476635f5e8d984d8de917325a480380c8 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=1e263d17ead44ed55677c2a12b11a3c9b625d3aa9f128b279cd5e281d5a8d9 handshake=Noise_IKpsk2_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662545bdb2d5031ac09dcb167ccedf2898899c56e3e963e1e707a4df1bed7f3f9594b80af8aa87faa8e0f7b1b9c32a49360cdd218fc428fc8457cdf1952ae4c8d5ba601f8bf9547bc4e3b5083 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466b86d10d43f68d1d0667499f113d9a91c468559a52225e8f34d8c msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=abbc8826715c00752948d22874560b57dc102dbf6c3dd853037efdd9499ad0 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=f80bad7ea7c64490f8123d2728a176c3afb97a59f197c7b1be246b7cd3eb1d handshake=Noise_IK_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662544f8445e5dc2467b1e32653192d05dee85c4781bf0dd8d33ceebb5905a7a069f0d6bc97dbce6f8f0ee33d49311a72d0f8c4ef8ef3bc70ccb18fd61ad67dde7eda msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466787857f66c036e974ef9d6335d2ccc5f msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=226ca869f2777611f37350a7ab446f650c0cfe2855b7f020ce658bcf100f2d msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=90d84d69cd44829283b05d684879b53b8d714e51619b601438a1ae67caacd9 handshake=Noise_IKpsk0_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662542723c3e2684abdc13656c8196a8dbd704eae2b5029b57d6f1387e1cf81cf8d96ae04ae107f5c4eac43b568cb7ee3bb0702cf064b9c887261c27b217dec189ba5 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466a5746ea5e335f63000f8f28190f79185 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=fd57c203d5a1b8ae62c297614b5d71668c52ab4e70c1cbbc52c0538a069ccd msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=4cca33eb83505243974e576cbd818c98d3b346ff5c3374fac028ff153a4e9b handshake=Noise_IKpsk1_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254b4a9c4176c417784b1ee28a0f323750682da959b44f9d8e06a07f757567492fa875cb562717ab59a6cc44f6b90abbc692e57a72d368bbac4c15f2b26390fca38 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484660a90cdf82790ca5709564a1a8ec6bd28 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=4492510a2b642757ad4089fda1333476635f5e8d984d8de917325a480380c8 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=1e263d17ead44ed55677c2a12b11a3c9b625d3aa9f128b279cd5e281d5a8d9 handshake=Noise_IKpsk2_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662545bdb2d5031ac09dcb167ccedf2898899c56e3e963e1e707a4df1bed7f3f9594b873a288972e606ec27a89d7805c31c4ce0ff7bf1ff67795d842e014a3c8ee6f7 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466bb0445e37867bb67c516312c2a21c06f msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=abbc8826715c00752948d22874560b57dc102dbf6c3dd853037efdd9499ad0 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=f80bad7ea7c64490f8123d2728a176c3afb97a59f197c7b1be246b7cd3eb1d handshake=Noise_IK_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662544f8445e5dc2467b1e32653192d05dee85c4781bf0dd8d33ceebb5905a7a069f0d6bc97dbce6f8f0ee33d49311a72d0f80337527f958f92050deee33c19777fa17306346367055751bb3f msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466cb4a35db52355821787bb67f33957e7809370c44d33538ad5a42 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=226ca869f2777611f37350a7ab446f650c0cfe2855b7f020ce658bcf100f2d msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=90d84d69cd44829283b05d684879b53b8d714e51619b601438a1ae67caacd9 handshake=Noise_IKpsk0_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662542723c3e2684abdc13656c8196a8dbd704eae2b5029b57d6f1387e1cf81cf8d96ae04ae107f5c4eac43b568cb7ee3bb076cad606d45c38082aaf08ff5dab57e5a624f16bf3630c2c5f104 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466a3cacf615ab82f05d73a50c3841ebf6bba91d1631bb4a33552e6 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=fd57c203d5a1b8ae62c297614b5d71668c52ab4e70c1cbbc52c0538a069ccd msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=4cca33eb83505243974e576cbd818c98d3b346ff5c3374fac028ff153a4e9b handshake=Noise_IKpsk1_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254b4a9c4176c417784b1ee28a0f323750682da959b44f9d8e06a07f757567492fa875cb562717ab59a6cc44f6b90abbc69363eebbdb99964a60f81d1bdca6741998d3df66cc4c3f7a20991 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466e07ee913ea981e364239b86129146a0dcf47f65877606625369d msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=4492510a2b642757ad4089fda1333476635f5e8d984d8de917325a480380c8 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=1e263d17ead44ed55677c2a12b11a3c9b625d3aa9f128b279cd5e281d5a8d9 handshake=Noise_IKpsk2_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662545bdb2d5031ac09dcb167ccedf2898899c56e3e963e1e707a4df1bed7f3f9594b873a288972e606ec27a89d7805c31c4cd218fc428fc8457cdf1976bed363286c0e199a5df2a8dc631f33 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466b86d10d43f68d1d06674b4ceee887769c53e3b7a239e76287e1f msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=abbc8826715c00752948d22874560b57dc102dbf6c3dd853037efdd9499ad0 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=f80bad7ea7c64490f8123d2728a176c3afb97a59f197c7b1be246b7cd3eb1d handshake=Noise_XX_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484663414af878d3e46a2f58911a816d6e8346d4ea17a6f2a0bb4ef4ed56c133cff4560a34e36ea82109f26cf2e5a5caf992b608d55c747f615e5a3425a7a19eefb8f msg_2_payload= msg_2_ciphertext=87f864c11ba449f46a0a4f4e2eacbb7b0457784f4fca1937f572c93603e9c4d97e5ea11b16f3968710b23a3be3202dc1b5e1ce3c963347491e74f5c0768a9b42 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=a52ef02ba60e12696d1d6b9ef4245c88fca757b6134ad6e76b56e310a6adf6 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=2445aa438ebd649281c636cc7269ca82f1d9023d72520943aeabf909cdf521 handshake=Noise_XXpsk0_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254555f63b2499511e3b299a5649351a5b7 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846622df46c0ac1e0fc71795a84e37cc0e963d131c8e84c02cd5cfcfe8def3fe128b324ab54fd3be59ac143dfdc68996211170078c960e051d6ed971da20bde0fcf1 msg_2_payload= msg_2_ciphertext=462127adbe047db3d1fce0581b5447d99b606c591545a7719132e0c91fe93d123be3fe89ffd8af56e02cefda863080ecee5651dcecddde76b8237c66740d7c8f msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=75fff8afebd2f14da1cac9cc5b5201395cdf2ad65f3a97804e360c16f4e2ac msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=150cc85f79f9ca0f0730b8b4707805ed1969ff6b2770a5d466cd2754802805 handshake=Noise_XXpsk1_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662549f27cade2b6f2db14f582e49cfbfc068 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484667f0f30704cd806d42849595f4e39d8ace7b1f7ab9c62c9ccaf7284b3d8ce0d88286de6a5c75efd3ada339fd7ba335dee5fe0151a61f7decdabe8fab42d807358 msg_2_payload= msg_2_ciphertext=3709db3d2b87c711bdd3ef87e62edd8a2775482a4421a58fb5eeb106861e98d24c021634f68b6fa8a9c2f48161e190714c2a2d90a55d2dc32f33fcbaf5afc67c msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=61eaa2290029bcde241e90efb965beeb7837ec5441928800275670fdb058de msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=ee55ef942191e45cf5bcea014c4a0c71f0780ff6095ff93f467e7a746e264c handshake=Noise_XXpsk2_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625462f2d89ffb750657573d23edc7c79728 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c9996f0e38eded0281a0f505a4f2473b114924724e374c408b3ba103abc7ffbf72bf9b5f5f37f1a8ee33e4708c1f35d54d93fc2a553004be11b9a6ad56d03f30 msg_2_payload= msg_2_ciphertext=4744625f46dfce9240a5b1927393fd862a2520366f4df66de4b75019d201de92f3bd1d11aef54b65374c268c0ec19d34ec1fff795f07ef7065932e5983ee2e84 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=70847317d915af289e3ff17e5d66e4b4b0020d1bd997b8bb17cfa15710db0b msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=ad071b14d700e2789c1251f57e3b1e455e3f3be012d7ab6abce986b536ba21 handshake=Noise_XXpsk3_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254648d756cb03de7ad06e87f9a577c00de msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846696a7a5454cc70bb4eec2a2f7c616c143564ff1ae149458f9e70afb3498be7a88c9feda8ece3bb7d846bd57a37fc9cf362b7d090998d862bd82fcf9a19cf154e1 msg_2_payload= msg_2_ciphertext=f5b6224ea13577089dc14b20ca8e90d0cedede4faff50348d4d0a0f941182ad787d1e72132665f8402f660af90e07e671606bb5a4931d244dfa6590809fac237 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=5e80fec73b32f6ff466aa5addbc2b16e2cf062f09c36796ecb2efcc35cac99 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=df3c8983cb9f286df65e57d0010dc65eeca3bca44b6b240da8ebf92be581cd handshake=Noise_XX_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484663414af878d3e46a2f58911a816d6e8346d4ea17a6f2a0bb4ef4ed56c133cff4572e7a2ba5123ac30618b3d205f5c2d17f50cbca216483ac56bcc78e33bf520303278db641e5e731b2e3a msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=87f864c11ba449f46a0a4f4e2eacbb7b0457784f4fca1937f572c93603e9c4d9f27e318e43ba630594c4d08eeb3b36d97c7377a2f4f9144b2f0c8095ad92140505b2ab53eff244b14138 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=a52ef02ba60e12696d1d6b9ef4245c88fca757b6134ad6e76b56e310a6adf6 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=2445aa438ebd649281c636cc7269ca82f1d9023d72520943aeabf909cdf521 handshake=Noise_XXpsk0_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662547f533cf20723ac4407c8e51516d7c7382d8aa777424dba78813d msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846622df46c0ac1e0fc71795a84e37cc0e963d131c8e84c02cd5cfcfe8def3fe128b1146c1820dc4d08bf16b5c682badf2ef2dc6c1642ae7e8ae8c8e1e38a06064341a604c21b70227181c04 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=462127adbe047db3d1fce0581b5447d99b606c591545a7719132e0c91fe93d122132c2cde2bc69209884f77756f265744111b0bfa4fdeb4704a42c7f8750279908327b545416cf81f828 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=75fff8afebd2f14da1cac9cc5b5201395cdf2ad65f3a97804e360c16f4e2ac msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=150cc85f79f9ca0f0730b8b4707805ed1969ff6b2770a5d466cd2754802805 handshake=Noise_XXpsk1_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625409f815b8eb0dbb46e73f8ce514a7791c712e94ffe307fd7bdd4a msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484667f0f30704cd806d42849595f4e39d8ace7b1f7ab9c62c9ccaf7284b3d8ce0d88a5374047a547b592a9391e74bfd6c960d6a978c9e0cba95a40c5c091ef030556a3b10bd4c6c77fd99d75 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=3709db3d2b87c711bdd3ef87e62edd8a2775482a4421a58fb5eeb106861e98d238c8b1696e695be5da9242acf392b5f4bc587962ef21463d1a0691f4042790868d59492e1d9e75a7787e msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=61eaa2290029bcde241e90efb965beeb7837ec5441928800275670fdb058de msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=ee55ef942191e45cf5bcea014c4a0c71f0780ff6095ff93f467e7a746e264c handshake=Noise_XXpsk2_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662544968e874077ca381c1f03927174d090dc0c513b1eae87abbd728 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c9996f0e38eded0281a0f505a4f2473b114924724e374c408b3ba103abc7ffbf8b7a8d7dff4aabdae96b83924c164accf0e6d093aa11303cacf7f18b3898ffa9cf9491aa2cd3174edfca msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=4744625f46dfce9240a5b1927393fd862a2520366f4df66de4b75019d201de92d10c61a7bd2f3d460924354137751a0dd24b1336d8119acacd578c7bd6c02cd1d839990b572e4fd78e8a msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=70847317d915af289e3ff17e5d66e4b4b0020d1bd997b8bb17cfa15710db0b msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=ad071b14d700e2789c1251f57e3b1e455e3f3be012d7ab6abce986b536ba21 handshake=Noise_XXpsk3_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254653658a6a90feb6404ce396c157f0cbec50fbaf2015658068d1d msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846696a7a5454cc70bb4eec2a2f7c616c143564ff1ae149458f9e70afb3498be7a885650c9453eb8927a88bd3f8cac964759dde1bfec74551b1f083a60ac9c0c8a1d5e96dedbdc3c38ab235a msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=f5b6224ea13577089dc14b20ca8e90d0cedede4faff50348d4d0a0f941182ad72fbb6b3609cbfa5bc7a578aa8c377e42734c20e3dd6c03cf438ae0fb6d287fa76ca661ba86195afa81c9 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=5e80fec73b32f6ff466aa5addbc2b16e2cf062f09c36796ecb2efcc35cac99 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=df3c8983cb9f286df65e57d0010dc65eeca3bca44b6b240da8ebf92be581cd handshake=Noise_XX_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484663414af878d3e46a2f58911a816d6e8346d4ea17a6f2a0bb4ef4ed56c133cff4588f043d1e49a3289b1beeab8f96b0551a48cddf9f38b1a12e46c6908644198f3 msg_2_payload= msg_2_ciphertext=87f864c11ba449f46a0a4f4e2eacbb7b0457784f4fca1937f572c93603e9c4d95a04fa1f1c41fb3f00d496f242c1e44ce5b749b3d54bf74cea2dad086d601fb6 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=a52ef02ba60e12696d1d6b9ef4245c88fca757b6134ad6e76b56e310a6adf6 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=2445aa438ebd649281c636cc7269ca82f1d9023d72520943aeabf909cdf521 handshake=Noise_XXpsk0_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625454a218352d64c1f8c239416ccb542aec msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846622df46c0ac1e0fc71795a84e37cc0e963d131c8e84c02cd5cfcfe8def3fe128b58733b0ab529b3f48ed3fbe90840f1a27404f52be696831ccb795d1bdee31d33 msg_2_payload= msg_2_ciphertext=462127adbe047db3d1fce0581b5447d99b606c591545a7719132e0c91fe93d12fb91ca67cf72f381bab072bd9e6efef157067416654408489b43ba2fb6173b66 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=75fff8afebd2f14da1cac9cc5b5201395cdf2ad65f3a97804e360c16f4e2ac msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=150cc85f79f9ca0f0730b8b4707805ed1969ff6b2770a5d466cd2754802805 handshake=Noise_XXpsk1_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254441dc6d59be427b50c47033cb28b1c92 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484667f0f30704cd806d42849595f4e39d8ace7b1f7ab9c62c9ccaf7284b3d8ce0d88e1c910791fa4ba183633c2d95c5511f60fe2e339a2e21ec0a6a603fa905d0531 msg_2_payload= msg_2_ciphertext=3709db3d2b87c711bdd3ef87e62edd8a2775482a4421a58fb5eeb106861e98d28aff4797b2780ca5d92c6497403bc2b0f953fee8dc7394a793f853dd11a05bac msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=61eaa2290029bcde241e90efb965beeb7837ec5441928800275670fdb058de msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=ee55ef942191e45cf5bcea014c4a0c71f0780ff6095ff93f467e7a746e264c handshake=Noise_XXpsk2_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254e93da98d3dd0111950d413e23d3e1a83 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c9996f0e38eded0281a0f505a4f2473b114924724e374c408b3ba103abc7ffbfe9dfce15c311b11d4afa7fe50516980d178eca6d8594391837b5aab867168be5 msg_2_payload= msg_2_ciphertext=4744625f46dfce9240a5b1927393fd862a2520366f4df66de4b75019d201de924ab1208d037ee21e2d2f9cfd17678f49bf474350e7da4ef109e569e66507b8b0 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=70847317d915af289e3ff17e5d66e4b4b0020d1bd997b8bb17cfa15710db0b msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=ad071b14d700e2789c1251f57e3b1e455e3f3be012d7ab6abce986b536ba21 handshake=Noise_XXpsk3_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662545e4d090b68903a328013b0fa37a209a1 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846696a7a5454cc70bb4eec2a2f7c616c143564ff1ae149458f9e70afb3498be7a886885719af8aa799a244c80558b556ef67ec5874230e5290454ca35afef8df8d3 msg_2_payload= msg_2_ciphertext=f5b6224ea13577089dc14b20ca8e90d0cedede4faff50348d4d0a0f941182ad72a09d91f8664f8edfd904cb24e0666f9f40168c1c94b381251b6ca43dad53170 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=5e80fec73b32f6ff466aa5addbc2b16e2cf062f09c36796ecb2efcc35cac99 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=df3c8983cb9f286df65e57d0010dc65eeca3bca44b6b240da8ebf92be581cd handshake=Noise_XX_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484663414af878d3e46a2f58911a816d6e8346d4ea17a6f2a0bb4ef4ed56c133cff4545958c588d17d6373e0c1dcfa3755d37f50cbca216483ac56bcc98f5095870aa814ba40c08079c11f087 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=87f864c11ba449f46a0a4f4e2eacbb7b0457784f4fca1937f572c93603e9c4d9c1e9a1a313d02b78871cfd178a521a4c7c7377a2f4f9144b2f0ccedc84d379151b466741e4b266db6023 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=a52ef02ba60e12696d1d6b9ef4245c88fca757b6134ad6e76b56e310a6adf6 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=2445aa438ebd649281c636cc7269ca82f1d9023d72520943aeabf909cdf521 handshake=Noise_XXpsk0_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662547f533cf20723ac4407c87f43dc5dc6f6d1867a322a706af81adb msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846622df46c0ac1e0fc71795a84e37cc0e963d131c8e84c02cd5cfcfe8def3fe128b59d623ffc18ae67b1acba43eb87910b02dc6c1642ae7e8ae8c8e861ed15d8d6b65ff99f73d8286cc9819 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=462127adbe047db3d1fce0581b5447d99b606c591545a7719132e0c91fe93d1294b31017013e8ac0a697b42922a5fe204111b0bfa4fdeb4704a4b5492137b40088f810ee4d1a58882e25 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=75fff8afebd2f14da1cac9cc5b5201395cdf2ad65f3a97804e360c16f4e2ac msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=150cc85f79f9ca0f0730b8b4707805ed1969ff6b2770a5d466cd2754802805 handshake=Noise_XXpsk1_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625409f815b8eb0dbb46e73ff10061ce4f668e7ad525d48d24612e49 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484667f0f30704cd806d42849595f4e39d8ace7b1f7ab9c62c9ccaf7284b3d8ce0d887fbc3e2f5ffd90a03e00af190dfee90ad6a978c9e0cba95a40c5af61409fd89acea9efe61cc3c5626453 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=3709db3d2b87c711bdd3ef87e62edd8a2775482a4421a58fb5eeb106861e98d2840ca8244e6063975c878004aa7ee991bc587962ef21463d1a0615316bea7af1a6b102acfd9bc4e8b07e msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=61eaa2290029bcde241e90efb965beeb7837ec5441928800275670fdb058de msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=ee55ef942191e45cf5bcea014c4a0c71f0780ff6095ff93f467e7a746e264c handshake=Noise_XXpsk2_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662544968e874077ca381c1f0127df29420b859cf36b5383c2d8d986b msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c9996f0e38eded0281a0f505a4f2473b114924724e374c408b3ba103abc7ffbf8bc919f41c651555a9d4d5809975e676f0e6d093aa11303cacf701682c1dadd3666c1e965a3158618a30 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=4744625f46dfce9240a5b1927393fd862a2520366f4df66de4b75019d201de92891230ebf50cc2d52029ad960d7fa613d24b1336d8119acacd5745ce1ba24faa91d6cf7be217ff6799ad msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=70847317d915af289e3ff17e5d66e4b4b0020d1bd997b8bb17cfa15710db0b msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=ad071b14d700e2789c1251f57e3b1e455e3f3be012d7ab6abce986b536ba21 handshake=Noise_XXpsk3_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254653658a6a90feb6404ce2902887f0faf388ff019393d23fd4976 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846696a7a5454cc70bb4eec2a2f7c616c143564ff1ae149458f9e70afb3498be7a886ed5d694d493c5867cb2c232205e46bddde1bfec74551b1f083a86e220331181777ca16a1bad616dff5f msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=f5b6224ea13577089dc14b20ca8e90d0cedede4faff50348d4d0a0f941182ad7e65025d045c6ff1f63a8b63ffe90710e734c20e3dd6c03cf438a6ce9aa9775b05dd5d3b729a9ac78d811 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=5e80fec73b32f6ff466aa5addbc2b16e2cf062f09c36796ecb2efcc35cac99 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=df3c8983cb9f286df65e57d0010dc65eeca3bca44b6b240da8ebf92be581cd handshake=Noise_IX_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548f40c5adb68f25624ae5b214ea767a6ec94d829d3d7b5e1ad1ba6f3e2138285f msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466baeb82eef5d1debeac9be97240e60145fdad9ac337e2baa15d6854385bd82377fcf6c76dd0c35c7f0584b41c85d1755ee1f64c58f0abf28c8fb79b1c0cd572a6 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=ef23146b5edecd2339995fe7f8c597ffa673d06b2671a323d881b1c39f5cef msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=9fb1b190c31c93d2822df95c20f1117eb3f4c2999c51d704e855f30458bfb7 handshake=Noise_IXpsk0_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254a5fcb82f22fdab798026f0ccb9a6b6ce96e3facfeae51b2908db5b849c0c78cc9bda6dc05a548079571ea4f597884520ecaf65860091dada12b09c4fd30ebb0c msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466661e5bec7e323f7e6117cdeef3622006331b5aad001e33c600478db7b40375e92db6dd6a1dcc1e7e3e32d0d959f2ac8d568d7c482043bf965577f51ca516a3ed msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=74de2cd580b07af1ec00ef46206cf8eabb9cd289c10eee2b37e25978fd7748 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=db8795447bbc6d58b7b3d37814c8c351d8dcbeba8e201c2e5f5af7978d1e32 handshake=Noise_IXpsk1_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662545667d83bcfa7dbb6ee159dde3afffea915ce4084462fc02f7f7dc86c2d338a9877fda5a8ccdda8ad14afbfc2708af4a4b210164cc720e7ec1a915daafebc046a msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466f04c5f04c9ae8992c210cb0193a52ae8c081c44f33ab1490df3e3c344eb1457cdf92517e1a679b2db5c4b7c71e3f6ec7452bb6a2cd4d989ac3ca0f1ec97974f4 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=b2590aa4f81a2fbc961d60abede55cc6a4a64a40f7bcd1642f0a31daace3fd msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=82b96b24e3c63563ddab16453506322429609077c4182022c6b9ed126e172a handshake=Noise_IXpsk2_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254a4ef04eabc08e997b45b56825904b887b21cd99b04ad3be0304d7f2f81aac60b41283ee452d1546934cac576e8955322e1252e893e3e959ff36ada8319d66a9c msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466a3ea1d0b422826e11b94b492b338fd5ef4f90d1a91a637e37c10d0ff7df19c2bdd0ced026d6c2a81cd55b68e7ec63f0f8eff1e2c8cc593e2f36ad5b936a2114a msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=c6623366838f79936add41938a2f31cc6703b7e7cebc2ec958f116a45842ae msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=4c84d7d2f82cc2bf54b06aef1e2bf49bec5305d72fb5fd19754a3dce298c74 handshake=Noise_IX_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548f40c5adb68f25624ae5b214ea767a6ec94d829d3d7b5e1ad1ba6f3e2138285f746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466baeb82eef5d1debeac9be97240e60145fdad9ac337e2baa15d6854385bd823772aaa75c6cb27ba27acecd7fc13321c5b9ddfb64a50666d8ca7cbdf3fba5ccc87407789e701a194fb7074 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=ef23146b5edecd2339995fe7f8c597ffa673d06b2671a323d881b1c39f5cef msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=9fb1b190c31c93d2822df95c20f1117eb3f4c2999c51d704e855f30458bfb7 handshake=Noise_IXpsk0_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254a5fcb82f22fdab798026f0ccb9a6b6ce96e3facfeae51b2908db5b849c0c78cc9bda6dc05a548079571ea4f597884520b4de8177eb0303296be6e30ab7d21fecf59931884498725a1dfa msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466661e5bec7e323f7e6117cdeef3622006331b5aad001e33c600478db7b40375e9be6315eee09348312435e12a927633c97ee6317754ea54d27027f3a339474da27661a016ba09d64d389d msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=74de2cd580b07af1ec00ef46206cf8eabb9cd289c10eee2b37e25978fd7748 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=db8795447bbc6d58b7b3d37814c8c351d8dcbeba8e201c2e5f5af7978d1e32 handshake=Noise_IXpsk1_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662545667d83bcfa7dbb6ee159dde3afffea915ce4084462fc02f7f7dc86c2d338a9877fda5a8ccdda8ad14afbfc2708af4a4fad9d759fcfb82f875d04a0b6ef6b58b9b8e94892f6f41c64ad7 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466f04c5f04c9ae8992c210cb0193a52ae8c081c44f33ab1490df3e3c344eb1457c03cc143af8a7a996dfada325c42dfa443aabe1beb17534cca091197b65ea331e7cdb9846e2d55825db62 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=b2590aa4f81a2fbc961d60abede55cc6a4a64a40f7bcd1642f0a31daace3fd msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=82b96b24e3c63563ddab16453506322429609077c4182022c6b9ed126e172a handshake=Noise_IXpsk2_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254a4ef04eabc08e997b45b56825904b887b21cd99b04ad3be0304d7f2f81aac60b41283ee452d1546934cac576e895532296a873828dcafe77b1f902e978dd2aaca2da191591f1ed576d41 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466a3ea1d0b422826e11b94b492b338fd5ef4f90d1a91a637e37c10d0ff7df19c2bf798adb221973ad40ff6bce68049acc745ebeb84d712067b160edcf4970d12bda37dbeacc9b95197d871 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=c6623366838f79936add41938a2f31cc6703b7e7cebc2ec958f116a45842ae msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=4c84d7d2f82cc2bf54b06aef1e2bf49bec5305d72fb5fd19754a3dce298c74 handshake=Noise_IX_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548f40c5adb68f25624ae5b214ea767a6ec94d829d3d7b5e1ad1ba6f3e2138285f msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466baeb82eef5d1debeac9be97240e60145fdad9ac337e2baa15d6854385bd823773396a0eee6acf05ca7aa5378bf4288454fc680db8e956a38853e04e6014dce60 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=ef23146b5edecd2339995fe7f8c597ffa673d06b2671a323d881b1c39f5cef msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=9fb1b190c31c93d2822df95c20f1117eb3f4c2999c51d704e855f30458bfb7 handshake=Noise_IXpsk0_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254a5fcb82f22fdab798026f0ccb9a6b6ce96e3facfeae51b2908db5b849c0c78cc832059e6aa8a847f2d0f96394e935903a7b5bdc38dc307c36c560744dedf674c msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466661e5bec7e323f7e6117cdeef3622006331b5aad001e33c600478db7b40375e9fd6d8b2f9574f9ea404a6ecbeb282f8f112e62e65ae0c5117a2409ffdd9c87bd msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=74de2cd580b07af1ec00ef46206cf8eabb9cd289c10eee2b37e25978fd7748 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=db8795447bbc6d58b7b3d37814c8c351d8dcbeba8e201c2e5f5af7978d1e32 handshake=Noise_IXpsk1_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662545667d83bcfa7dbb6ee159dde3afffea915ce4084462fc02f7f7dc86c2d338a98e01aeac3a330e93ed7024c2417abe12b8b941d28126267f9ec338fb268badb92 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466f04c5f04c9ae8992c210cb0193a52ae8c081c44f33ab1490df3e3c344eb1457c60a8f15129cf89e14206666494b093758fbe507fcae17bee288b08f9c85ee4eb msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=b2590aa4f81a2fbc961d60abede55cc6a4a64a40f7bcd1642f0a31daace3fd msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=82b96b24e3c63563ddab16453506322429609077c4182022c6b9ed126e172a handshake=Noise_IXpsk2_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254a4ef04eabc08e997b45b56825904b887b21cd99b04ad3be0304d7f2f81aac60bee28a96afdcf5ddb9834f24b3adbca9ffb34820535b9ef395d9ec74be0b6c463 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466a3ea1d0b422826e11b94b492b338fd5ef4f90d1a91a637e37c10d0ff7df19c2bdf754927b06ad75f9854618fc90be5bfa7832aea81c319f6f370c0ea61c71610 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=c6623366838f79936add41938a2f31cc6703b7e7cebc2ec958f116a45842ae msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=4c84d7d2f82cc2bf54b06aef1e2bf49bec5305d72fb5fd19754a3dce298c74 handshake=Noise_IX_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548f40c5adb68f25624ae5b214ea767a6ec94d829d3d7b5e1ad1ba6f3e2138285f746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466baeb82eef5d1debeac9be97240e60145fdad9ac337e2baa15d6854385bd823778a69f5de7c91c7049e8a7deb8f146a4f9ddfb64a50666d8ca7cb72de7c28b6e89745666dda39138f879b msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=ef23146b5edecd2339995fe7f8c597ffa673d06b2671a323d881b1c39f5cef msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=9fb1b190c31c93d2822df95c20f1117eb3f4c2999c51d704e855f30458bfb7 handshake=Noise_IXpsk0_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254a5fcb82f22fdab798026f0ccb9a6b6ce96e3facfeae51b2908db5b849c0c78cc832059e6aa8a847f2d0f96394e935903b4de8177eb0303296be67e9e3ad1409bd062f3aba1c7c477040b msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466661e5bec7e323f7e6117cdeef3622006331b5aad001e33c600478db7b40375e9737c4d6dd044d38d9ffd2dd2dab050917ee6317754ea54d2702741888f20c82d956a7bb993de16de0d14 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=74de2cd580b07af1ec00ef46206cf8eabb9cd289c10eee2b37e25978fd7748 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=db8795447bbc6d58b7b3d37814c8c351d8dcbeba8e201c2e5f5af7978d1e32 handshake=Noise_IXpsk1_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662545667d83bcfa7dbb6ee159dde3afffea915ce4084462fc02f7f7dc86c2d338a98e01aeac3a330e93ed7024c2417abe12bfad9d759fcfb82f875d0c8a2111c403741010bf0636ee681033a msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466f04c5f04c9ae8992c210cb0193a52ae8c081c44f33ab1490df3e3c344eb1457c5132a645f88ee1276193c0bcb3c09d433aabe1beb17534cca09105fea7ab6384f007948b20ea8639f0cd msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=b2590aa4f81a2fbc961d60abede55cc6a4a64a40f7bcd1642f0a31daace3fd msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=82b96b24e3c63563ddab16453506322429609077c4182022c6b9ed126e172a handshake=Noise_IXpsk2_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254a4ef04eabc08e997b45b56825904b887b21cd99b04ad3be0304d7f2f81aac60bee28a96afdcf5ddb9834f24b3adbca9f96a873828dcafe77b1f9e3d5a83968ebd8ec79b57e9771a568f5 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466a3ea1d0b422826e11b94b492b338fd5ef4f90d1a91a637e37c10d0ff7df19c2b0099aaa3c996f372406528a3a794d3ff45ebeb84d712067b160e85632580c15161e5fa9cc27ac7e74016 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=c6623366838f79936add41938a2f31cc6703b7e7cebc2ec958f116a45842ae msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=4c84d7d2f82cc2bf54b06aef1e2bf49bec5305d72fb5fd19754a3dce298c74 handshake=Noise_N_25519_ChaChaPoly_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625466758477eb5e8e0b273460a89ef8d8bb msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=2e89db912502b14e9dbf21dc062b494ac2e25f2010ba86f246759fdb8bd990 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=505ffc87ec9cca139162b049416af8ca811e7044897d399912f9a139ac65ec handshake=Noise_Npsk0_25519_ChaChaPoly_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625404ec6da801ab66f5e59f874f002af309 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=bf4151a9d4b9f4250c91542ee802a0701692a141344edb1ef3e831a8210e1c msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=c1dc8651b5c1d3f4189f858a7972bfd62a4123530c64d4239457fa7e46c10a handshake=Noise_Npsk1_25519_ChaChaPoly_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662546d32a96bccf7b2b063e7745276a99f6e msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=6b24bc0b584f4ca451495cdddeed74727d03f88fc561227b4cf2486f3bb360 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=60f010c122da08e08781f409477350a6da336e03bf3eb266693b581dd61826 handshake=Noise_N_25519_ChaChaPoly_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254a703e3bfcc38dbdb465b7d5ded3686008b3ff4c92f20e9fe4b44 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=2e89db912502b14e9dbf21dc062b494ac2e25f2010ba86f246759fdb8bd990 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=505ffc87ec9cca139162b049416af8ca811e7044897d399912f9a139ac65ec handshake=Noise_Npsk0_25519_ChaChaPoly_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625457027708cda785ef784def1e032c2ffbbcbed3108edbbb565140 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=bf4151a9d4b9f4250c91542ee802a0701692a141344edb1ef3e831a8210e1c msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=c1dc8651b5c1d3f4189f858a7972bfd62a4123530c64d4239457fa7e46c10a handshake=Noise_Npsk1_25519_ChaChaPoly_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625407e786c1a8d1e6880cf0c8ce414c8d2dbf57be2fd7c3152586df msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=6b24bc0b584f4ca451495cdddeed74727d03f88fc561227b4cf2486f3bb360 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=60f010c122da08e08781f409477350a6da336e03bf3eb266693b581dd61826 handshake=Noise_N_25519_ChaChaPoly_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625439e0d27ade0e68178eedc32a520154b9 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=2e89db912502b14e9dbf21dc062b494ac2e25f2010ba86f246759fdb8bd990 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=505ffc87ec9cca139162b049416af8ca811e7044897d399912f9a139ac65ec handshake=Noise_Npsk0_25519_ChaChaPoly_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c1180d93ec09b5da7a888f7b5b9e9d6e msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=bf4151a9d4b9f4250c91542ee802a0701692a141344edb1ef3e831a8210e1c msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=c1dc8651b5c1d3f4189f858a7972bfd62a4123530c64d4239457fa7e46c10a handshake=Noise_Npsk1_25519_ChaChaPoly_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662547d8ce635d32999d4ca2bb00175c04248 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=6b24bc0b584f4ca451495cdddeed74727d03f88fc561227b4cf2486f3bb360 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=60f010c122da08e08781f409477350a6da336e03bf3eb266693b581dd61826 handshake=Noise_N_25519_ChaChaPoly_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254a703e3bfcc38dbdb465bc83726dbcf8aa4764c684931d2985245 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=2e89db912502b14e9dbf21dc062b494ac2e25f2010ba86f246759fdb8bd990 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=505ffc87ec9cca139162b049416af8ca811e7044897d399912f9a139ac65ec handshake=Noise_Npsk0_25519_ChaChaPoly_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625457027708cda785ef784de0eed7a36afc2fad22523e691cd155e5 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=bf4151a9d4b9f4250c91542ee802a0701692a141344edb1ef3e831a8210e1c msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=c1dc8651b5c1d3f4189f858a7972bfd62a4123530c64d4239457fa7e46c10a handshake=Noise_Npsk1_25519_ChaChaPoly_SHA256 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625407e786c1a8d1e6880cf049f2b82299602ae37ab12f077040a55a msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=6b24bc0b584f4ca451495cdddeed74727d03f88fc561227b4cf2486f3bb360 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=60f010c122da08e08781f409477350a6da336e03bf3eb266693b581dd61826 handshake=Noise_K_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254af724161ce8037f690f587990caba741 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=af4b5c9ff0d0b31da602bb6e7153edd095bd37fa83b0a35768d6ac024bc746 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=a5f0b377dfd3489f3f151959508a84f19530d5cb0ea8226f2481f7839d2be5 handshake=Noise_Kpsk0_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662547a2e747346812f333b2884928033af07 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=548e6dc3b25bc8d0916603d1b74d6755aeb9664c5d890466d385e7dc918acb msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=b43de84e2dbaaa14fdec24a4f7cc2dad954be8427ffea5b736d623b75ac878 handshake=Noise_Kpsk1_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662543754db2fc9cc2ef2f59756219f19fdf4 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=8c47be8aaf7c41ae38280e5e38cd42f5c57e55f0bae05b5088c448ca737cac msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=03fac31b503fe58810962b52ddd9ad9fb8ff709d88926115d593bb790be465 handshake=Noise_K_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254b8cae311a5f3367e2170caf5c7ae0947b49ced8a3b7a99f10460 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=af4b5c9ff0d0b31da602bb6e7153edd095bd37fa83b0a35768d6ac024bc746 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=a5f0b377dfd3489f3f151959508a84f19530d5cb0ea8226f2481f7839d2be5 handshake=Noise_Kpsk0_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541a844cd1a19651421cc5f0a672d6629f1bcebe5fd2691c65df09 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=548e6dc3b25bc8d0916603d1b74d6755aeb9664c5d890466d385e7dc918acb msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=b43de84e2dbaaa14fdec24a4f7cc2dad954be8427ffea5b736d623b75ac878 handshake=Noise_Kpsk1_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662542e79d636b2cfc26e6d3b795a2db7f448dd03f4a5053d35f31b5e msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=8c47be8aaf7c41ae38280e5e38cd42f5c57e55f0bae05b5088c448ca737cac msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=03fac31b503fe58810962b52ddd9ad9fb8ff709d88926115d593bb790be465 handshake=Noise_K_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254061ee6934752ad8113f86fbb135a5833 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=af4b5c9ff0d0b31da602bb6e7153edd095bd37fa83b0a35768d6ac024bc746 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=a5f0b377dfd3489f3f151959508a84f19530d5cb0ea8226f2481f7839d2be5 handshake=Noise_Kpsk0_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548960d9a2b168215cea4307684febf3a7 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=548e6dc3b25bc8d0916603d1b74d6755aeb9664c5d890466d385e7dc918acb msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=b43de84e2dbaaa14fdec24a4f7cc2dad954be8427ffea5b736d623b75ac878 handshake=Noise_Kpsk1_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254fffe9d4e3bde9e0560276f13d2c04674 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=8c47be8aaf7c41ae38280e5e38cd42f5c57e55f0bae05b5088c448ca737cac msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=03fac31b503fe58810962b52ddd9ad9fb8ff709d88926115d593bb790be465 handshake=Noise_K_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254b8cae311a5f3367e21709e6be52d6fd8abf20e2708f50165f7ba msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=af4b5c9ff0d0b31da602bb6e7153edd095bd37fa83b0a35768d6ac024bc746 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=a5f0b377dfd3489f3f151959508a84f19530d5cb0ea8226f2481f7839d2be5 handshake=Noise_Kpsk0_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541a844cd1a19651421cc510d96aa4ac452dc98839e9311bb36fd9 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=548e6dc3b25bc8d0916603d1b74d6755aeb9664c5d890466d385e7dc918acb msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=b43de84e2dbaaa14fdec24a4f7cc2dad954be8427ffea5b736d623b75ac878 handshake=Noise_Kpsk1_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662542e79d636b2cfc26e6d3b936366095e5a0447b667b6c1ae8d7887 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=8c47be8aaf7c41ae38280e5e38cd42f5c57e55f0bae05b5088c448ca737cac msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=03fac31b503fe58810962b52ddd9ad9fb8ff709d88926115d593bb790be465 handshake=Noise_X_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548cccfba3094925ef50f41bb45d6e69936ad15fcba0c3479a46afb577d3459497de729f4d8d615d5886e52f4f888dd49490ed46957206fa937490058feca88e4c msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=2e04749040fde470ab93dda9ca2d7dc69896d0c564d0898755a09830735187 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=11ca4c30bd3b563c23f5a5ae83844d038b1ae8ac7ed4e7e788ad9cdfb56c39 handshake=Noise_Xpsk0_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662546a25d60fc3551b45b422660fc5330a9a9a211a4c015192a4cb45f9e2736c0e75bb78c9f2817412a0d0644ce590aa15f91ed91cc1bf4db059be00aaea12d8ee2e msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=6f84a4ede3160b3464efec0b87051e3555832871ffb6b3f3549461507068cf msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=83ac689c3ac344c2b7fbbaacc8d655c9ff0a1a89458b12ceb4510e80b5f9da handshake=Noise_Xpsk1_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625433e53e3ef1c689e4802f9453dd73c9402aa8072a810f934f7a466d2ede7d8ca7f8d22e80734349ab2e4fef536d0bc40c860a78498c16248c6d4121c7c68cd5e9 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=131094feaa8cbacb6c348050711162cf8d44b13e8de882c98410e7d3981d51 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=15fcd4e117342b9e651d6ab5048fd549fb38093e21fd369e1c6e630fbe9d24 handshake=Noise_X_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548cccfba3094925ef50f41bb45d6e69936ad15fcba0c3479a46afb577d3459497de729f4d8d615d5886e52f4f888dd49486d56a823c51b82cc9bbf955b0358da74bdd0b077ee1f02b887f msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=2e04749040fde470ab93dda9ca2d7dc69896d0c564d0898755a09830735187 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=11ca4c30bd3b563c23f5a5ae83844d038b1ae8ac7ed4e7e788ad9cdfb56c39 handshake=Noise_Xpsk0_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662546a25d60fc3551b45b422660fc5330a9a9a211a4c015192a4cb45f9e2736c0e75bb78c9f2817412a0d0644ce590aa15f961bd13d0da02b4849bacd8ac61dcfa5bef1e7f6befb9ccdb30c1 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=6f84a4ede3160b3464efec0b87051e3555832871ffb6b3f3549461507068cf msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=83ac689c3ac344c2b7fbbaacc8d655c9ff0a1a89458b12ceb4510e80b5f9da handshake=Noise_Xpsk1_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625433e53e3ef1c689e4802f9453dd73c9402aa8072a810f934f7a466d2ede7d8ca7f8d22e80734349ab2e4fef536d0bc40c425ca4e756799dee05a7ed4e89dfa0920c4a847773f25c044e12 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=131094feaa8cbacb6c348050711162cf8d44b13e8de882c98410e7d3981d51 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=15fcd4e117342b9e651d6ab5048fd549fb38093e21fd369e1c6e630fbe9d24 handshake=Noise_X_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548cccfba3094925ef50f41bb45d6e69936ad15fcba0c3479a46afb577d3459497a2b1b0c7f3c1107df1feeb7d2e340fd8d5f49ce97438f6953faa0fd6fa333a9e msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=2e04749040fde470ab93dda9ca2d7dc69896d0c564d0898755a09830735187 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=11ca4c30bd3b563c23f5a5ae83844d038b1ae8ac7ed4e7e788ad9cdfb56c39 handshake=Noise_Xpsk0_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662546a25d60fc3551b45b422660fc5330a9a9a211a4c015192a4cb45f9e2736c0e75f6af9abf7f31d35f75534eac6e1181ed73faa6a26a1c01055d98b0f42b3e70d6 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=6f84a4ede3160b3464efec0b87051e3555832871ffb6b3f3549461507068cf msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=83ac689c3ac344c2b7fbbaacc8d655c9ff0a1a89458b12ceb4510e80b5f9da handshake=Noise_Xpsk1_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625433e53e3ef1c689e4802f9453dd73c9402aa8072a810f934f7a466d2ede7d8ca79f78c9011a748444af8a1d2ac4beffd3606f6e6109b0940a1b63b3f6d67e62d9 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=131094feaa8cbacb6c348050711162cf8d44b13e8de882c98410e7d3981d51 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=15fcd4e117342b9e651d6ab5048fd549fb38093e21fd369e1c6e630fbe9d24 handshake=Noise_X_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548cccfba3094925ef50f41bb45d6e69936ad15fcba0c3479a46afb577d3459497a2b1b0c7f3c1107df1feeb7d2e340fd886d56a823c51b82cc9bbef609fcb249aa5dc6bfae8b03f645e11 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=2e04749040fde470ab93dda9ca2d7dc69896d0c564d0898755a09830735187 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=11ca4c30bd3b563c23f5a5ae83844d038b1ae8ac7ed4e7e788ad9cdfb56c39 handshake=Noise_Xpsk0_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662546a25d60fc3551b45b422660fc5330a9a9a211a4c015192a4cb45f9e2736c0e75f6af9abf7f31d35f75534eac6e1181ed61bd13d0da02b4849bac05762a942acd1f8196a3e9abd1804c1a msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=6f84a4ede3160b3464efec0b87051e3555832871ffb6b3f3549461507068cf msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=83ac689c3ac344c2b7fbbaacc8d655c9ff0a1a89458b12ceb4510e80b5f9da handshake=Noise_Xpsk1_25519_ChaChaPoly_SHA256 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625433e53e3ef1c689e4802f9453dd73c9402aa8072a810f934f7a466d2ede7d8ca79f78c9011a748444af8a1d2ac4beffd3425ca4e756799dee05a737edccc12925ee623b4305c3410a3753 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=131094feaa8cbacb6c348050711162cf8d44b13e8de882c98410e7d3981d51 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=15fcd4e117342b9e651d6ab5048fd549fb38093e21fd369e1c6e630fbe9d24 handshake=Noise_NN_25519_ChaChaPoly_SHA512 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466f8006a097c5b557f4464c7b27dbd8e35 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=984f97fa7c1125c40ac0c3bb124e9a60fe179997c677873ab695f7b19ac262 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=6826eeac32a5efc75cb0fcbdc9833c4fdcbad4923c77064f83ee7dfbdc288f handshake=Noise_NNpsk0_25519_ChaChaPoly_SHA512 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254974676d1695ef76c90de21fd792bcbbf msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484664295530903147b2ef9fa23131d315e89 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=0613a33b46a7b58b27aee0341bb301c9ab995009b4cc5184fbb5a8cf7be53d msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=5cab31d679356097d8d190df5c068dee6e2ba4e4c275fd81e25c019bf65f6d handshake=Noise_NNpsk1_25519_ChaChaPoly_SHA512 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254d74b5809b1cc7872a9b81f4042b3e795 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484660541a69fa4c2c12112d7506b314c7c3f msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=abf9e02663066047949fc2b5618d5ac5e2c078cdb011b7ed7a8f97aa4436b0 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=d85667b02a4a35a2c701afbca632f1c94741b2fc3345220d6b74af80134ca9 handshake=Noise_NNpsk2_25519_ChaChaPoly_SHA512 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254aaf57bcc7f1092854b42b9d236a4c004 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466159739894d9652a3509deb14b3a10299 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=be2eff0ceb13ed28f46bd59b64b8acb937ada777ee557f6147111e9fbc5d25 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=79c9684daee2cdbf5117ccd166e2da4ef6bfd9c7babc9ab75e5d3665518cbd handshake=Noise_NN_25519_ChaChaPoly_SHA512 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466114578170ac333f0a403ad4d13e744e5040f7f860764f72ede92 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=984f97fa7c1125c40ac0c3bb124e9a60fe179997c677873ab695f7b19ac262 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=6826eeac32a5efc75cb0fcbdc9833c4fdcbad4923c77064f83ee7dfbdc288f handshake=Noise_NNpsk0_25519_ChaChaPoly_SHA512 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541c2a9acfae038fa688b36a860ce3cab6de204e5286be35d42db1 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846633d99a5f182be11e1105b85168c151b4b5551d5ef3ade5e59ce2 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=0613a33b46a7b58b27aee0341bb301c9ab995009b4cc5184fbb5a8cf7be53d msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=5cab31d679356097d8d190df5c068dee6e2ba4e4c275fd81e25c019bf65f6d handshake=Noise_NNpsk1_25519_ChaChaPoly_SHA512 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541686d22f6e5298997dc0c473114ab1dc6e02dc2355872726df0e msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466402b1ffabe29fc69e1daad0ecafe3a6282d4ad0aeb7ee6625e2c msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=abf9e02663066047949fc2b5618d5ac5e2c078cdb011b7ed7a8f97aa4436b0 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=d85667b02a4a35a2c701afbca632f1c94741b2fc3345220d6b74af80134ca9 handshake=Noise_NNpsk2_25519_ChaChaPoly_SHA512 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254b3a376dcfce9e9147a0616a720fd3172ecb619f17eccdc9005ab msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846693b56fc7a048915c8251b5382ce54df64c1d362e477150d6a07b msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=be2eff0ceb13ed28f46bd59b64b8acb937ada777ee557f6147111e9fbc5d25 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=79c9684daee2cdbf5117ccd166e2da4ef6bfd9c7babc9ab75e5d3665518cbd handshake=Noise_NN_25519_ChaChaPoly_SHA512 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484667cc7b2813fbd918f730af3e151d18ebc msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=984f97fa7c1125c40ac0c3bb124e9a60fe179997c677873ab695f7b19ac262 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=6826eeac32a5efc75cb0fcbdc9833c4fdcbad4923c77064f83ee7dfbdc288f handshake=Noise_NNpsk0_25519_ChaChaPoly_SHA512 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c6e9ea5266f8fe353cd01f932b2a7804 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466dbb235f1ab9dc24f035f317418338415 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=0613a33b46a7b58b27aee0341bb301c9ab995009b4cc5184fbb5a8cf7be53d msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=5cab31d679356097d8d190df5c068dee6e2ba4e4c275fd81e25c019bf65f6d handshake=Noise_NNpsk1_25519_ChaChaPoly_SHA512 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254ee047aa2f9f98eabb4e2e09bb1970c42 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466241ec162167033e63b0abca7874e3355 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=abf9e02663066047949fc2b5618d5ac5e2c078cdb011b7ed7a8f97aa4436b0 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=d85667b02a4a35a2c701afbca632f1c94741b2fc3345220d6b74af80134ca9 handshake=Noise_NNpsk2_25519_ChaChaPoly_SHA512 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625451990afd47d5cff7607df29d7e08b05c msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484663bf1d1f0f5c435b3018b3c8ba0a625c1 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=be2eff0ceb13ed28f46bd59b64b8acb937ada777ee557f6147111e9fbc5d25 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=79c9684daee2cdbf5117ccd166e2da4ef6bfd9c7babc9ab75e5d3665518cbd handshake=Noise_NN_25519_ChaChaPoly_SHA512 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466114578170ac333f0a4036ded1f916a042a8b557f6b850f608d5f msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=984f97fa7c1125c40ac0c3bb124e9a60fe179997c677873ab695f7b19ac262 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=6826eeac32a5efc75cb0fcbdc9833c4fdcbad4923c77064f83ee7dfbdc288f handshake=Noise_NNpsk0_25519_ChaChaPoly_SHA512 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541c2a9acfae038fa688b361ef2dab5318ec6e764eeaeb60312d9b msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846633d99a5f182be11e11056d6f69deb26bfc780001cca9428c875d msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=0613a33b46a7b58b27aee0341bb301c9ab995009b4cc5184fbb5a8cf7be53d msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=5cab31d679356097d8d190df5c068dee6e2ba4e4c275fd81e25c019bf65f6d handshake=Noise_NNpsk1_25519_ChaChaPoly_SHA512 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541686d22f6e5298997dc08d43269f7d5bae51225e05e672adaef1 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466402b1ffabe29fc69e1da4133d3c9e013bc17c3e78f908ce4c654 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=abf9e02663066047949fc2b5618d5ac5e2c078cdb011b7ed7a8f97aa4436b0 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=d85667b02a4a35a2c701afbca632f1c94741b2fc3345220d6b74af80134ca9 handshake=Noise_NNpsk2_25519_ChaChaPoly_SHA512 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254b3a376dcfce9e9147a06727bb95b42b46c2791a6e07c1824a5af msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846693b56fc7a048915c8251fd399101582872eab051fbe3bc3ef39c msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=be2eff0ceb13ed28f46bd59b64b8acb937ada777ee557f6147111e9fbc5d25 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=79c9684daee2cdbf5117ccd166e2da4ef6bfd9c7babc9ab75e5d3665518cbd handshake=Noise_KN_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466a05b47c8265d4ab0222de8450c1a67fc msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=7f3c9fbbd304f284cbf067f089801a6cbdefa9ec68ce8a186b3ec6198eff1b msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=e4508095fd5fa73c415d881b7b7b5519a522c358eaee583f65379a82746c72 handshake=Noise_KNpsk0_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254a605358c47ddb81dd2a4c82b4c275e2d msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466ce6754e492246db11d29b0ebfd513bc4 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=216cfab041942d740699e1d9b13b70be15efd1842776ae8bbbcff63e5ab6f3 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=4f390f1ed96ab34cc1ad8e419f44afb39d6c152556d04fd8285e16480f4542 handshake=Noise_KNpsk1_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541786642ee04970b496f2d5463b0aabb0 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846647a2b31a6688efaff36c8fa66ee16eac msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=d71742981c22266f55a203db331274afe42f2fcbb53cd54743f0eb4b09112b msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=896562cb84ade13be47e2cd28b0244f4006df84781d971b8ddd0383395adc0 handshake=Noise_KNpsk2_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625490b21825eee9e45abc6ff262aca6e634 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846684e4d22747f1a8b988b94cb283b34885 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=bfe4815658302d4f593705a806e1102e3a2a0a36dc847aa612586a035edaa3 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=dc23a01b665cafc7c1baafeda8e705ee9e0f8a0f1f4c9b89814cb747274c08 handshake=Noise_KN_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466ac57ebc5143d3134c5674a209111f914f49e33f0c29b6e232822 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=7f3c9fbbd304f284cbf067f089801a6cbdefa9ec68ce8a186b3ec6198eff1b msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=e4508095fd5fa73c415d881b7b7b5519a522c358eaee583f65379a82746c72 handshake=Noise_KNpsk0_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662543cd51e47fb9aa475e18e123b157d4e9ee222e358cc22e19916a3 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846647dfb3375c1e7beabafacf5cd875d25dbfbe5d5fd5762503b6cc msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=216cfab041942d740699e1d9b13b70be15efd1842776ae8bbbcff63e5ab6f3 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=4f390f1ed96ab34cc1ad8e419f44afb39d6c152556d04fd8285e16480f4542 handshake=Noise_KNpsk1_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662543fb5766cc4bc875a8c94708eed1c40bad1376f555482ee213c4c msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466eeb430d11573629ee9f48689ee97e44a23404b52878c01f8129d msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=d71742981c22266f55a203db331274afe42f2fcbb53cd54743f0eb4b09112b msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=896562cb84ade13be47e2cd28b0244f4006df84781d971b8ddd0383395adc0 handshake=Noise_KNpsk2_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254033b7a5813ca73b834666f8c07644ac14f8bccffe995d2ded587 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c95ee12179a4d001f6e0beb00425609cf2cd7a7f17766a623f53 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=bfe4815658302d4f593705a806e1102e3a2a0a36dc847aa612586a035edaa3 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=dc23a01b665cafc7c1baafeda8e705ee9e0f8a0f1f4c9b89814cb747274c08 handshake=Noise_KN_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484669d58ab3ea3c810e67a9e0bc3f8b31cad msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=7f3c9fbbd304f284cbf067f089801a6cbdefa9ec68ce8a186b3ec6198eff1b msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=e4508095fd5fa73c415d881b7b7b5519a522c358eaee583f65379a82746c72 handshake=Noise_KNpsk0_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254028d29d14a56c53b7db28781e4b8e0ec msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484669ce4da10e934ba7a166a6518c4d9fd18 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=216cfab041942d740699e1d9b13b70be15efd1842776ae8bbbcff63e5ab6f3 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=4f390f1ed96ab34cc1ad8e419f44afb39d6c152556d04fd8285e16480f4542 handshake=Noise_KNpsk1_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625413e83f08edd08acd29015742d043f59b msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466cab3cb9abaebcd0b566d2d3fdc38039a msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=d71742981c22266f55a203db331274afe42f2fcbb53cd54743f0eb4b09112b msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=896562cb84ade13be47e2cd28b0244f4006df84781d971b8ddd0383395adc0 handshake=Noise_KNpsk2_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625493a48efb4ac89aafa2eba5be4722b098 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846639b3e3cb2a7a8813f232329758728863 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=bfe4815658302d4f593705a806e1102e3a2a0a36dc847aa612586a035edaa3 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=dc23a01b665cafc7c1baafeda8e705ee9e0f8a0f1f4c9b89814cb747274c08 handshake=Noise_KN_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466ac57ebc5143d3134c567adc45d5a0da7645b723d3653a951aa1a msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=7f3c9fbbd304f284cbf067f089801a6cbdefa9ec68ce8a186b3ec6198eff1b msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=e4508095fd5fa73c415d881b7b7b5519a522c358eaee583f65379a82746c72 handshake=Noise_KNpsk0_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662543cd51e47fb9aa475e18e4b5ca06c89b89d86120b3a6925871f0b msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846647dfb3375c1e7beabafaaf3082b2bafc8456a2751912500c2a3a msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=216cfab041942d740699e1d9b13b70be15efd1842776ae8bbbcff63e5ab6f3 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=4f390f1ed96ab34cc1ad8e419f44afb39d6c152556d04fd8285e16480f4542 handshake=Noise_KNpsk1_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662543fb5766cc4bc875a8c94660ba2bf08b944693946e4d1842d6003 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466eeb430d11573629ee9f4be8a75aae8683f5d5e87a90e4581f68e msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=d71742981c22266f55a203db331274afe42f2fcbb53cd54743f0eb4b09112b msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=896562cb84ade13be47e2cd28b0244f4006df84781d971b8ddd0383395adc0 handshake=Noise_KNpsk2_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254033b7a5813ca73b83466231a71a631b5aaa173c4529f435385b7 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c95ee12179a4d001f6e0b2073ec8b7c064daad044fdc8e3f9f2a msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=bfe4815658302d4f593705a806e1102e3a2a0a36dc847aa612586a035edaa3 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=dc23a01b665cafc7c1baafeda8e705ee9e0f8a0f1f4c9b89814cb747274c08 handshake=Noise_NK_25519_ChaChaPoly_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541ae9c9a6658068e796f1609d0738cf24 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484666a553cbfe29b06c54b679290a63b357e msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=e81871e9c00f0153758cddbae509bd548b0f5a02eab4751107842ef6b6a93c msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=16cbc8684ec246d78a72c6421aa737ed4441ac751cdd4510617decffe89dfd handshake=Noise_NKpsk0_25519_ChaChaPoly_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254098cdd7308257dd69233ab7d725ee8bc msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484668edb3682137234dad14a8b4c8866e03d msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=7cb6cbbbddfefdc4d030ab94ab2aab13422ef4d87e054a08bb10da446c6f36 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=e3926ab002f3c5051150d49e11388040a8397644b461aed00fad63e8023241 handshake=Noise_NKpsk1_25519_ChaChaPoly_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254cbd6c6755faedda9da18ea3a14dbb128 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484664c48eb806966bdd24e98fe421b3d4815 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=1193e531aed0c1f9c475668bc5420beb3ee15f3520931d4a283185763289fa msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=d4b9ff958655454654452cfc613b0b9a7fd7dac8aae5f1f0382edba43b0d1a handshake=Noise_NKpsk2_25519_ChaChaPoly_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625486bf3bfeb6861b365528620b68992d7b msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484668acd99b4cbc7ce0c14ff2be16afc02bf msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=65fd72393fd5065a54fa40313eaf8b7a052631aaf3f7368622f909aff8f4e8 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=28de903b3a3f50fd29d23549b726ddeb4c16f7db17c1757b4dd8d54ecfd8a2 handshake=Noise_NK_25519_ChaChaPoly_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625490f8f004794122bca779d9bedcc39b7bfb88883f6a56029320aa msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466e93b0314d9d7741d4e27466c0dd7656cf06185f352ffe422a67d msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=e81871e9c00f0153758cddbae509bd548b0f5a02eab4751107842ef6b6a93c msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=16cbc8684ec246d78a72c6421aa737ed4441ac751cdd4510617decffe89dfd handshake=Noise_NKpsk0_25519_ChaChaPoly_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254686ba4c18195ad7d41e9992316453c355d139541985ab5a3966f msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466d153be7723be9f8b575546cf935485ad9ab67635c3570d782a7a msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=7cb6cbbbddfefdc4d030ab94ab2aab13422ef4d87e054a08bb10da446c6f36 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=e3926ab002f3c5051150d49e11388040a8397644b461aed00fad63e8023241 handshake=Noise_NKpsk1_25519_ChaChaPoly_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254210d5de7949ae573f825864efec44aec7e75233f354d162612d0 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c58fd6fcb9ef1553a6b2f2800aeb72958e3cc8bbb74a7d21b9b2 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=1193e531aed0c1f9c475668bc5420beb3ee15f3520931d4a283185763289fa msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=d4b9ff958655454654452cfc613b0b9a7fd7dac8aae5f1f0382edba43b0d1a handshake=Noise_NKpsk2_25519_ChaChaPoly_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541c009a07ab83cf19c6e7f8cdce6b7810b8fd94271ebe94286d91 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466ef6e6049aca18b319ec85d018f1abc9f9b886f0291177f84af35 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=65fd72393fd5065a54fa40313eaf8b7a052631aaf3f7368622f909aff8f4e8 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=28de903b3a3f50fd29d23549b726ddeb4c16f7db17c1757b4dd8d54ecfd8a2 handshake=Noise_NK_25519_ChaChaPoly_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254e84c76e8c7b65cb632b4b7e044462340 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484665e44b83033cf4b6c0632338348ba3010 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=e81871e9c00f0153758cddbae509bd548b0f5a02eab4751107842ef6b6a93c msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=16cbc8684ec246d78a72c6421aa737ed4441ac751cdd4510617decffe89dfd handshake=Noise_NKpsk0_25519_ChaChaPoly_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254078dc0cb4f3e257498b0326b749ed738 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846611a2822f0742f8b8d78d49e4826d4768 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=7cb6cbbbddfefdc4d030ab94ab2aab13422ef4d87e054a08bb10da446c6f36 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=e3926ab002f3c5051150d49e11388040a8397644b461aed00fad63e8023241 handshake=Noise_NKpsk1_25519_ChaChaPoly_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254e2f9cfc860db48368e8e7b088ac14ac9 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484663518375638c3a6f8b52d108e2eca0c65 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=1193e531aed0c1f9c475668bc5420beb3ee15f3520931d4a283185763289fa msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=d4b9ff958655454654452cfc613b0b9a7fd7dac8aae5f1f0382edba43b0d1a handshake=Noise_NKpsk2_25519_ChaChaPoly_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625492ab9d1af417323e2bc1b5d5ab5a9795 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846626b056d1f03521f4218c4e423a14182b msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=65fd72393fd5065a54fa40313eaf8b7a052631aaf3f7368622f909aff8f4e8 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=28de903b3a3f50fd29d23549b726ddeb4c16f7db17c1757b4dd8d54ecfd8a2 handshake=Noise_NK_25519_ChaChaPoly_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625490f8f004794122bca7798750ae0cdabd48361711c1194a3a80ac msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466e93b0314d9d7741d4e27e87d0ce6e3fe0f2b2b1c073a577dde57 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=e81871e9c00f0153758cddbae509bd548b0f5a02eab4751107842ef6b6a93c msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=16cbc8684ec246d78a72c6421aa737ed4441ac751cdd4510617decffe89dfd handshake=Noise_NKpsk0_25519_ChaChaPoly_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254686ba4c18195ad7d41e9353c11fdf8f2db2246391ecb8dd0fdf1 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466d153be7723be9f8b575534d2a1f435076015a844d771ca0cf06b msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=7cb6cbbbddfefdc4d030ab94ab2aab13422ef4d87e054a08bb10da446c6f36 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=e3926ab002f3c5051150d49e11388040a8397644b461aed00fad63e8023241 handshake=Noise_NKpsk1_25519_ChaChaPoly_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254210d5de7949ae573f825ac5a5aebcfe6558f9de711f803dca24a msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c58fd6fcb9ef1553a6b208182eca4927db5b6ebede70e11c926f msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=1193e531aed0c1f9c475668bc5420beb3ee15f3520931d4a283185763289fa msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=d4b9ff958655454654452cfc613b0b9a7fd7dac8aae5f1f0382edba43b0d1a handshake=Noise_NKpsk2_25519_ChaChaPoly_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541c009a07ab83cf19c6e7468cbd4dd5693d61810307b3a1037ca2 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466ef6e6049aca18b319ec8175c93ded5a053ed7324261bb7944cee msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=65fd72393fd5065a54fa40313eaf8b7a052631aaf3f7368622f909aff8f4e8 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=28de903b3a3f50fd29d23549b726ddeb4c16f7db17c1757b4dd8d54ecfd8a2 handshake=Noise_KK_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625422ed6d5d012d0c7b8b7c91b303b2eeaa msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484667db7a98eb9c50939d9d424becba2cfe4 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=0dc5775f180ebbca24ba2dbedf7df763974789fffe201a7158f92c61c21e56 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=94573c8b800345c65607ec7bd2244bcd871c8e73247b6835ad35334257460c handshake=Noise_KKpsk0_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625435c738ecdc74a3da8ba56685cbda15fb msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466e6f50e396f3bfa2a91db76cf3550b57a msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=cb7d802310849d2cbcb2bf628d5b5be8694cff1cd9d9fe4d88270315550664 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=8c51f3b2a7bdef2910114236378b9d97d5b0a5054f3e6e0b93d9ba1439a314 handshake=Noise_KKpsk1_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662542aa38a5f7583c960333ffdb92f005d72 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466b3a625b74b537cdd5581ca17b2d20c91 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=14e6e930733e777341e6bb7ec522f24f7aff05b125bf49d45b5150d2c8eee8 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=39a6c784e7e5f91d33ba6200a4bfb333e9e5d5974e89b8c92f7cca58641e98 handshake=Noise_KKpsk2_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254ac287025515a5ec183f396ac7626bceb msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466680cff1a53276ab7f03431d5fe2ddf49 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=1ee2a40d2d547aa1ecff9085d876d61bef6d5faa010db3e983313e28a84176 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=022620f1e6e067f7af42f407df7b37bfe24da7a7d79d91f3d3278bee00809f handshake=Noise_KK_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625439201e9eaf437b4be19b1452073cf37e9fad03973780eb051f13 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484669d683ff6a052688a4bf54d599e036fb4cf5d8c4fe35628270a9a msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=0dc5775f180ebbca24ba2dbedf7df763974789fffe201a7158f92c61c21e56 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=94573c8b800345c65607ec7bd2244bcd871c8e73247b6835ad35334257460c handshake=Noise_KKpsk0_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c7d83c70d4f86e56a84f48e3f71d9451d09c606773101e89a3fa msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484662d99936cb48465009334c1afddb55f62072449be590183a496b7 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=cb7d802310849d2cbcb2bf628d5b5be8694cff1cd9d9fe4d88270315550664 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=8c51f3b2a7bdef2910114236378b9d97d5b0a5054f3e6e0b93d9ba1439a314 handshake=Noise_KKpsk1_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625428bddcbf220404e1f3344e37fae6b2b658565e8322fde73aae4a msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466b6be75c4a8160a18b20eafa7a5919dbc8dab95aa27d4604038ec msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=14e6e930733e777341e6bb7ec522f24f7aff05b125bf49d45b5150d2c8eee8 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=39a6c784e7e5f91d33ba6200a4bfb333e9e5d5974e89b8c92f7cca58641e98 handshake=Noise_KKpsk2_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254dcbb401e89f43c8af94bbdf465fb33a6d47244a2b418f7946bf4 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466766cf40c486fe6860ad473d82a2500671ef59ee6cd2096af1427 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=1ee2a40d2d547aa1ecff9085d876d61bef6d5faa010db3e983313e28a84176 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=022620f1e6e067f7af42f407df7b37bfe24da7a7d79d91f3d3278bee00809f handshake=Noise_KK_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662546100613cdbb5fe7b350dc52dba01d51c msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846613f7bc06352a6a111cf882cbb90fb733 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=0dc5775f180ebbca24ba2dbedf7df763974789fffe201a7158f92c61c21e56 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=94573c8b800345c65607ec7bd2244bcd871c8e73247b6835ad35334257460c handshake=Noise_KKpsk0_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254186a15c02343bc4dd83d048fa63f5304 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484665e19c67762e245b10dd4f42441152693 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=cb7d802310849d2cbcb2bf628d5b5be8694cff1cd9d9fe4d88270315550664 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=8c51f3b2a7bdef2910114236378b9d97d5b0a5054f3e6e0b93d9ba1439a314 handshake=Noise_KKpsk1_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254aafd5f671a619fdf23e78fdde0739a99 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846608923bb663020fcbd98f46f96b19838e msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=14e6e930733e777341e6bb7ec522f24f7aff05b125bf49d45b5150d2c8eee8 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=39a6c784e7e5f91d33ba6200a4bfb333e9e5d5974e89b8c92f7cca58641e98 handshake=Noise_KKpsk2_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254b612c908afa3994b259f7bbe6f61d48b msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484660200b1bebc05ec930091302b462ee495 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=1ee2a40d2d547aa1ecff9085d876d61bef6d5faa010db3e983313e28a84176 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=022620f1e6e067f7af42f407df7b37bfe24da7a7d79d91f3d3278bee00809f handshake=Noise_KK_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625439201e9eaf437b4be19be0e1fd46345e956541b7a79bedfc0a44 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484669d683ff6a052688a4bf5d08f5e907b60839eaf900ab19faff7b3 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=0dc5775f180ebbca24ba2dbedf7df763974789fffe201a7158f92c61c21e56 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=94573c8b800345c65607ec7bd2244bcd871c8e73247b6835ad35334257460c handshake=Noise_KKpsk0_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c7d83c70d4f86e56a84f27bf60c3bd52c62f0ee0b8dd9fc54d94 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484662d99936cb484650093346699bf1d8c0806c839532d2d8ab258d1 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=cb7d802310849d2cbcb2bf628d5b5be8694cff1cd9d9fe4d88270315550664 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=8c51f3b2a7bdef2910114236378b9d97d5b0a5054f3e6e0b93d9ba1439a314 handshake=Noise_KKpsk1_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625428bddcbf220404e1f3342045d5a40b989d199aea6a10b95443af msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466b6be75c4a8160a18b20ed33cc111a2da1ba4ad020106b496a765 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=14e6e930733e777341e6bb7ec522f24f7aff05b125bf49d45b5150d2c8eee8 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=39a6c784e7e5f91d33ba6200a4bfb333e9e5d5974e89b8c92f7cca58641e98 handshake=Noise_KKpsk2_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254dcbb401e89f43c8af94bc27709f8e7ea9d2baeacbe96f51e4d92 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466766cf40c486fe6860ad4ed44c066c8102966ab34d3e295b04ebe msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=1ee2a40d2d547aa1ecff9085d876d61bef6d5faa010db3e983313e28a84176 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=022620f1e6e067f7af42f407df7b37bfe24da7a7d79d91f3d3278bee00809f handshake=Noise_NX_25519_ChaChaPoly_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846646b94b876aef590a75654b6ad3759d4a2b887f24780015b9f52dce3318747d1421273ee37fab11ec0e19b97e016019eba398fd0234f4f397c37869498760e015 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=b5d17fa3d357b71df323fb36fe9468c8b8231d52687d3ab34e943d5176559f msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=9604b7d4aeb5d2d669004203e5ea36a496185d60aa484d843de5ce6504fcf2 handshake=Noise_NXpsk0_25519_ChaChaPoly_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625486484f9dc39cfcb069ca0a6b4fb53898 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466073c7b8893efddc83a6550268f1f2b58b810514f8ceb8839db90f8bd9c2d88e8839bdfbf351f047acabb381fb6432cc1098d42a95e5226dd40e64b67fa0d021f msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=b29d746b8d07a50fb43cde476703b870b5d9ef75e760dbb38548ff5449b74b msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=575261f1aece9f5960ed5e51ecafb480adef5c1b681509cc73270b63b0cc58 handshake=Noise_NXpsk1_25519_ChaChaPoly_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254b9f6b397b7e8f8dc1bc7e73b0c61286f msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466df854f551297c8c948841769640157bb0a68e959679f8956f3f078956be2c39c8de3427a96c0db5628e54857e7e316efc2d4ea29d8ecd50c31bd439f99a75736 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=d1dcb9b1e4dbba2386624a124bb1539e391e890c463a8940127ae765eb6aee msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=6334f69a2c9bcf6c7c1aff16f653da4b241ce641ebb859f456923670bd0c35 handshake=Noise_NXpsk2_25519_ChaChaPoly_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662547bc9eeadef9d1cd0dbc4a06e004c06b6 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466e758b813c78910a7246ba02fa2bf78f1f91df195e41d33fd94c03e51aa35750983a79f279c5845431d6ec30e9122d07d1b1a2f219ef8ff8fe043ca9e6e8e0f2e msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=e8e98a23dc6de8edee0529f80f7d14be0774f42c6d90fbc56d0d5d27b9c207 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=9de92b1e88a0cb7794854160cae0f948c366287194e571c8e0922554cb78bb handshake=Noise_NX_25519_ChaChaPoly_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846646b94b876aef590a75654b6ad3759d4a2b887f24780015b9f52dce3318747d14fe963b90ba2e278d62c50e22832a691765f20777ea751a010257b1616a6de3043e332e8e891e5d4afdeb msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=b5d17fa3d357b71df323fb36fe9468c8b8231d52687d3ab34e943d5176559f msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=9604b7d4aeb5d2d669004203e5ea36a496185d60aa484d843de5ce6504fcf2 handshake=Noise_NXpsk0_25519_ChaChaPoly_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541b57ff52600948c125f4a5c4d387d7cef809d8036fd40ed2e108 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466073c7b8893efddc83a6550268f1f2b58b810514f8ceb8839db90f8bd9c2d88e8b4a4972b01bd3a29057bd6f1e9e5b90570f6cb66d26bb6164e544dc248a26347b3c7f87d473ee01ba434 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=b29d746b8d07a50fb43cde476703b870b5d9ef75e760dbb38548ff5449b74b msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=575261f1aece9f5960ed5e51ecafb480adef5c1b681509cc73270b63b0cc58 handshake=Noise_NXpsk1_25519_ChaChaPoly_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254f512badfe5247731af42e55b1324f361c190926302ffdbc1eef7 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466df854f551297c8c948841769640157bb0a68e959679f8956f3f078956be2c39c940b3d894e4d2f72db33c47e6355d445f4b4456e5d2ea966b4bf8bcdb5dfe2c29aa68488b3f82d5526d7 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=d1dcb9b1e4dbba2386624a124bb1539e391e890c463a8940127ae765eb6aee msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=6334f69a2c9bcf6c7c1aff16f653da4b241ce641ebb859f456923670bd0c35 handshake=Noise_NXpsk2_25519_ChaChaPoly_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662547664a776a6da240a65ab7b2c75ed4cd21f507d1d609e65f11a74 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466e758b813c78910a7246ba02fa2bf78f1f91df195e41d33fd94c03e51aa357509868f2beb823e19c97840ee2171198d4c02d416c7ca47cee015daa374cc9074a2c53a48a516d5f467572b msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=e8e98a23dc6de8edee0529f80f7d14be0774f42c6d90fbc56d0d5d27b9c207 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=9de92b1e88a0cb7794854160cae0f948c366287194e571c8e0922554cb78bb handshake=Noise_NX_25519_ChaChaPoly_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846646b94b876aef590a75654b6ad3759d4a2b887f24780015b9f52dce3318747d1480c897964b162ef9638256026c093979aa00d4334a90f1ec65206e5102364b7e msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=b5d17fa3d357b71df323fb36fe9468c8b8231d52687d3ab34e943d5176559f msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=9604b7d4aeb5d2d669004203e5ea36a496185d60aa484d843de5ce6504fcf2 handshake=Noise_NXpsk0_25519_ChaChaPoly_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548cc277e07714f923bddfbe134b7cdcb7 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466073c7b8893efddc83a6550268f1f2b58b810514f8ceb8839db90f8bd9c2d88e89d03c776cd7ec28d70e84e6c387ef70b0e46454c8b950550860815a2ee213171 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=b29d746b8d07a50fb43cde476703b870b5d9ef75e760dbb38548ff5449b74b msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=575261f1aece9f5960ed5e51ecafb480adef5c1b681509cc73270b63b0cc58 handshake=Noise_NXpsk1_25519_ChaChaPoly_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254aabe871c6705c33c5e6812e239569c08 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466df854f551297c8c948841769640157bb0a68e959679f8956f3f078956be2c39cd24b6200d5fbe33debec8cbb3a4a266b69ef965c80b1a345caac03508e6a462f msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=d1dcb9b1e4dbba2386624a124bb1539e391e890c463a8940127ae765eb6aee msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=6334f69a2c9bcf6c7c1aff16f653da4b241ce641ebb859f456923670bd0c35 handshake=Noise_NXpsk2_25519_ChaChaPoly_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662545fb3c95fcffb1e687a983bf52c73e46e msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466e758b813c78910a7246ba02fa2bf78f1f91df195e41d33fd94c03e51aa3575090102a531c19850c4c0a6e9e7831a97553a0c85ba8f73d9e895f7af081c5a2d20 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=e8e98a23dc6de8edee0529f80f7d14be0774f42c6d90fbc56d0d5d27b9c207 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=9de92b1e88a0cb7794854160cae0f948c366287194e571c8e0922554cb78bb handshake=Noise_NX_25519_ChaChaPoly_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846646b94b876aef590a75654b6ad3759d4a2b887f24780015b9f52dce3318747d14a02d1af836b904cdc2331de53846c36b65f20777ea751a010257af5106dbf27395fbb55e705de1c21894 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=b5d17fa3d357b71df323fb36fe9468c8b8231d52687d3ab34e943d5176559f msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=9604b7d4aeb5d2d669004203e5ea36a496185d60aa484d843de5ce6504fcf2 handshake=Noise_NXpsk0_25519_ChaChaPoly_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541b57ff52600948c125f44b02653596239ee0c152247266ab71ff msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466073c7b8893efddc83a6550268f1f2b58b810514f8ceb8839db90f8bd9c2d88e85de4226713c8a68e15e259379d0bf3c870f6cb66d26bb6164e54d4475c4f7b4f79f00db1d34e4897233a msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=b29d746b8d07a50fb43cde476703b870b5d9ef75e760dbb38548ff5449b74b msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=575261f1aece9f5960ed5e51ecafb480adef5c1b681509cc73270b63b0cc58 handshake=Noise_NXpsk1_25519_ChaChaPoly_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254f512badfe5247731af4236af5558ff1540b60219e82ed4fee868 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466df854f551297c8c948841769640157bb0a68e959679f8956f3f078956be2c39c385c53c43c3ffc2b5bbea33db14dbec3f4b4456e5d2ea966b4bfb56f3cb874d5c7b23b76b52ec0f9ac32 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=d1dcb9b1e4dbba2386624a124bb1539e391e890c463a8940127ae765eb6aee msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=6334f69a2c9bcf6c7c1aff16f653da4b241ce641ebb859f456923670bd0c35 handshake=Noise_NXpsk2_25519_ChaChaPoly_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662547664a776a6da240a65aba904f90d1eaa5f44454c7cb850438789 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466e758b813c78910a7246ba02fa2bf78f1f91df195e41d33fd94c03e51aa35750948e563125f88f23f662a24cab0ae857302d416c7ca47cee015dad0910b515661e0062e9f13e5bff3b05e msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=e8e98a23dc6de8edee0529f80f7d14be0774f42c6d90fbc56d0d5d27b9c207 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=9de92b1e88a0cb7794854160cae0f948c366287194e571c8e0922554cb78bb handshake=Noise_KX_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846698119b787fffa4ac2c31f25455c130cf4de25f7384a93535288b79d7da78ad57dcedde22e3c3bfbdd4123468b03f56acebb709800aaf11ff0a383891f7e13e7f msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=645d87cb21d68205c5d1d5ace656933772726dc15677fa66ecbb0d9e7c4a76 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=f5021dc910cb1c6c6c1789bc0e1383e616b8a0706ce7e8c9de0038b94c7ae3 handshake=Noise_KXpsk0_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625420c520dc8393601629a9a4b0442dde86 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466ff370f61dd7f82942851279f7749a086d1bf8d2975f632a8917f266aeb7a015ed99da110b6f09d00c39aad859dbca8df6235fbb88c5ef51a8e680b281421f61c msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=c7b22671faef802e2d77369ee735381ed398d69c460aaacf316284f3ef9aad msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=af44c5d5da5673e25de13a9f767e492ee14e50d7866252021d594b50de5482 handshake=Noise_KXpsk1_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254171daeee62ba0080fa7246ee5640d14a msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c234402484dec5e7c50aa677ecc860e1006ed5575482ccc537336b0c0810c9761e8591300938fc3dd8280a499b8effe7b0f575edc0525bb334884f1c5a7f8a5d msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=522cff6137e48e907204736ed64baeff2a255653a1f54cfc85c1fcb89a38e7 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=a0e5114517474c8aea753cd6286906b640d6504e446cc65840f91c2ae4ff2d handshake=Noise_KXpsk2_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625437cad4dcdeaad9e6c772f632ef0f0219 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484662fe9957e4a8cf74cd95f22436f4cf0e40492e620ecef46cd0927053bea29b9fc3a446d8a8476c205ad279277e78b42fa40ab44a17da0ea17c7bdc385c52156d3 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=a8c3c1697a1444f8aaf5c1f30f8f47fe5f2edc883495d0a5fa03b5be468105 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=272a63fdf5bc0dac82c112f669218e7c0f49708ce1c24fcc16eaec673c8ffb handshake=Noise_KX_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846698119b787fffa4ac2c31f25455c130cf4de25f7384a93535288b79d7da78ad576c29eb2fc4fc0373ed8cf04ebe98c88763f453e22f5bf4fea56930d1b112a72635a554fb65faa2ac41b7 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=645d87cb21d68205c5d1d5ace656933772726dc15677fa66ecbb0d9e7c4a76 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=f5021dc910cb1c6c6c1789bc0e1383e616b8a0706ce7e8c9de0038b94c7ae3 handshake=Noise_KXpsk0_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548c42693ab9b2b64f32e396a1c5c1cf40666e2447991b4301219a msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466ff370f61dd7f82942851279f7749a086d1bf8d2975f632a8917f266aeb7a015ed112c9698130c8f77715bb1606ee158a1bf0561b47f1fa3358fd7f873c8fb725b873f32a3a2b74818ad5 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=c7b22671faef802e2d77369ee735381ed398d69c460aaacf316284f3ef9aad msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=af44c5d5da5673e25de13a9f767e492ee14e50d7866252021d594b50de5482 handshake=Noise_KXpsk1_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625429641c04894b9a11f27d044ce0cd6700c86d74b6c6b2e0a36631 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c234402484dec5e7c50aa677ecc860e1006ed5575482ccc537336b0c0810c97614f780867dcfa660718c9445ddb0b18adb74ab7d4bb6da9bebc94b680fa2005464fb98609980ad19a71b msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=522cff6137e48e907204736ed64baeff2a255653a1f54cfc85c1fcb89a38e7 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=a0e5114517474c8aea753cd6286906b640d6504e446cc65840f91c2ae4ff2d handshake=Noise_KXpsk2_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662540a6409e4470fb6ff0e4814ec0d6311dcbdebc35784830d1fbed8 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484662fe9957e4a8cf74cd95f22436f4cf0e40492e620ecef46cd0927053bea29b9fcfdc326f3f799fa284adde53c57a64e92a31ea878b11cc8a07a211d9d1a425caf0a49fb0a54759b386248 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=a8c3c1697a1444f8aaf5c1f30f8f47fe5f2edc883495d0a5fa03b5be468105 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=272a63fdf5bc0dac82c112f669218e7c0f49708ce1c24fcc16eaec673c8ffb handshake=Noise_KX_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846698119b787fffa4ac2c31f25455c130cf4de25f7384a93535288b79d7da78ad57be7743fad001edc79215121d52d586527894eb7516dbd70d353c8174849e3fb7 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=645d87cb21d68205c5d1d5ace656933772726dc15677fa66ecbb0d9e7c4a76 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=f5021dc910cb1c6c6c1789bc0e1383e616b8a0706ce7e8c9de0038b94c7ae3 handshake=Noise_KXpsk0_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625447b7249372647d750def52e1c5e505de msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466ff370f61dd7f82942851279f7749a086d1bf8d2975f632a8917f266aeb7a015e37746122f2158189601b656f82a28272f471a98dd3e9cb92f15dcb31b2d61afe msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=c7b22671faef802e2d77369ee735381ed398d69c460aaacf316284f3ef9aad msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=af44c5d5da5673e25de13a9f767e492ee14e50d7866252021d594b50de5482 handshake=Noise_KXpsk1_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662549a46b6cc19675c81a7c17e59ae2fbb77 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c234402484dec5e7c50aa677ecc860e1006ed5575482ccc537336b0c0810c976a3e88fa64138fea30ee9b5dfb5f7edf054d75d4cb3788e22dc531cf95b5e2f48 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=522cff6137e48e907204736ed64baeff2a255653a1f54cfc85c1fcb89a38e7 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=a0e5114517474c8aea753cd6286906b640d6504e446cc65840f91c2ae4ff2d handshake=Noise_KXpsk2_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625419b10036434a604f7ad315181f250980 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484662fe9957e4a8cf74cd95f22436f4cf0e40492e620ecef46cd0927053bea29b9fc64f37ec0795f68ed37302d9790f1282a4e9570c27bc6fba150347584f533aa77 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=a8c3c1697a1444f8aaf5c1f30f8f47fe5f2edc883495d0a5fa03b5be468105 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=272a63fdf5bc0dac82c112f669218e7c0f49708ce1c24fcc16eaec673c8ffb handshake=Noise_KX_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846698119b787fffa4ac2c31f25455c130cf4de25f7384a93535288b79d7da78ad57d1ec426cdbfc40cc5b485727b8e8243463f453e22f5bf4fea56964b42c087e66e0d151039f27af53d4fd msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=645d87cb21d68205c5d1d5ace656933772726dc15677fa66ecbb0d9e7c4a76 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=f5021dc910cb1c6c6c1789bc0e1383e616b8a0706ce7e8c9de0038b94c7ae3 handshake=Noise_KXpsk0_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548c42693ab9b2b64f32e3c4cfe206c4b91682f9f8f6936fc9afbe msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466ff370f61dd7f82942851279f7749a086d1bf8d2975f632a8917f266aeb7a015ee7c5ca712002095e484838ae25fd75461bf0561b47f1fa3358fdf8e83366ddb4923b44739185cea05565 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=c7b22671faef802e2d77369ee735381ed398d69c460aaacf316284f3ef9aad msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=af44c5d5da5673e25de13a9f767e492ee14e50d7866252021d594b50de5482 handshake=Noise_KXpsk1_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625429641c04894b9a11f27da81cd77c9a037dcdb91e7d38713655de msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c234402484dec5e7c50aa677ecc860e1006ed5575482ccc537336b0c0810c9761e984ed70366c1429556ad81e7ffc621db74ab7d4bb6da9bebc94678f2c759019dd38f17f4672db5fe6b msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=522cff6137e48e907204736ed64baeff2a255653a1f54cfc85c1fcb89a38e7 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=a0e5114517474c8aea753cd6286906b640d6504e446cc65840f91c2ae4ff2d handshake=Noise_KXpsk2_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662540a6409e4470fb6ff0e4867ac27fa94e39def5fb9cff692b08053 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484662fe9957e4a8cf74cd95f22436f4cf0e40492e620ecef46cd0927053bea29b9fc80694fe3959f5da3630331671ddae3d5a31ea878b11cc8a07a219cbdbb73011e081a82623aefd7500ebb msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=a8c3c1697a1444f8aaf5c1f30f8f47fe5f2edc883495d0a5fa03b5be468105 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=272a63fdf5bc0dac82c112f669218e7c0f49708ce1c24fcc16eaec673c8ffb handshake=Noise_XN_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846629c447f1d9897b8983f6a3622b9c68fe msg_2_payload= msg_2_ciphertext=037099440bbf00ed48e8e128d88e1ef2306f1b6e68f27fa225aa4b712d77baf46f0739cd1a8302353862f0a47b0e0326ba6101e1defbff83190d7a9a5d6804ef msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=9c818555ad9a26b3635d18f4056dc23fbb91c3d3a7a0ec77b01ad01542bccc msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=5e55862d8ebce08d0f83f774fc665146e3de69dd2642884d8613c7a93fd698 handshake=Noise_XNpsk0_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254cb40ef0aeb7dd7bc5077878685c5d5c2 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466662ed487400777ba45d66cf3440a55f0 msg_2_payload= msg_2_ciphertext=8d8c26c8c2048e031c6315e24093d4ad18b7efff7595b086239c24068e3db491158bca797fa3d1cd50f571d9474b70a0e8f28e47668d42c7845f1f26ca01b513 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=899e34bc0ead03fba60e56cfd11cbb3790834e6d5c23a10dfa0b93acccc900 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=6e85b7d7a6c44fb89e92477ec4caf02ef9abaede5a43eb303676eb7dc4f6e9 handshake=Noise_XNpsk1_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254cedb8e556eabaa5203ac7a28c0b4e4c5 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484665b07ffa8c845133bf13d3121173e1bcc msg_2_payload= msg_2_ciphertext=77d0e47e4dbb723e616b6f24738e459ea8e98a574f6e59732204f0363e69879fa204c34f701074ac88a7230eb5bb640377590cc82ec8b0809bd3725523fbaf57 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=c651eedb26764976c359cd8f3b7e6c6cf61dec2a8e9e7cdabed1e0e5ae7cde msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=caf2c606303c4d12eddf43c5bb8330e86230cb2d8bab3dcf4eadd40776acc1 handshake=Noise_XNpsk2_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254aea85d73fe6523d3273aac24fa0e5d53 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466ecbcd4c6ef7f7346437007c3c8806348 msg_2_payload= msg_2_ciphertext=2c5a5be592acde69362c483d714504e4fb32031199e3b8e7c9052ce199b3b045c12ba87c6a67e96f8de387e729f342425dbfadf39264e46ef3e5f25f4e1f74c0 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=dd75543aed4fbaaa884e485c7f3f7847c2dd2c5dd6c669d81399bad151b357 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=aaf79ee8c46da36c2998983b081475ce0c55c22a2c03b6f5c36c6714ac589a handshake=Noise_XNpsk3_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254126f87830ce7792290f4bc27fe31e18f msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466db3adfc1817b0e0bc47050f0819a7466 msg_2_payload= msg_2_ciphertext=b009c459289fb3451ce340c21aefbeab59707c472c0b532e3758a1fdb21962b2d0a81254c169e20fbd5bdb89cfa3f70a1d1ca9b11bcaac5f3834bdf2ad356f02 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=76ec40c6107efb6f7a22addff790390d82eef906568d70ee8ad03d8bc70fe5 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=4d4e7a4916c6202c5c7d4cfc502fc7d26f5ad42c9a93023a07dc09e47297e7 handshake=Noise_XN_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466a14dd9325bc6f396704c351c6d783fbecc244a54327404ddafd9 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=037099440bbf00ed48e8e128d88e1ef2306f1b6e68f27fa225aa4b712d77baf4edf2cffd49eea54222e7ab2220acf3b59a894802e80e97ef1c968acf6dac24b595997fcfb560aca4ed67 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=9c818555ad9a26b3635d18f4056dc23fbb91c3d3a7a0ec77b01ad01542bccc msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=5e55862d8ebce08d0f83f774fc665146e3de69dd2642884d8613c7a93fd698 handshake=Noise_XNpsk0_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c66d55a16b9cb77895dc7098d55af8e40e8916d8d6a818367b4e msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466b78d0157146db12f98a9434b8402daab60240651f013edbeddbd msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=8d8c26c8c2048e031c6315e24093d4ad18b7efff7595b086239c24068e3db491f8dca2295ae4b6746a616e7b5ce038761ca387a1f28499c8efff252ccb4522e99e32ef4ef38e16d0a09e msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=899e34bc0ead03fba60e56cfd11cbb3790834e6d5c23a10dfa0b93acccc900 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=6e85b7d7a6c44fb89e92477ec4caf02ef9abaede5a43eb303676eb7dc4f6e9 handshake=Noise_XNpsk1_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625431ae431ebbf2fffee5c4f57d02c3f9bb6b86194e99431ccb2e78 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466b5554432a018960a5dde37d862e2213837997c77d9bc99d4ae00 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=77d0e47e4dbb723e616b6f24738e459ea8e98a574f6e59732204f0363e69879fe9339af66e60b3bc4ad0d76a2b361e608ad399d3f9c470db77081b15a7e8cd34345207714fc9c00567be msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=c651eedb26764976c359cd8f3b7e6c6cf61dec2a8e9e7cdabed1e0e5ae7cde msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=caf2c606303c4d12eddf43c5bb8330e86230cb2d8bab3dcf4eadd40776acc1 handshake=Noise_XNpsk2_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254d0fbe4d8c565b9a59d3664c055d51254e7a5c460f2b1d79b1512 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484665489a70f5e1b78b65e0e6276106d69d27c1703e5143194ab570b msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=2c5a5be592acde69362c483d714504e4fb32031199e3b8e7c9052ce199b3b04525aa23a3f117933aeb082d5a6afac8943f9258c2910cd02a610abd7cbb58b5134d2648a1e871a937d77e msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=dd75543aed4fbaaa884e485c7f3f7847c2dd2c5dd6c669d81399bad151b357 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=aaf79ee8c46da36c2998983b081475ce0c55c22a2c03b6f5c36c6714ac589a handshake=Noise_XNpsk3_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254736a9b818f8f6c3819ac393d6b7f7854db18caf10ce923e83f8e msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466b84cd00d3fb44ad35659ffa23a7536b54efc59aa2044b07586ad msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=b009c459289fb3451ce340c21aefbeab59707c472c0b532e3758a1fdb21962b27523093bcb2a3dfce853b494d6ea805a5fc329d60b8aee3304bec99837f50477fe78a4b351f61883d824 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=76ec40c6107efb6f7a22addff790390d82eef906568d70ee8ad03d8bc70fe5 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=4d4e7a4916c6202c5c7d4cfc502fc7d26f5ad42c9a93023a07dc09e47297e7 handshake=Noise_XN_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466fdd2b7bd566405af7fc55d1ea22eb9a0 msg_2_payload= msg_2_ciphertext=037099440bbf00ed48e8e128d88e1ef2306f1b6e68f27fa225aa4b712d77baf42d2aeaa369a2453ca4fac292728eb176f185485e89192e67e6533e3be6e62fd6 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=9c818555ad9a26b3635d18f4056dc23fbb91c3d3a7a0ec77b01ad01542bccc msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=5e55862d8ebce08d0f83f774fc665146e3de69dd2642884d8613c7a93fd698 handshake=Noise_XNpsk0_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254438d0cdbd30fa2a6212df592afa39463 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466f70c2b60d3681c4ae1464b219d601939 msg_2_payload= msg_2_ciphertext=8d8c26c8c2048e031c6315e24093d4ad18b7efff7595b086239c24068e3db491bd66a891f64d386afd67ae979156a33405ea115b17b0bcbbbb410662d5000700 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=899e34bc0ead03fba60e56cfd11cbb3790834e6d5c23a10dfa0b93acccc900 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=6e85b7d7a6c44fb89e92477ec4caf02ef9abaede5a43eb303676eb7dc4f6e9 handshake=Noise_XNpsk1_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548a5d22bc1f57918704666014d605651c msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846640f652850ce7973035f8662ede800b3d msg_2_payload= msg_2_ciphertext=77d0e47e4dbb723e616b6f24738e459ea8e98a574f6e59732204f0363e69879fefe52aedafb1eb16cd73b9bf018195ac6115f19155faf159940e8934c48fc3d2 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=c651eedb26764976c359cd8f3b7e6c6cf61dec2a8e9e7cdabed1e0e5ae7cde msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=caf2c606303c4d12eddf43c5bb8330e86230cb2d8bab3dcf4eadd40776acc1 handshake=Noise_XNpsk2_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625415541c87fdd7cc758cddf3d74585ddfd msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484662f44198fd9ebd0ef63b19c0a319d954e msg_2_payload= msg_2_ciphertext=2c5a5be592acde69362c483d714504e4fb32031199e3b8e7c9052ce199b3b04520cbdc05aa35762b015bcbe72ee32c53f88973ca7a77023b599f7c12fc177a49 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=dd75543aed4fbaaa884e485c7f3f7847c2dd2c5dd6c669d81399bad151b357 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=aaf79ee8c46da36c2998983b081475ce0c55c22a2c03b6f5c36c6714ac589a handshake=Noise_XNpsk3_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662543cd5f617b6935cd7c18512eb96cab112 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466b64a7ac6d3a4f90d88f77ecee3edfc23 msg_2_payload= msg_2_ciphertext=b009c459289fb3451ce340c21aefbeab59707c472c0b532e3758a1fdb21962b2f228fcc2420f9dd59b93ab17cd64307b10077ab83231601f42d55bf8b11d5eaf msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=76ec40c6107efb6f7a22addff790390d82eef906568d70ee8ad03d8bc70fe5 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=4d4e7a4916c6202c5c7d4cfc502fc7d26f5ad42c9a93023a07dc09e47297e7 handshake=Noise_XN_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466a14dd9325bc6f396704c83029bb8ee2c682ddefcc95ab27a5705 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=037099440bbf00ed48e8e128d88e1ef2306f1b6e68f27fa225aa4b712d77baf4f298f5dd39297c240ab2ea3bcf06a08d9a894802e80e97ef1c9692f95413dbbb7a274f5b3c8379785a73 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=9c818555ad9a26b3635d18f4056dc23fbb91c3d3a7a0ec77b01ad01542bccc msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=5e55862d8ebce08d0f83f774fc665146e3de69dd2642884d8613c7a93fd698 handshake=Noise_XNpsk0_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c66d55a16b9cb77895dc547b0a9dacd026081933e9a2f5ba3316 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466b78d0157146db12f98a92d0d04ad4f6bcf0eb10295eadb3ce68d msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=8d8c26c8c2048e031c6315e24093d4ad18b7efff7595b086239c24068e3db491ab26939a8b927dd8b6899c1ef8cd05681ca387a1f28499c8efffe90b8a20b0d0c5492cd30da15886983f msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=899e34bc0ead03fba60e56cfd11cbb3790834e6d5c23a10dfa0b93acccc900 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=6e85b7d7a6c44fb89e92477ec4caf02ef9abaede5a43eb303676eb7dc4f6e9 handshake=Noise_XNpsk1_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625431ae431ebbf2fffee5c46dc4fe2e28e420faeb5d7d6fdcd9fd1e msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466b5554432a018960a5ddea9dc4722dafccb155ccec727f7e117db msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=77d0e47e4dbb723e616b6f24738e459ea8e98a574f6e59732204f0363e69879fb33359c30072d3d679a758fafa47b4a88ad399d3f9c470db7708825d5a32cede80e83b39da876ebd32ec msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=c651eedb26764976c359cd8f3b7e6c6cf61dec2a8e9e7cdabed1e0e5ae7cde msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=caf2c606303c4d12eddf43c5bb8330e86230cb2d8bab3dcf4eadd40776acc1 handshake=Noise_XNpsk2_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254d0fbe4d8c565b9a59d36c37761f6baf2fadacb82f65cdcb0e7a0 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484665489a70f5e1b78b65e0ed210acf243c4cd719fe17329c873d089 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=2c5a5be592acde69362c483d714504e4fb32031199e3b8e7c9052ce199b3b0457cc90677431269e0be999225605d0e473f9258c2910cd02a610afb1a9d02f62b1a42252cc3490723e384 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=dd75543aed4fbaaa884e485c7f3f7847c2dd2c5dd6c669d81399bad151b357 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=aaf79ee8c46da36c2998983b081475ce0c55c22a2c03b6f5c36c6714ac589a handshake=Noise_XNpsk3_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254736a9b818f8f6c3819ac0ececbf4e29bd4ffb897c3d0f6ba0fb5 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466b84cd00d3fb44ad35659d39abc84ea30dc658b3e678aa780bd53 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=b009c459289fb3451ce340c21aefbeab59707c472c0b532e3758a1fdb21962b297cbe2138dce7b9a8078056e25c2ea8f5fc329d60b8aee3304be7e07903593cb5c9efad256bf8e06381c msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=76ec40c6107efb6f7a22addff790390d82eef906568d70ee8ad03d8bc70fe5 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=4d4e7a4916c6202c5c7d4cfc502fc7d26f5ad42c9a93023a07dc09e47297e7 handshake=Noise_IN_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548f40c5adb68f25624ae5b214ea767a6ec94d829d3d7b5e1ad1ba6f3e2138285f msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484666e3f19dc99a2257db910145fa6e54aef msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=9ccb684459ec247c656f7a9c582a018aac429546bdee1199a1ed61ba49fc64 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=39614a2f4324d2407d903c372a779b30fd32fae1c5b6d69cdc0877cae101ff handshake=Noise_INpsk0_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625471caa66028f64280a10cdb259a0f0ee1c59b656bb9366bd2a76f8e42a9bebed7872be750256a0ce3dd0b8d85daee1094b8ed982f1c2a6657ff978086d16874d4 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484661c71ad2acb743655448c1b44eb19eb7f msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=524b10cf461ef1f535017e250c8fe51471fb22093f7aef578485f282f7af0e msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=6d27cc209baae7deb036ff0c7c45a3c0c7b86d1949ff81570da6e319323c08 handshake=Noise_INpsk1_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541ce4cd9b7ed42c5afaac1903aa6b83bf2665bf49b278784bed2a8d8ca87f34402fdb485d8cfde58838035a57e1ba4e8da2957ac4c7de5d2725b56092d25a7177 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484660e1884abae5c79aec17fe6ba6b321f1c msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=9afced7a00a7d235716c18a3cd21737541e0ce919babee1b4106da009fd889 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=65783176595aba309742bfdf98f1c699ee18b65e091571ff41ef7f3e658b4d handshake=Noise_INpsk2_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662549138f71daf8a8ccad5990ffd2d892da9fbcf2b41c95e11f1d48ed3ade358c32f7ea8eeaabc9629b368b2e98e0f3733be7225d72099f7df6538e48a8c60dce748 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466f10361bb35702893ddbf2c2c632d849c msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=be487fd9db2f9d9dd8ecb6a2c071a8ebcf71e344d535ecb0376efc8890726d msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=e43bb8a33bdf3307795da4a4d99d691922794058217d4c4902cef80d1b94ed handshake=Noise_IN_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548f40c5adb68f25624ae5b214ea767a6ec94d829d3d7b5e1ad1ba6f3e2138285f746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466883df2067301b17472bc17c3aea78ff04f20412f5f100390fd79 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=9ccb684459ec247c656f7a9c582a018aac429546bdee1199a1ed61ba49fc64 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=39614a2f4324d2407d903c372a779b30fd32fae1c5b6d69cdc0877cae101ff handshake=Noise_INpsk0_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625471caa66028f64280a10cdb259a0f0ee1c59b656bb9366bd2a76f8e42a9bebed7872be750256a0ce3dd0b8d85daee109442a2e41e0634afc367f0ce923a70cf9bd6c4db73bb0a0803f10d msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484663536123ea26b1bfcf393c34e3298477c533893ebfc51cbf9193b msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=524b10cf461ef1f535017e250c8fe51471fb22093f7aef578485f282f7af0e msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=6d27cc209baae7deb036ff0c7c45a3c0c7b86d1949ff81570da6e319323c08 handshake=Noise_INpsk1_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541ce4cd9b7ed42c5afaac1903aa6b83bf2665bf49b278784bed2a8d8ca87f34402fdb485d8cfde58838035a57e1ba4e8d14e124433912c24fe0422740d71e57f17e357266751d7d99aba3 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484662fd0bf78bd69757b645a2d07e6a5fe7582a47bdfba1bbcb3cacc msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=9afced7a00a7d235716c18a3cd21737541e0ce919babee1b4106da009fd889 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=65783176595aba309742bfdf98f1c699ee18b65e091571ff41ef7f3e658b4d handshake=Noise_INpsk2_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662549138f71daf8a8ccad5990ffd2d892da9fbcf2b41c95e11f1d48ed3ade358c32f7ea8eeaabc9629b368b2e98e0f3733bede18b3b48a6276edf76a81785394b60e6d181d0b55147e05997d msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484667e3677d51882a717bfafeb6e28ceb9957567363ba37c8a809db0 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=be487fd9db2f9d9dd8ecb6a2c071a8ebcf71e344d535ecb0376efc8890726d msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=e43bb8a33bdf3307795da4a4d99d691922794058217d4c4902cef80d1b94ed handshake=Noise_IN_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548f40c5adb68f25624ae5b214ea767a6ec94d829d3d7b5e1ad1ba6f3e2138285f msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484663030d12e83fc1c593b562909667508fb msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=9ccb684459ec247c656f7a9c582a018aac429546bdee1199a1ed61ba49fc64 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=39614a2f4324d2407d903c372a779b30fd32fae1c5b6d69cdc0877cae101ff handshake=Noise_INpsk0_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625471caa66028f64280a10cdb259a0f0ee1c59b656bb9366bd2a76f8e42a9bebed7305e7a3c409dd4ba92d3fc3f3f8d763c46d6344acf2941446c9812a1286cb04d msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484666d7c1191cd68a34ba4b64c5e58c972a0 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=524b10cf461ef1f535017e250c8fe51471fb22093f7aef578485f282f7af0e msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=6d27cc209baae7deb036ff0c7c45a3c0c7b86d1949ff81570da6e319323c08 handshake=Noise_INpsk1_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541ce4cd9b7ed42c5afaac1903aa6b83bf2665bf49b278784bed2a8d8ca87f3440ed8d78ab07ed6b569d0fc538be2a8220c6b583f1bffa1acc148370953f45cd11 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846621ddef7c2f3b01b8748714bdab2937fd msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=9afced7a00a7d235716c18a3cd21737541e0ce919babee1b4106da009fd889 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=65783176595aba309742bfdf98f1c699ee18b65e091571ff41ef7f3e658b4d handshake=Noise_INpsk2_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662549138f71daf8a8ccad5990ffd2d892da9fbcf2b41c95e11f1d48ed3ade358c32fcd3bed0595f69641adbfdd57ab1dc085a124a2b362fb05d05f1e655d15fa290f msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484664a4abe3680fc325b700f59d5c46985d1 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=be487fd9db2f9d9dd8ecb6a2c071a8ebcf71e344d535ecb0376efc8890726d msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=e43bb8a33bdf3307795da4a4d99d691922794058217d4c4902cef80d1b94ed handshake=Noise_IN_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548f40c5adb68f25624ae5b214ea767a6ec94d829d3d7b5e1ad1ba6f3e2138285f746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466883df2067301b17472bc62ad68cabba7bc80654d521b7a892865 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=9ccb684459ec247c656f7a9c582a018aac429546bdee1199a1ed61ba49fc64 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=39614a2f4324d2407d903c372a779b30fd32fae1c5b6d69cdc0877cae101ff handshake=Noise_INpsk0_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625471caa66028f64280a10cdb259a0f0ee1c59b656bb9366bd2a76f8e42a9bebed7305e7a3c409dd4ba92d3fc3f3f8d763c42a2e41e0634afc367f0dde3a61bd4a359193386bca6e46e72b1 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484663536123ea26b1bfcf393b8cca304c5aa1b4646aad82de257ebcf msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=524b10cf461ef1f535017e250c8fe51471fb22093f7aef578485f282f7af0e msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=6d27cc209baae7deb036ff0c7c45a3c0c7b86d1949ff81570da6e319323c08 handshake=Noise_INpsk1_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541ce4cd9b7ed42c5afaac1903aa6b83bf2665bf49b278784bed2a8d8ca87f3440ed8d78ab07ed6b569d0fc538be2a822014e124433912c24fe042705ce2c0d3705e137ee0734f70240170 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484662fd0bf78bd69757b645ad82bb4ce6c5bab13a549bfe52cdc2135 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=9afced7a00a7d235716c18a3cd21737541e0ce919babee1b4106da009fd889 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=65783176595aba309742bfdf98f1c699ee18b65e091571ff41ef7f3e658b4d handshake=Noise_INpsk2_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662549138f71daf8a8ccad5990ffd2d892da9fbcf2b41c95e11f1d48ed3ade358c32fcd3bed0595f69641adbfdd57ab1dc085de18b3b48a6276edf76ae73f5ad4478d00547bf6d0cf9f6a4121 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484667e3677d51882a717bfaf6fa3e9f062a27f45029aa7e50a76aa13 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=be487fd9db2f9d9dd8ecb6a2c071a8ebcf71e344d535ecb0376efc8890726d msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=e43bb8a33bdf3307795da4a4d99d691922794058217d4c4902cef80d1b94ed handshake=Noise_XK_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254808088fc0cc85acaa69a883a6b10211a msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466286fbb8efb3a91d14bf3df8a8558e549 msg_2_payload= msg_2_ciphertext=eb0b6ca5591599c72f921ad0ee2f37097eb0ff39f6d0b68a2db79458821fa52e94b656504f3b4b0b18ac3fb1621728400aff3211b974726a9a12b35dfc30d1fb msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=ee724c997ff942b0191c1e6f5dd0b63dd2dcdddbe740adc75cbe972e6e817f msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=1062ec47c7b6feeedcf8a18eca1349f029c9e101ce51063070050e22b42459 handshake=Noise_XKpsk0_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662549a21cfbb9f17fa94ba7f0772b63bfd04 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484667497196f76f843d812307b6e089bd401 msg_2_payload= msg_2_ciphertext=917f0f36d76ff8028268bd926d6386e350b2f199ca77092c2426a264fb27e6de6720440ea0d07d2f6db823d03b00178e002b4eb9e68e18c6bf602ba2f95631ce msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=ece23a617f504b3555121ff562b205ddc2f7f7bce45500f4c4754f3c13b37f msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=523dc14e40b73b52c0383053ae49138119ed42714c9bb554f01090708218f5 handshake=Noise_XKpsk1_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662545fc5fd96bdd2ee25cbd02439e074689c msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484666e8ddad12bc56173163ea9ff4442e7d6 msg_2_payload= msg_2_ciphertext=da322a93e2ace2fb5424e6105985a4fb09cc20e95dea52a6871c20a5f0630e00b00d58799260c01562b7c62a16c5540facfad1e8a3876299cc921579b2525925 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=3d0d4a2d2dc5e9718cf69433752c64f55741eb64656f0cadc04fd0c0e3dfb1 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=f25107eb349768fddc230bcb47918d0dbef1e9dd0441a8b5fd47ee3db5be24 handshake=Noise_XKpsk2_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662546ebbf33e299ae9c4d3ecdadc5d8e81f1 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466abbff32c51bb4b66b1ef2a158c4c9be1 msg_2_payload= msg_2_ciphertext=b0a26ddc196850030b2daea0618577de52cd4b1f96707c49a36c7eaf9bf1bc34f87fea270ff9864d9bd971fa4f5a703d5d0eb7bdb0335875617837d3b4c07c6a msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=6213b458869a66251d0fc561e406fe4053d82027e1178b7927f06911ec3a5c msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=3c70914788bc2c254e99114ae697f665d34346627857042c0594027ea4d0a6 handshake=Noise_XKpsk3_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548f1b593f13b4cd41cea65b28e468b0b3 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466712b4787510ebbf87c665cb9e83ff555 msg_2_payload= msg_2_ciphertext=cb3ddcf291a8c6b1af42ad1562902f60b3e7e51aa0f6343391e32e745e1169e751ab42db60d7551e53009c4af681fce89c0305248e2b5de621e3d3540e18c992 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=88c083dea66b4e394e6eb1a2be53b312843d8ca646a33ccfbb3ed35b3daa53 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=6732c169f023972e0e83c494bdb771ab5ba60fe609610da42d8fd752cee3aa handshake=Noise_XK_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254513029d2b4b8b9fe5f9f31b454bddd12afca1145e94ba04df016 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466952886df4d27c408e437cfe25cdf30274e59b83f527df211d907 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=eb0b6ca5591599c72f921ad0ee2f37097eb0ff39f6d0b68a2db79458821fa52e6ea3fc0ebc929c08541fa3d84ba852dec9476064b9a9203e8e3fe3834bc45201e24e6b1c19f0039bd0a3 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=ee724c997ff942b0191c1e6f5dd0b63dd2dcdddbe740adc75cbe972e6e817f msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=1062ec47c7b6feeedcf8a18eca1349f029c9e101ce51063070050e22b42459 handshake=Noise_XKpsk0_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662547b59e69f28ee958ea6ec286d88a478df18c37c290409b2f305fc msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846655be0dd1239ef6aacc00e2ce0033ef9570ae5b1cffdb3d9d3665 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=917f0f36d76ff8028268bd926d6386e350b2f199ca77092c2426a264fb27e6def31d422a36ba3e3b6347f914a24ebf9e92483ea0ae34710f38b31b7585040107da201115c7f61909ec55 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=ece23a617f504b3555121ff562b205ddc2f7f7bce45500f4c4754f3c13b37f msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=523dc14e40b73b52c0383053ae49138119ed42714c9bb554f01090708218f5 handshake=Noise_XKpsk1_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625488a0b01ef66d73b2fb0a07321d83f1680059c05be6fc73edc288 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846628eb3b4c42ce0e4b53d9eb540dbff9cff29fad9648742f88b0e1 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=da322a93e2ace2fb5424e6105985a4fb09cc20e95dea52a6871c20a5f0630e000afa05043632f4e6947eb243c2f4cabe10ec74c7fc4899c810657c6bb56e2fecbe312e445a29caf8f322 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=3d0d4a2d2dc5e9718cf69433752c64f55741eb64656f0cadc04fd0c0e3dfb1 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=f25107eb349768fddc230bcb47918d0dbef1e9dd0441a8b5fd47ee3db5be24 handshake=Noise_XKpsk2_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c3c1632d409d0c434982a274e3c5fb542081635f8a21000e4c9d msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466cf994581db893a145c65da8ae390d2ec36b8710553712ff8eec1 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=b0a26ddc196850030b2daea0618577de52cd4b1f96707c49a36c7eaf9bf1bc34b54b17adec69bae75235275b00362611dc862adcd710a1c7224b3f630b4b4c849e193738a6bdc24c4b5e msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=6213b458869a66251d0fc561e406fe4053d82027e1178b7927f06911ec3a5c msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=3c70914788bc2c254e99114ae697f665d34346627857042c0594027ea4d0a6 handshake=Noise_XKpsk3_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254800450454355b9d11d4bdb67aaee48e1576aab47af4286a78e66 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466d0a4fd69aab20cdafe7c937b951e8590276356a5453e89e5da1d msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=cb3ddcf291a8c6b1af42ad1562902f60b3e7e51aa0f6343391e32e745e1169e78d6ae76bedbaa0e2ec33f27dd63397beba6045f20fae93dfb40afbbf27dc991c624bacb8d90acdf47b60 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=88c083dea66b4e394e6eb1a2be53b312843d8ca646a33ccfbb3ed35b3daa53 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=6732c169f023972e0e83c494bdb771ab5ba60fe609610da42d8fd752cee3aa handshake=Noise_XK_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625412016aff62eaff30a75a5c0c2d0042a0 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466fa6d908607c010a4e27f592aa3e77db0 msg_2_payload= msg_2_ciphertext=eb0b6ca5591599c72f921ad0ee2f37097eb0ff39f6d0b68a2db79458821fa52e15a80d50e518ff27cdad772e19a43917bb69687b02856c53a828c04ed8ff57b4 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=ee724c997ff942b0191c1e6f5dd0b63dd2dcdddbe740adc75cbe972e6e817f msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=1062ec47c7b6feeedcf8a18eca1349f029c9e101ce51063070050e22b42459 handshake=Noise_XKpsk0_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662545024b4b7b169e3f9e56a785643af64db msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466f8734d1674650e362c81c6c774638696 msg_2_payload= msg_2_ciphertext=917f0f36d76ff8028268bd926d6386e350b2f199ca77092c2426a264fb27e6de6d0830f27670e86e0517c7b7e3fefb0681306e548e88b9a1879970348fca1541 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=ece23a617f504b3555121ff562b205ddc2f7f7bce45500f4c4754f3c13b37f msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=523dc14e40b73b52c0383053ae49138119ed42714c9bb554f01090708218f5 handshake=Noise_XKpsk1_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662547667b794a46490293262417fee000006 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484665ba9cdd7eab34372accb31399188da5b msg_2_payload= msg_2_ciphertext=da322a93e2ace2fb5424e6105985a4fb09cc20e95dea52a6871c20a5f0630e0042e34692374f7e53b893d8509eb32f7fd8b548fc1e3a5a90eebdb7ccf6bff0a5 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=3d0d4a2d2dc5e9718cf69433752c64f55741eb64656f0cadc04fd0c0e3dfb1 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=f25107eb349768fddc230bcb47918d0dbef1e9dd0441a8b5fd47ee3db5be24 handshake=Noise_XKpsk2_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662544eca8fcfb3e6e255215ded2bcd48afbf msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846603fddfe0f6ae65fa28cc181cd81faeee msg_2_payload= msg_2_ciphertext=b0a26ddc196850030b2daea0618577de52cd4b1f96707c49a36c7eaf9bf1bc34b1202b8bffd5ed08e5de027c5b84a7158fe52e8f576bb6882f758bacd60f3c83 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=6213b458869a66251d0fc561e406fe4053d82027e1178b7927f06911ec3a5c msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=3c70914788bc2c254e99114ae697f665d34346627857042c0594027ea4d0a6 handshake=Noise_XKpsk3_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625440285ac3362d63eb8ced07422fb6cf25 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846681421bc40d383c443bc45dd96b4ef485 msg_2_payload= msg_2_ciphertext=cb3ddcf291a8c6b1af42ad1562902f60b3e7e51aa0f6343391e32e745e1169e7ebdfbe67365243ee68f0efb0d5717e1b69daddf1284769341892aa3a4710b976 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=88c083dea66b4e394e6eb1a2be53b312843d8ca646a33ccfbb3ed35b3daa53 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=6732c169f023972e0e83c494bdb771ab5ba60fe609610da42d8fd752cee3aa handshake=Noise_XK_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254513029d2b4b8b9fe5f9ff602b54bab72e3edd208f6f0abed927b msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466952886df4d27c408e437397eab406b5d57694f8cae1bfa84a7dd msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=eb0b6ca5591599c72f921ad0ee2f37097eb0ff39f6d0b68a2db79458821fa52e06b2be633d0635b9d56d487202e4204ac9476064b9a9203e8e3f70353e310a53186c458753fda9a9ea81 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=ee724c997ff942b0191c1e6f5dd0b63dd2dcdddbe740adc75cbe972e6e817f msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=1062ec47c7b6feeedcf8a18eca1349f029c9e101ce51063070050e22b42459 handshake=Noise_XKpsk0_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662547b59e69f28ee958ea6ece01b095ca48313f07a8deb1640007c88 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846655be0dd1239ef6aacc00d4f1a20d1b426381eadad2ad8428dfe4 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=917f0f36d76ff8028268bd926d6386e350b2f199ca77092c2426a264fb27e6de0d2bfdd01ecd6c54321b7e27497573ed92483ea0ae34710f38b335d4132f6bafcccfaf6c60009cba4ea3 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=ece23a617f504b3555121ff562b205ddc2f7f7bce45500f4c4754f3c13b37f msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=523dc14e40b73b52c0383053ae49138119ed42714c9bb554f01090708218f5 handshake=Noise_XKpsk1_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625488a0b01ef66d73b2fb0a89359dbca1e95a546531ed9387f06e59 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846628eb3b4c42ce0e4b53d9622ca4eca51b9978eb0ae4617fe43b7b msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=da322a93e2ace2fb5424e6105985a4fb09cc20e95dea52a6871c20a5f0630e00dd49f57036508780d776a79187d98f9d10ec74c7fc4899c8106536d6a7ec0636185ac76582c8fbef94a3 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=3d0d4a2d2dc5e9718cf69433752c64f55741eb64656f0cadc04fd0c0e3dfb1 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=f25107eb349768fddc230bcb47918d0dbef1e9dd0441a8b5fd47ee3db5be24 handshake=Noise_XKpsk2_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c3c1632d409d0c43498218e8e9e0d575ff260499ad54f0342435 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466cf994581db893a145c65a7c7d45d5a2b7d10e3ebaa4c84fef736 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=b0a26ddc196850030b2daea0618577de52cd4b1f96707c49a36c7eaf9bf1bc3443eef8be3e6057a7169b08e1a0054fe2dc862adcd710a1c7224b58933c565f2d339fe7bb2b5d1e53d1cd msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=6213b458869a66251d0fc561e406fe4053d82027e1178b7927f06911ec3a5c msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=3c70914788bc2c254e99114ae697f665d34346627857042c0594027ea4d0a6 handshake=Noise_XKpsk3_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254800450454355b9d11d4b81a05f9e0cbfc6e5086837041b04d043 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466d0a4fd69aab20cdafe7cc5e114e8ebd132e1a2afca39d3c1729c msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=cb3ddcf291a8c6b1af42ad1562902f60b3e7e51aa0f6343391e32e745e1169e76a3b6eadf256a4f2e5c0eff96d18d97aba6045f20fae93dfb40aa1374c50db5b917c4e6bab8c41f9b9ac msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=88c083dea66b4e394e6eb1a2be53b312843d8ca646a33ccfbb3ed35b3daa53 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=6732c169f023972e0e83c494bdb771ab5ba60fe609610da42d8fd752cee3aa handshake=Noise_IK_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662549e5f11977b6b44e9245c67330f3e51de6fc540b9b740f21673e7eb5dccadbfb1208a0530f27f8b630c81e3cf775e9d2b632ab3ac64125105a17a6a7173315506 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484660cc75863504a0d3eef43e5ea39e1a698 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=17185d8a376d58b3119840b99b784085186a622ba32b1ede9c99f2751509e9 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=db1d6ba1f8fad6b62e7d3f421a413389d609e5ec601b65e5bfa110c7f0c733 handshake=Noise_IKpsk0_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254ba236852ef2b3162575105b0b33d4c6dd100842740d0c9be12622a57ee373e2cf63cca3e01b4a6ed0db101472ee9d420b0bbb911a0cc3bd5e7972ea44fecee8b msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484665322064e503c875ffec58103e63c3a86 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=c01ee1d733b16ed26b81d16bcbdfefe0583f6bb7b917d205ea6590b6e34b1c msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=cbb884cb5c480ba6f73efa28c9c17633385e48355918a67989a5171e51e85b handshake=Noise_IKpsk1_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625458f289ffe3283f14bdf492ec8bdb979b13c98eb5d07a8f7eb9d121303d8d200f0a159e84f04aec162883d80f6ee185e80cdc9aa5d86d9bcc163cc0033b8d33e2 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484668c918bfc3507fd1385ab27e3a4dba0a0 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=64fd4d007240834917ec1660292c5605562acd3ce322544f477dd84c47aadc msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=49969eca3ef61dd7c049da3a2b2f4170475d452e81ee61cf637e5c2e17905d handshake=Noise_IKpsk2_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254ce891740b98a5f5c16f135436cb725e1fe702acd4c5a1d5cb4d2c528d4574b93b59172cabb2f8a6274486923c7d6693be2d801740a3b06edd5a0278816d3bfbd msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466cc8e335580292058f46ced567b9ff86a msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=c53f53e2030e27fb57f8cda4c39ed1da26bf58966b52d7dc404876539062bd msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=6f28b6a586437b0c6f7a3571b9267a65f6e3bab0fee53e71037355fa3a4008 handshake=Noise_IK_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662549e5f11977b6b44e9245c67330f3e51de6fc540b9b740f21673e7eb5dccadbfb1208a0530f27f8b630c81e3cf775e9d2bb312954cec80357f078868c439a5fd9b464f38adf2f6e56a0f5a msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466b65172025a9545030cfab48a24e4de47e0f9574129c6458722cb msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=17185d8a376d58b3119840b99b784085186a622ba32b1ede9c99f2751509e9 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=db1d6ba1f8fad6b62e7d3f421a413389d609e5ec601b65e5bfa110c7f0c733 handshake=Noise_IKpsk0_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254ba236852ef2b3162575105b0b33d4c6dd100842740d0c9be12622a57ee373e2cf63cca3e01b4a6ed0db101472ee9d420f3f538a30d6559cac7dd4a4f14a567547f6d6a98e2233bc08a3b msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846690b49233385ad8dfcc23a7eaf53e993748e215d961aaa6aee8e6 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=c01ee1d733b16ed26b81d16bcbdfefe0583f6bb7b917d205ea6590b6e34b1c msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=cbb884cb5c480ba6f73efa28c9c17633385e48355918a67989a5171e51e85b handshake=Noise_IKpsk1_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625458f289ffe3283f14bdf492ec8bdb979b13c98eb5d07a8f7eb9d121303d8d200f0a159e84f04aec162883d80f6ee185e8cb7e0fa59d5f1b87833688fba8e81572e05bcc5347dc4754e004 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484662e7aec10cef4cebc40f678fd4b38db7f49b542d3ed6061e099ea msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=64fd4d007240834917ec1660292c5605562acd3ce322544f477dd84c47aadc msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=49969eca3ef61dd7c049da3a2b2f4170475d452e81ee61cf637e5c2e17905d handshake=Noise_IKpsk2_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254ce891740b98a5f5c16f135436cb725e1fe702acd4c5a1d5cb4d2c528d4574b93b59172cabb2f8a6274486923c7d6693bee9fd1e8b3e88194ca3b46f2b2ed2549b5ca881c5ae0fcfa0b30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484664065db2bb1884c3e44120d9374fa0fa4cc695182408697948940 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=c53f53e2030e27fb57f8cda4c39ed1da26bf58966b52d7dc404876539062bd msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=6f28b6a586437b0c6f7a3571b9267a65f6e3bab0fee53e71037355fa3a4008 handshake=Noise_IK_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662549e5f11977b6b44e9245c67330f3e51de6fc540b9b740f21673e7eb5dccadbfb18620823a2dc5df3eef9552dbfa3eaef69c1c7e045b0905bce8961fb9dc3b9154 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846671319c9183c5b8207cbfd8af0063cdc7 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=17185d8a376d58b3119840b99b784085186a622ba32b1ede9c99f2751509e9 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=db1d6ba1f8fad6b62e7d3f421a413389d609e5ec601b65e5bfa110c7f0c733 handshake=Noise_IKpsk0_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254ba236852ef2b3162575105b0b33d4c6dd100842740d0c9be12622a57ee373e2c9090737e80f23255017e7412f0e35b41d3bb273dcb080bb680e05542b200ddf0 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484668ea7124d61b15a2af4db1649c7f5c67f msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=c01ee1d733b16ed26b81d16bcbdfefe0583f6bb7b917d205ea6590b6e34b1c msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=cbb884cb5c480ba6f73efa28c9c17633385e48355918a67989a5171e51e85b handshake=Noise_IKpsk1_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625458f289ffe3283f14bdf492ec8bdb979b13c98eb5d07a8f7eb9d121303d8d200f16acadcde5e3e159322f07d637fb82466ffffcee8c135ff2d3468091ad1ac965 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484660a9c9ba7901c8cc2095933f61539ebaf msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=64fd4d007240834917ec1660292c5605562acd3ce322544f477dd84c47aadc msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=49969eca3ef61dd7c049da3a2b2f4170475d452e81ee61cf637e5c2e17905d handshake=Noise_IKpsk2_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254ce891740b98a5f5c16f135436cb725e1fe702acd4c5a1d5cb4d2c528d4574b9335f9e93f8bc1c9fe0bf9e671e91604472252ac533a0b7673a69e050fc6c555f9 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846625ce0bc015e15cc05f95114e8615e107 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=c53f53e2030e27fb57f8cda4c39ed1da26bf58966b52d7dc404876539062bd msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=6f28b6a586437b0c6f7a3571b9267a65f6e3bab0fee53e71037355fa3a4008 handshake=Noise_IK_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662549e5f11977b6b44e9245c67330f3e51de6fc540b9b740f21673e7eb5dccadbfb18620823a2dc5df3eef9552dbfa3eaef6b312954cec80357f07882a687c02e62bd6e56c8fe017f2463049 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466b65172025a9545030cfaaa2d22caa6cc27ccf97a1e6b683f6b7c msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=17185d8a376d58b3119840b99b784085186a622ba32b1ede9c99f2751509e9 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=db1d6ba1f8fad6b62e7d3f421a413389d609e5ec601b65e5bfa110c7f0c733 handshake=Noise_IKpsk0_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254ba236852ef2b3162575105b0b33d4c6dd100842740d0c9be12622a57ee373e2c9090737e80f23255017e7412f0e35b41f3f538a30d6559cac7dd68f4009e9b60995b9c26ef2ad7b301d1 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846690b49233385ad8dfcc23ec9268f5fbc7595e89a031ce59fa882f msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=c01ee1d733b16ed26b81d16bcbdfefe0583f6bb7b917d205ea6590b6e34b1c msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=cbb884cb5c480ba6f73efa28c9c17633385e48355918a67989a5171e51e85b handshake=Noise_IKpsk1_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625458f289ffe3283f14bdf492ec8bdb979b13c98eb5d07a8f7eb9d121303d8d200f16acadcde5e3e159322f07d637fb8246cb7e0fa59d5f1b8783366849fcc7d25b2490e6ea2b7cce88d13e msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484662e7aec10cef4cebc40f61a8390b590d6bb5e55e5aa8f45bda184 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=64fd4d007240834917ec1660292c5605562acd3ce322544f477dd84c47aadc msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=49969eca3ef61dd7c049da3a2b2f4170475d452e81ee61cf637e5c2e17905d handshake=Noise_IKpsk2_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254ce891740b98a5f5c16f135436cb725e1fe702acd4c5a1d5cb4d2c528d4574b9335f9e93f8bc1c9fe0bf9e671e9160447ee9fd1e8b3e88194ca3b7dd0c0f15d5ba12f1280b747e9755206 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484664065db2bb1884c3e44120e547598980a2e5918807a5273b89cd7 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=c53f53e2030e27fb57f8cda4c39ed1da26bf58966b52d7dc404876539062bd msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=6f28b6a586437b0c6f7a3571b9267a65f6e3bab0fee53e71037355fa3a4008 handshake=Noise_XX_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846692e5b8dda95b4ec55e42c2cbded11735474b3612a895298bcb02e8469353fe827273e4a7aadfc1aa32578b46bce2006fe1482f062e2f27e43ad23e67a304c030 msg_2_payload= msg_2_ciphertext=ac3087e2342498dfa6606faf700dc5782b9612bdbc8bbb67a87181baac2d693d2f8df70600534bcbd389bbbf733550ae3e7e9a78f80aafa70d6211640223800d msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=2dcb8503b438910b2a2ffcf242ef705e6cce2d25bd30444402427981ee2064 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=56d2ce5c1e7e28b7406b99aff512114313b811e17c0af6497baa906165ba31 handshake=Noise_XXpsk0_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254f2f462471c5d60ba0088de4eff15e53c msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466be325d2fad8902f6af1f3b2b5acc9eab588b638e7e6c2e488d433d28690843f2d911861dc176203f80dba4198ac1786a916a77181cb8c24178d9ec84f88f5d4e msg_2_payload= msg_2_ciphertext=1e65fa56a639797ffe77d0d2951c4e2b3ec3ff11878bc08d9d1907247b9b01ab58a8c21ea7a521466a81d82e0fc7b5a624bcbc25fd46682f7588ed21c5edb914 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=d38f1c0a508dd95e6a8a567c8931a8637bad28b91d9564bd9c8fa23deaa220 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=895cf67ef6bc4e9116cff01e1891ecfc3413847ff1aa6c81ff9caf5d917a7b handshake=Noise_XXpsk1_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254d54b25e517e5d9d9d1443c747c2b31d5 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484666dfab3251da0797a6fde63e3bfeca2f0f74fa7162dd3825426965c0f2a0fc90a5657879f6810cfc3709e05e9153b2ae7fdfe94a9d8b2da4c04e0500e8ea8b94a msg_2_payload= msg_2_ciphertext=4a7ae3d865ae62214d81c67bc6134402ddb479fabf4bbd95f70dcd744d48e91d8a9ab3aeff5a6a45eeb8476ece42c0e3c1023fb1af8e1670fba5eb5dbc1fb648 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=d3ec65abb14824f326728eef1a0d957839c2a31fcf8f6a8444c3ad12e92565 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=4bc899aa61919f501f103187883abc24ba96d80bb9152d4b04fd09763384f8 handshake=Noise_XXpsk2_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625440589b2466ae4b8ae6b6656661608de6 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484663ea4d8909862193d7f28ce230e8f8fdd52e2c7c32b59cc81b8c8b869025e7645ba40ad8ca10cfa1e971c4da023e7343d02a8c1c65b1d68eefae2f4714fc10f7b msg_2_payload= msg_2_ciphertext=e37f84e33bdb15ba63178cff0ea5946e4aa4f71e86ea0b3dd8e885baa63ead5591d0e50d96ad81a539e2ee63a5dec7710cc7e4dab085c993c022b961e3b500ce msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=337c476f38adead5eec91eb6e27edbedd33f5cf702e885c67b25e06fed6475 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=f7f94c1464b63d63b099af6faec4a3bbbf861b5bd04314135a5bb666d2e57a handshake=Noise_XXpsk3_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254a399eeb57fa150bf0903a5144931cfed msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466af613726ed79ba171d0ba959f0bafc5949f8e4279fa836af1dac74632da07426cfde6cd9c24984229cef63503e25d9720f21fcd6aeca15edc259b59d5dbde2be msg_2_payload= msg_2_ciphertext=435c3d4404fb904058992c956972c09b477b3d5465f8dfaf487205d7c8024e7a7fc6bb767df7acc8c6b2150a1a07c368f2dc33bea0ceb8c05fd775f32d85a0a5 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=ea30f606b3b7b47433ec08e91298daef7df94faae71de0c396f7a3b194ed78 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=f2d28fa9662bd3bc6486d0e2fc2376eca51a747e66357baedf1e36d3b9b804 handshake=Noise_XX_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846692e5b8dda95b4ec55e42c2cbded11735474b3612a895298bcb02e8469353fe8268dd0a1354f3b23c3da9b4f11e91e2f8d221c75462cbc2798cc0fa8e4cfe53cd1edc4717ec17d20245fd msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=ac3087e2342498dfa6606faf700dc5782b9612bdbc8bbb67a87181baac2d693d629aba6b7f84dd26889cc9605e02f2cb5a36853cf1f1ced5ddda5564922cc4ba1e5d7286a0b9794ef6f5 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=2dcb8503b438910b2a2ffcf242ef705e6cce2d25bd30444402427981ee2064 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=56d2ce5c1e7e28b7406b99aff512114313b811e17c0af6497baa906165ba31 handshake=Noise_XXpsk0_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254866d809eebe6c3d84a3f1d85990e9a886d6b0aca260582337b30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466be325d2fad8902f6af1f3b2b5acc9eab588b638e7e6c2e488d433d28690843f28a0cc0e544065513f76cdf148c3e1b87938775bd82c3a86e2267643e455d0cd71cc1053717bcab764e28 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=1e65fa56a639797ffe77d0d2951c4e2b3ec3ff11878bc08d9d1907247b9b01ab5c812d0fa094b7e823d8ad0c260f119d1350ee3e4725f68b581b3f2a51751ac34b9b9a8b8f6a7f811aab msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=d38f1c0a508dd95e6a8a567c8931a8637bad28b91d9564bd9c8fa23deaa220 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=895cf67ef6bc4e9116cff01e1891ecfc3413847ff1aa6c81ff9caf5d917a7b handshake=Noise_XXpsk1_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254542b41136533a8304a77a255707e1a2d8a823ed6c045fee9e548 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484666dfab3251da0797a6fde63e3bfeca2f0f74fa7162dd3825426965c0f2a0fc90ab99e5b81af6b8c0a448f4d1c2d79369223cac5251a120ab78a722e8f74107f28c718b5af7e4523d15d01 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=4a7ae3d865ae62214d81c67bc6134402ddb479fabf4bbd95f70dcd744d48e91df4b7bbf5ef4c57a0b340788a746ab69d32f2011af09a5b12c1466af4789c7b7b084f8a56786af64de04d msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=d3ec65abb14824f326728eef1a0d957839c2a31fcf8f6a8444c3ad12e92565 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=4bc899aa61919f501f103187883abc24ba96d80bb9152d4b04fd09763384f8 handshake=Noise_XXpsk2_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254da6c52ee1b045a9cfeb401e860c6f8dad9c4750c4a15b09958ef msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484663ea4d8909862193d7f28ce230e8f8fdd52e2c7c32b59cc81b8c8b869025e76457e2e64fcc610a96b70b4ef648b07d4437992e6627c6b6b97687f6315ae3f979f0b6ad6c4e8ce8ece2787 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=e37f84e33bdb15ba63178cff0ea5946e4aa4f71e86ea0b3dd8e885baa63ead559885db6405390f86a481ce9e6793d889cf8779569d616597b16fb3efef2f3436535accde8af36f5cf983 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=337c476f38adead5eec91eb6e27edbedd33f5cf702e885c67b25e06fed6475 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=f7f94c1464b63d63b099af6faec4a3bbbf861b5bd04314135a5bb666d2e57a handshake=Noise_XXpsk3_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254cd5279aefbfc171ce82b4ca5c1044ed8a6734a0de58708aa79b6 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466af613726ed79ba171d0ba959f0bafc5949f8e4279fa836af1dac74632da07426611a76229186c4cb7020d89b58290d9d5b5bc0b66a4c643d9ecf43a5bfe4bf1052483c506b154561e9c2 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=435c3d4404fb904058992c956972c09b477b3d5465f8dfaf487205d7c8024e7a8e896e684314ab8e896610a945dedb8366ac8fc47095844e8da0305964ea0cc5b74114a419fa1facd127 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=ea30f606b3b7b47433ec08e91298daef7df94faae71de0c396f7a3b194ed78 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=f2d28fa9662bd3bc6486d0e2fc2376eca51a747e66357baedf1e36d3b9b804 handshake=Noise_XX_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846692e5b8dda95b4ec55e42c2cbded11735474b3612a895298bcb02e8469353fe823d2f9b86e9a08534663b376f8eba4ce7bb56a4e82647d6c17a846c7ea69f9c70 msg_2_payload= msg_2_ciphertext=ac3087e2342498dfa6606faf700dc5782b9612bdbc8bbb67a87181baac2d693d73dccbe0d8c4858d1508ebdcb753a5e60f5622374a46e41efb00eba64f71113f msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=2dcb8503b438910b2a2ffcf242ef705e6cce2d25bd30444402427981ee2064 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=56d2ce5c1e7e28b7406b99aff512114313b811e17c0af6497baa906165ba31 handshake=Noise_XXpsk0_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254afe230e0e90c70cbc586925eab0f8afa msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466be325d2fad8902f6af1f3b2b5acc9eab588b638e7e6c2e488d433d28690843f2318f800a32467ae4ab2051e240291a1bd6993f00169a8ea675e5bb5cba5a139d msg_2_payload= msg_2_ciphertext=1e65fa56a639797ffe77d0d2951c4e2b3ec3ff11878bc08d9d1907247b9b01ab03f64171d19600f941ad6056814141f00c5b5d6d041e3474254413ee1bfd117f msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=d38f1c0a508dd95e6a8a567c8931a8637bad28b91d9564bd9c8fa23deaa220 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=895cf67ef6bc4e9116cff01e1891ecfc3413847ff1aa6c81ff9caf5d917a7b handshake=Noise_XXpsk1_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625435f58b36487f42de4284c58ba543921c msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484666dfab3251da0797a6fde63e3bfeca2f0f74fa7162dd3825426965c0f2a0fc90aab54d72f4e993321086d6f6159502b24510534eaf9fa26e099f93814480a7c00 msg_2_payload= msg_2_ciphertext=4a7ae3d865ae62214d81c67bc6134402ddb479fabf4bbd95f70dcd744d48e91dc2f7c8ba426fc407af6fcbdbefc136f348937198e636b5dfbabbdfbb9e2bcc4a msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=d3ec65abb14824f326728eef1a0d957839c2a31fcf8f6a8444c3ad12e92565 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=4bc899aa61919f501f103187883abc24ba96d80bb9152d4b04fd09763384f8 handshake=Noise_XXpsk2_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625420e4dc62070a9aebab2b6572e2ae4b98 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484663ea4d8909862193d7f28ce230e8f8fdd52e2c7c32b59cc81b8c8b869025e7645ee5f681862f0dec10f9dc8d8e96c07b155da7f7b101977ae1d19f12b407a34fb msg_2_payload= msg_2_ciphertext=e37f84e33bdb15ba63178cff0ea5946e4aa4f71e86ea0b3dd8e885baa63ead55940ca69900d62a3186db3105276b15f56ef7fd1c850ac561e7363a523d92ed6e msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=337c476f38adead5eec91eb6e27edbedd33f5cf702e885c67b25e06fed6475 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=f7f94c1464b63d63b099af6faec4a3bbbf861b5bd04314135a5bb666d2e57a handshake=Noise_XXpsk3_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254b7a040ac300959fe34bfe71e0d24f6a0 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466af613726ed79ba171d0ba959f0bafc5949f8e4279fa836af1dac74632da07426888d44c76f124e6bb39acc5176271a3e6319e1de8c126261dc7185d14cab1c5e msg_2_payload= msg_2_ciphertext=435c3d4404fb904058992c956972c09b477b3d5465f8dfaf487205d7c8024e7a91ab16e67d24b1fdef4dff4b9bf6c76fe01aa2da79da940839db82cf0c8dd98b msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=ea30f606b3b7b47433ec08e91298daef7df94faae71de0c396f7a3b194ed78 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=f2d28fa9662bd3bc6486d0e2fc2376eca51a747e66357baedf1e36d3b9b804 handshake=Noise_XX_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846692e5b8dda95b4ec55e42c2cbded11735474b3612a895298bcb02e8469353fe82b4cd9a14f8ead39d89dfbc1caa392541d221c75462cbc2798cc052f73a84342b5476620ae41849b8965c msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=ac3087e2342498dfa6606faf700dc5782b9612bdbc8bbb67a87181baac2d693d79ea79b6110288f4e89aae84921c40605a36853cf1f1ced5ddda854ea5ce29deb956bd1c54de796b357f msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=2dcb8503b438910b2a2ffcf242ef705e6cce2d25bd30444402427981ee2064 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=56d2ce5c1e7e28b7406b99aff512114313b811e17c0af6497baa906165ba31 handshake=Noise_XXpsk0_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254866d809eebe6c3d84a3ff5b7f9842209a6bb025a5804dc0de2bb msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466be325d2fad8902f6af1f3b2b5acc9eab588b638e7e6c2e488d433d28690843f206009fabe86c879f8d9e2738ee4ed4d2938775bd82c3a86e2267c5764cd7abd871e6263afcc404a5e0a1 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=1e65fa56a639797ffe77d0d2951c4e2b3ec3ff11878bc08d9d1907247b9b01ab46af6720d3d054872b900594d8b526601350ee3e4725f68b581b62bcc4a3a13247dcbceb4e8a9650d90c msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=d38f1c0a508dd95e6a8a567c8931a8637bad28b91d9564bd9c8fa23deaa220 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=895cf67ef6bc4e9116cff01e1891ecfc3413847ff1aa6c81ff9caf5d917a7b handshake=Noise_XXpsk1_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254542b41136533a8304a77b81b6dfdf040484761f3ccafe691e75d msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484666dfab3251da0797a6fde63e3bfeca2f0f74fa7162dd3825426965c0f2a0fc90a5dec9479f1ad2799fbd27fdb7fdc056523cac5251a120ab78a72461a4e9de89b862c7414fa11fd5bb881 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=4a7ae3d865ae62214d81c67bc6134402ddb479fabf4bbd95f70dcd744d48e91d0583c25739292883c9333532c4da5f3032f2011af09a5b12c1468e7b1eab09321a31a1d2ff6796ac80d3 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=d3ec65abb14824f326728eef1a0d957839c2a31fcf8f6a8444c3ad12e92565 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=4bc899aa61919f501f103187883abc24ba96d80bb9152d4b04fd09763384f8 handshake=Noise_XXpsk2_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254da6c52ee1b045a9cfeb44ece894131cd8d2fb1213bbeca79f626 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484663ea4d8909862193d7f28ce230e8f8fdd52e2c7c32b59cc81b8c8b869025e764501a2be4cd48b63a3c74802e86d9b8bd37992e6627c6b6b97687f53a407d8b6afdd43d633c2daebaafc14 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=e37f84e33bdb15ba63178cff0ea5946e4aa4f71e86ea0b3dd8e885baa63ead5575db230303120a1dde9a88d5cbd4ff98cf8779569d616597b16f4a9f5ef1dd4f26463290e83402284a14 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=337c476f38adead5eec91eb6e27edbedd33f5cf702e885c67b25e06fed6475 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=f7f94c1464b63d63b099af6faec4a3bbbf861b5bd04314135a5bb666d2e57a handshake=Noise_XXpsk3_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254cd5279aefbfc171ce82b89a9045aed50568afa724bb8f9c0a540 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466af613726ed79ba171d0ba959f0bafc5949f8e4279fa836af1dac74632da07426822f55cfb4baec5d5626d45e9dec6fa85b5bc0b66a4c643d9ecfa433cca204d22000ae309809dbcd2507 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=435c3d4404fb904058992c956972c09b477b3d5465f8dfaf487205d7c8024e7ad29ffdd53f3a0921483a26ab29377e2e66ac8fc47095844e8da0f4e9b114d0ba5db5685ab45d76a7e03c msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=ea30f606b3b7b47433ec08e91298daef7df94faae71de0c396f7a3b194ed78 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=f2d28fa9662bd3bc6486d0e2fc2376eca51a747e66357baedf1e36d3b9b804 handshake=Noise_IX_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548f40c5adb68f25624ae5b214ea767a6ec94d829d3d7b5e1ad1ba6f3e2138285f msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466695d6599121fe2a7334d2c97732a3ffadbcfd7e6bdb2544697bb5f00916ee3fc5705ded2ea5e74dc4cccd271b3b170c018ece669ee8eb50c1183697979a87056 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=26615f8c05cfc06ba45d92c919ac3646b75c5b98ccc6bf7be435f660303233 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=246f084e1984bada028bdd5706659a090073f4e900983ae7f43938081d0e6c handshake=Noise_IXpsk0_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254f23d888fc466096221d018369dbfd469e8982fe06d5f5403cf73cbae43506d4c019dc3f0ddbe6a8e4cedc9663bbc0666e2e8003f39416bd73417eeacb429f0d3 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846666dbaa36ddf907742a80f1551f8b7d380adbf8039ff57bf43ffe5f1c2315caca03d159b9f20ec197dade265afb859e24ed346fbf36ad4ac6f225c06a83bb5f7b msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=ba368d3ceaeb7b4ddea9fa0ec3f6af47bce36ec342a0be54a2bd08e7b57a31 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=003d182934bbbfb5ba808d6e335bf7d155504ae7a7d5f5288d2af34bb05e08 handshake=Noise_IXpsk1_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254730f4c1d260b464346081cd7e638a961153cb165f87bd25c9b26c250e5bb880805b009cde612246770287ee104db35f1ec3dbb8330fb8854782bc70cf926c466 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466129a73114e12a289af04ec9af3e8a49cfc343ba36ce522267a3eedb9971791a6e3a11e74aec9f653fe66e3498ec3f0ba924cdd5b28c0b701b834909dfc1b440d msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=96efc6df0548c32e43ca4c59eeb2559626095079ecb0ba2be9c8fd6628d844 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=6f9e72631a890074a8b30f623968e914862330f34ec4e2aa36f6f7b987a3d6 handshake=Noise_IXpsk2_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254336c06ececc68c95a721a5e1108b1d2c29397707cbf738e7a8849fd2ff08d62951cd48325d28bb67c3280fca55c91275b3ef8f17b7ca1768f171c2071903c43f msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846691aaca91f9159a9bd67aa886e00a54088edc28c8d38e3a34870cc34fb1305b2a13bd55a7a8052b97ab1bc4ccdcabba822d611d461660deabf4584d1747a222d3 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=44f1bd491d21b3e3fe06273ce11e6530122d7314ec4fa74994ee55481f5133 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=bf9875d0094449a70e60dd5577ed61d03ae2e86b775aca74bf2723ea6b969c handshake=Noise_IX_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548f40c5adb68f25624ae5b214ea767a6ec94d829d3d7b5e1ad1ba6f3e2138285f746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466695d6599121fe2a7334d2c97732a3ffadbcfd7e6bdb2544697bb5f00916ee3fce9879d0ed150af9f2be81aa51c039e9e7b5773f45de6318af93f86d0dc96b99df12aaa638be5a625ff49 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=26615f8c05cfc06ba45d92c919ac3646b75c5b98ccc6bf7be435f660303233 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=246f084e1984bada028bdd5706659a090073f4e900983ae7f43938081d0e6c handshake=Noise_IXpsk0_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254f23d888fc466096221d018369dbfd469e8982fe06d5f5403cf73cbae43506d4c019dc3f0ddbe6a8e4cedc9663bbc06667559f6ca4f3be7e578e55edf0c66945d61065236620e451730ff msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846666dbaa36ddf907742a80f1551f8b7d380adbf8039ff57bf43ffe5f1c2315caca5703a32de32a3a7099780894de955a6bf797d76ea657debdad89256c8b7f7c131759900ed8fd0c936cfc msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=ba368d3ceaeb7b4ddea9fa0ec3f6af47bce36ec342a0be54a2bd08e7b57a31 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=003d182934bbbfb5ba808d6e335bf7d155504ae7a7d5f5288d2af34bb05e08 handshake=Noise_IXpsk1_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254730f4c1d260b464346081cd7e638a961153cb165f87bd25c9b26c250e5bb880805b009cde612246770287ee104db35f1431211b554223603a05e313043e051745116e15077094aecb596 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466129a73114e12a289af04ec9af3e8a49cfc343ba36ce522267a3eedb9971791a6611fbcdf30357d8d3157a9926c75108d9f704ccf6c61778c12e3a158605089315ee6d9e1a254a26bb385 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=96efc6df0548c32e43ca4c59eeb2559626095079ecb0ba2be9c8fd6628d844 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=6f9e72631a890074a8b30f623968e914862330f34ec4e2aa36f6f7b987a3d6 handshake=Noise_IXpsk2_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254336c06ececc68c95a721a5e1108b1d2c29397707cbf738e7a8849fd2ff08d62951cd48325d28bb67c3280fca55c91275c719b81dc74cf8887220c7858051cacaba08461b443c9f1feafb msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846691aaca91f9159a9bd67aa886e00a54088edc28c8d38e3a34870cc34fb1305b2a98c853dfa8e2b13ca3b2dc061fac3c4ca42326a5f8d40c491c9882c14928b0297a6fbd17ed86e3f78aeb msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=44f1bd491d21b3e3fe06273ce11e6530122d7314ec4fa74994ee55481f5133 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=bf9875d0094449a70e60dd5577ed61d03ae2e86b775aca74bf2723ea6b969c handshake=Noise_IX_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548f40c5adb68f25624ae5b214ea767a6ec94d829d3d7b5e1ad1ba6f3e2138285f msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466695d6599121fe2a7334d2c97732a3ffadbcfd7e6bdb2544697bb5f00916ee3fc981a97e21a035372344bf5ebc58d4530952e0f70491280e937fb043e18e01fb8 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=26615f8c05cfc06ba45d92c919ac3646b75c5b98ccc6bf7be435f660303233 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=246f084e1984bada028bdd5706659a090073f4e900983ae7f43938081d0e6c handshake=Noise_IXpsk0_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254f23d888fc466096221d018369dbfd469e8982fe06d5f5403cf73cbae43506d4cb086b2a59e2bb0559d03edd7967de46e777870db5fccba82efee379f4f94d817 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846666dbaa36ddf907742a80f1551f8b7d380adbf8039ff57bf43ffe5f1c2315cacaa000b86e59b363dacc8df47185202e71703a31598ae5f209900b544b0987af1b msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=ba368d3ceaeb7b4ddea9fa0ec3f6af47bce36ec342a0be54a2bd08e7b57a31 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=003d182934bbbfb5ba808d6e335bf7d155504ae7a7d5f5288d2af34bb05e08 handshake=Noise_IXpsk1_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254730f4c1d260b464346081cd7e638a961153cb165f87bd25c9b26c250e5bb8808adf190271445d27f405095fbc3ca27432bdcd0313238417d7c0ce916683bfc8b msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466129a73114e12a289af04ec9af3e8a49cfc343ba36ce522267a3eedb9971791a64831f0ac2613dc6820e61293eb7baff3ff9eba1ad801121c6ba483dc43bda464 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=96efc6df0548c32e43ca4c59eeb2559626095079ecb0ba2be9c8fd6628d844 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=6f9e72631a890074a8b30f623968e914862330f34ec4e2aa36f6f7b987a3d6 handshake=Noise_IXpsk2_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254336c06ececc68c95a721a5e1108b1d2c29397707cbf738e7a8849fd2ff08d6298b3f30233695772355e7b3ade8dbffbf41c5cc96f06413594b6659405f516a29 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846691aaca91f9159a9bd67aa886e00a54088edc28c8d38e3a34870cc34fb1305b2a1e81847f6b95142f0026a5496a0cb373b7224ba5692bc0abfa9eec46109c87a6 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=44f1bd491d21b3e3fe06273ce11e6530122d7314ec4fa74994ee55481f5133 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=bf9875d0094449a70e60dd5577ed61d03ae2e86b775aca74bf2723ea6b969c handshake=Noise_IX_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548f40c5adb68f25624ae5b214ea767a6ec94d829d3d7b5e1ad1ba6f3e2138285f746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466695d6599121fe2a7334d2c97732a3ffadbcfd7e6bdb2544697bb5f00916ee3fcda75b86dcdcf6cc8b4e52dd9265dc2aa7b5773f45de6318af93ff0f4c52d30c8278d3298434c05beadb4 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=26615f8c05cfc06ba45d92c919ac3646b75c5b98ccc6bf7be435f660303233 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=246f084e1984bada028bdd5706659a090073f4e900983ae7f43938081d0e6c handshake=Noise_IXpsk0_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254f23d888fc466096221d018369dbfd469e8982fe06d5f5403cf73cbae43506d4cb086b2a59e2bb0559d03edd7967de46e7559f6ca4f3be7e578e57882e381692562156135cf8c334308f6 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846666dbaa36ddf907742a80f1551f8b7d380adbf8039ff57bf43ffe5f1c2315caca12ad93e06bd127bda9ad1020b877118ef797d76ea657debdad897fcbc0953710f13696878e2c1a2869a0 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=ba368d3ceaeb7b4ddea9fa0ec3f6af47bce36ec342a0be54a2bd08e7b57a31 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=003d182934bbbfb5ba808d6e335bf7d155504ae7a7d5f5288d2af34bb05e08 handshake=Noise_IXpsk1_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254730f4c1d260b464346081cd7e638a961153cb165f87bd25c9b26c250e5bb8808adf190271445d27f405095fbc3ca2743431211b554223603a05ef4b04acb4fe69dc9d150400ad9c28cfc msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466129a73114e12a289af04ec9af3e8a49cfc343ba36ce522267a3eedb9971791a621701ef5f70366820249aa58206ec5179f704ccf6c61778c12e34b86cd99e8c7f6ec4cd08217427f2b2b msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=96efc6df0548c32e43ca4c59eeb2559626095079ecb0ba2be9c8fd6628d844 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=6f9e72631a890074a8b30f623968e914862330f34ec4e2aa36f6f7b987a3d6 handshake=Noise_IXpsk2_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254336c06ececc68c95a721a5e1108b1d2c29397707cbf738e7a8849fd2ff08d6298b3f30233695772355e7b3ade8dbffbfc719b81dc74cf888722001f7c5dba307a6158a32b4636f5810dc msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846691aaca91f9159a9bd67aa886e00a54088edc28c8d38e3a34870cc34fb1305b2a0e75e6be1bec100d6573dcea97d99441a42326a5f8d40c491c9835c2d1f6e87f227b143834e678763257 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=44f1bd491d21b3e3fe06273ce11e6530122d7314ec4fa74994ee55481f5133 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=bf9875d0094449a70e60dd5577ed61d03ae2e86b775aca74bf2723ea6b969c handshake=Noise_N_25519_ChaChaPoly_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625481e3638895f74c7f2fb79478a8b1ef0b msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=94858a8929ec3029eee24ac3b9430a0ad960324b465ebf1e4a4e5b42d5578d msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=0d950d3e8b3b1c1e92f0672fa29e408ff3051ceb7ab03a61419559a6772f08 handshake=Noise_Npsk0_25519_ChaChaPoly_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625464629b177388333c8d175896ab297935 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=33da6aeec7478a08f7878c62fd7fcc88165cf1bf47953546ac1b64fb183258 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=3376b3ceedfdeaf78df87cfaeabbe7a3b4cb1ffb9ee72b05a36aaa4fea99ee handshake=Noise_Npsk1_25519_ChaChaPoly_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625450b0f423d7d637d7a460b86a48cc487b msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=e33fa900c0dcebe93bce0408696d13866c780766f0c670a3932b0d05c1c69b msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=c06aac8a526a8b995fafc59f9ffe856c8316d9fd97db9ba322bd4dbc940158 handshake=Noise_N_25519_ChaChaPoly_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548d5c068cc55c86ec3234b490d40afc4cf4d6263378881c946d7f msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=94858a8929ec3029eee24ac3b9430a0ad960324b465ebf1e4a4e5b42d5578d msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=0d950d3e8b3b1c1e92f0672fa29e408ff3051ceb7ab03a61419559a6772f08 handshake=Noise_Npsk0_25519_ChaChaPoly_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254f8dbb976f32d75fe4f1fdd32667b33832835533005266a53712b msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=33da6aeec7478a08f7878c62fd7fcc88165cf1bf47953546ac1b64fb183258 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=3376b3ceedfdeaf78df87cfaeabbe7a3b4cb1ffb9ee72b05a36aaa4fea99ee handshake=Noise_Npsk1_25519_ChaChaPoly_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254354f2847f89991ee82660859ba99e38c0b65beffa762a956db43 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=e33fa900c0dcebe93bce0408696d13866c780766f0c670a3932b0d05c1c69b msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=c06aac8a526a8b995fafc59f9ffe856c8316d9fd97db9ba322bd4dbc940158 handshake=Noise_N_25519_ChaChaPoly_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254dc989d32c66a940d8f3bb092ec1cc39b msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=94858a8929ec3029eee24ac3b9430a0ad960324b465ebf1e4a4e5b42d5578d msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=0d950d3e8b3b1c1e92f0672fa29e408ff3051ceb7ab03a61419559a6772f08 handshake=Noise_Npsk0_25519_ChaChaPoly_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254adb2ef9e38153b82ab826cf2c293d2e2 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=33da6aeec7478a08f7878c62fd7fcc88165cf1bf47953546ac1b64fb183258 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=3376b3ceedfdeaf78df87cfaeabbe7a3b4cb1ffb9ee72b05a36aaa4fea99ee handshake=Noise_Npsk1_25519_ChaChaPoly_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254d8a9ac9ddfea0fd3f61053e5cce9c468 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=e33fa900c0dcebe93bce0408696d13866c780766f0c670a3932b0d05c1c69b msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=c06aac8a526a8b995fafc59f9ffe856c8316d9fd97db9ba322bd4dbc940158 handshake=Noise_N_25519_ChaChaPoly_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548d5c068cc55c86ec32343e3869720328a5659aa70ee82a7e2153 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=94858a8929ec3029eee24ac3b9430a0ad960324b465ebf1e4a4e5b42d5578d msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=0d950d3e8b3b1c1e92f0672fa29e408ff3051ceb7ab03a61419559a6772f08 handshake=Noise_Npsk0_25519_ChaChaPoly_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254f8dbb976f32d75fe4f1fcbe700b9013b07745aafab8bf4e2fa7b msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=33da6aeec7478a08f7878c62fd7fcc88165cf1bf47953546ac1b64fb183258 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=3376b3ceedfdeaf78df87cfaeabbe7a3b4cb1ffb9ee72b05a36aaa4fea99ee handshake=Noise_Npsk1_25519_ChaChaPoly_SHA512 resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254354f2847f89991ee82666c5a1d2c330638acc769bec02338bfb4 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=e33fa900c0dcebe93bce0408696d13866c780766f0c670a3932b0d05c1c69b msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=c06aac8a526a8b995fafc59f9ffe856c8316d9fd97db9ba322bd4dbc940158 handshake=Noise_K_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254f6c00a2c6c7b4e047404cd845438f31d msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=8f37d99ddd83fcfad851544fadbbd9f83a21cb504f79a040f0db0ef406a2cb msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=8b69be08bbd320ce82a65b1ac6013f3aada9a0e64e53b0f9de55a83e0fd4e2 handshake=Noise_Kpsk0_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662545b743993c03a39ed2078fe83cacb0005 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=5df379aa748528b394de3a483c10bfa9b2fd420d2d5a7247be18b9b71b1741 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=73a0c4086f45b89ac5ac48564363e3cce8449b2d2c7cf71adadb6258119771 handshake=Noise_Kpsk1_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254af5df3705094e65fd6345071bdb48771 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=c63f46ef1a4531b36b6d9d933fc6d97a929ba3fce60a9523228c4df6745d30 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=daa224045edb5559f94be878b2de124313b1e157fa49295925143dca42782b handshake=Noise_K_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541f0499b194617954a3a80fecc4b0b687b2dcfaca93c170ec8133 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=8f37d99ddd83fcfad851544fadbbd9f83a21cb504f79a040f0db0ef406a2cb msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=8b69be08bbd320ce82a65b1ac6013f3aada9a0e64e53b0f9de55a83e0fd4e2 handshake=Noise_Kpsk0_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662549832db195cc1e003857c7f520d021430e9ae20a35b9e906b8f7e msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=5df379aa748528b394de3a483c10bfa9b2fd420d2d5a7247be18b9b71b1741 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=73a0c4086f45b89ac5ac48564363e3cce8449b2d2c7cf71adadb6258119771 handshake=Noise_Kpsk1_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662549ad2b6a5f66290516660e12f3f66ba36a904982d33fe8ed8f15e msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=c63f46ef1a4531b36b6d9d933fc6d97a929ba3fce60a9523228c4df6745d30 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=daa224045edb5559f94be878b2de124313b1e157fa49295925143dca42782b handshake=Noise_K_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254fef72b48f3aac25836d9eb5b379c8a5b msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=8f37d99ddd83fcfad851544fadbbd9f83a21cb504f79a040f0db0ef406a2cb msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=8b69be08bbd320ce82a65b1ac6013f3aada9a0e64e53b0f9de55a83e0fd4e2 handshake=Noise_Kpsk0_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548ae6fc65d6fc0d280734065c183cc02b msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=5df379aa748528b394de3a483c10bfa9b2fd420d2d5a7247be18b9b71b1741 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=73a0c4086f45b89ac5ac48564363e3cce8449b2d2c7cf71adadb6258119771 handshake=Noise_Kpsk1_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254f13e539dc67cfd7c8bed15eb755b3e70 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=c63f46ef1a4531b36b6d9d933fc6d97a929ba3fce60a9523228c4df6745d30 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=daa224045edb5559f94be878b2de124313b1e157fa49295925143dca42782b handshake=Noise_K_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541f0499b194617954a3a8ba6d2ccb66ba883621b78eb1ccb78060 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=8f37d99ddd83fcfad851544fadbbd9f83a21cb504f79a040f0db0ef406a2cb msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=8b69be08bbd320ce82a65b1ac6013f3aada9a0e64e53b0f9de55a83e0fd4e2 handshake=Noise_Kpsk0_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662549832db195cc1e003857cf56e834a296df1104de185a7b9129a7e msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=5df379aa748528b394de3a483c10bfa9b2fd420d2d5a7247be18b9b71b1741 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=73a0c4086f45b89ac5ac48564363e3cce8449b2d2c7cf71adadb6258119771 handshake=Noise_Kpsk1_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662549ad2b6a5f66290516660fc7bf731ab1516ae6fe1723e6a8fbaeb msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=c63f46ef1a4531b36b6d9d933fc6d97a929ba3fce60a9523228c4df6745d30 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=daa224045edb5559f94be878b2de124313b1e157fa49295925143dca42782b handshake=Noise_X_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254376c7107f9eb405171d2d1f3d248bce446063fa27b4685471cef3d72d2da8dea4a3e192003851247b8cd95003cccd0c58e96de55d37979fb46e5a502a7e8d6e7 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=95cd22713f4dc63780f443ddf8c584322d1f2e280dae8418c8a526a594e842 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=9e0f68ed156a13caecfc626ac6ab7516853fd098bc61c56216c95b8d7fc398 handshake=Noise_Xpsk0_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662542be0098b3b9dab8f530c810961603ba2f6a822cc78ac7eee268859f4df844553d30e3740165e3ae647bc0b502ee8e56a192bd7a7e255d12c4856c0d56857b688 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=c08a79e514742f8589a1ebe18591620d753a930a6f712a8e052fde4f0eee37 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=b2515711f8ce760c177220035b0693e0402e8b243720c39c2fa5c63d8fe506 handshake=Noise_Xpsk1_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254da919bbbd48942dc8dbb313ccfdf9cbe55ada3842eecc44363f68c7f277f40b9cb22eab3c5e8a67218d9e1d23c7c3b468f6237c9a41c4b7e67549484fb3d2ebc msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=e5c617be1a77e3328ced09ee748203bbb7afb29b2c84fb20cf3b3a6d638197 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=0c7261852346c160ee7df5a37ac9f3bad96737b841a6d544b39f3052e0dddd handshake=Noise_X_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254376c7107f9eb405171d2d1f3d248bce446063fa27b4685471cef3d72d2da8dea4a3e192003851247b8cd95003cccd0c552a973c425d8f07f60648804b7601dca1fdf628e900475030723 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=95cd22713f4dc63780f443ddf8c584322d1f2e280dae8418c8a526a594e842 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=9e0f68ed156a13caecfc626ac6ab7516853fd098bc61c56216c95b8d7fc398 handshake=Noise_Xpsk0_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662542be0098b3b9dab8f530c810961603ba2f6a822cc78ac7eee268859f4df844553d30e3740165e3ae647bc0b502ee8e56a81596dfb309c93b19d1534841d06d77ec854aab3070121504346 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=c08a79e514742f8589a1ebe18591620d753a930a6f712a8e052fde4f0eee37 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=b2515711f8ce760c177220035b0693e0402e8b243720c39c2fa5c63d8fe506 handshake=Noise_Xpsk1_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254da919bbbd48942dc8dbb313ccfdf9cbe55ada3842eecc44363f68c7f277f40b9cb22eab3c5e8a67218d9e1d23c7c3b467b9fb8b2dd85bd90458553d745936beb7be4fbadae7aca179b16 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=e5c617be1a77e3328ced09ee748203bbb7afb29b2c84fb20cf3b3a6d638197 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=0c7261852346c160ee7df5a37ac9f3bad96737b841a6d544b39f3052e0dddd handshake=Noise_X_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254376c7107f9eb405171d2d1f3d248bce446063fa27b4685471cef3d72d2da8deaa15d6a63c69270eccce4c01bcc449c6fcb8d33e0971f84f0bdd310d557ae81d8 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=95cd22713f4dc63780f443ddf8c584322d1f2e280dae8418c8a526a594e842 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=9e0f68ed156a13caecfc626ac6ab7516853fd098bc61c56216c95b8d7fc398 handshake=Noise_Xpsk0_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662542be0098b3b9dab8f530c810961603ba2f6a822cc78ac7eee268859f4df844553b33f9d2a4423e9a802ff89a058ed672f49301da562d43c4e84803ece0442d767 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=c08a79e514742f8589a1ebe18591620d753a930a6f712a8e052fde4f0eee37 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=b2515711f8ce760c177220035b0693e0402e8b243720c39c2fa5c63d8fe506 handshake=Noise_Xpsk1_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254da919bbbd48942dc8dbb313ccfdf9cbe55ada3842eecc44363f68c7f277f40b92bc84021a9f0cea4dcd51d10b9ddc776d8d7d0db81f5ed7985751fe2e2aea0ec msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=e5c617be1a77e3328ced09ee748203bbb7afb29b2c84fb20cf3b3a6d638197 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=0c7261852346c160ee7df5a37ac9f3bad96737b841a6d544b39f3052e0dddd handshake=Noise_X_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254376c7107f9eb405171d2d1f3d248bce446063fa27b4685471cef3d72d2da8deaa15d6a63c69270eccce4c01bcc449c6f52a973c425d8f07f606498675011335ab87e026edc45c947accd msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=95cd22713f4dc63780f443ddf8c584322d1f2e280dae8418c8a526a594e842 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=9e0f68ed156a13caecfc626ac6ab7516853fd098bc61c56216c95b8d7fc398 handshake=Noise_Xpsk0_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662542be0098b3b9dab8f530c810961603ba2f6a822cc78ac7eee268859f4df844553b33f9d2a4423e9a802ff89a058ed672f81596dfb309c93b19d158cb77e84c978a3dcb608c6ecac6c2c5d msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=c08a79e514742f8589a1ebe18591620d753a930a6f712a8e052fde4f0eee37 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=b2515711f8ce760c177220035b0693e0402e8b243720c39c2fa5c63d8fe506 handshake=Noise_Xpsk1_25519_ChaChaPoly_SHA512 init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254da919bbbd48942dc8dbb313ccfdf9cbe55ada3842eecc44363f68c7f277f40b92bc84021a9f0cea4dcd51d10b9ddc7767b9fb8b2dd85bd904585a11cd434469ceca29de06fb9079d0a05 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=e5c617be1a77e3328ced09ee748203bbb7afb29b2c84fb20cf3b3a6d638197 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=0c7261852346c160ee7df5a37ac9f3bad96737b841a6d544b39f3052e0dddd handshake=Noise_NN_25519_ChaChaPoly_BLAKE2b gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484664630f67598da3b42143a952be366791b msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=13d25f218f99a206fea16ec00da9ffa85d826e945ff96cf5c809557d8ac3d5 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=f59ee5daa0c96f469ccbd54f22f1dc6e414db878e9802d9a60bbf66b17c2fa handshake=Noise_NNpsk0_25519_ChaChaPoly_BLAKE2b gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662545ca945ccbc84a56bec9c401b36132676 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466f0eb7ac83b0774a9e2869b41e7740303 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=7811d68572ef1cef95b8a84abaa2c04c52c65b6bc7717b20d7d0937fbdd792 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=ccf5caaaee5fd10189d055e7c7e73eff5c50c424c5186ba83af5921864b95f handshake=Noise_NNpsk1_25519_ChaChaPoly_BLAKE2b gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254eaad96f18f5a9a198b4236625eb25933 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484666b172d38e2412c0ae2590dfdbe5e0832 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=627eff0c6f895f05f005ae386f2e3bd0f04a2ce1b308c09a9a7efc24b593d5 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=57ebc9b6d2d2352741b60d2e221cc05b660997799e0589257dcbaa6ab8a453 handshake=Noise_NNpsk2_25519_ChaChaPoly_BLAKE2b gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254bcc2d28dc4fef41f14c5105e63af938f msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846615dfc62d0cb9e27f1e7249fd3bd7a20a msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=235d6e8d0ce1821b0a800f12b932240ca563d9246f535102faff2ce267bc2d msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=454fc5046d2d0b78b7b7bf94edd69a124fc244e9ddc61f8991051192723e34 handshake=Noise_NN_25519_ChaChaPoly_BLAKE2b gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c86b9a678485762fc7a4f979bbd9953460114cd3b560182ebd35 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=13d25f218f99a206fea16ec00da9ffa85d826e945ff96cf5c809557d8ac3d5 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=f59ee5daa0c96f469ccbd54f22f1dc6e414db878e9802d9a60bbf66b17c2fa handshake=Noise_NNpsk0_25519_ChaChaPoly_BLAKE2b gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662544291e8e0931ad8b16a789c6570707bcf7b224b7690859f627dfb msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466871d4367360b3a22ef391c1824a2fc2ef48f53b399433fb6ef10 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=7811d68572ef1cef95b8a84abaa2c04c52c65b6bc7717b20d7d0937fbdd792 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=ccf5caaaee5fd10189d055e7c7e73eff5c50c424c5186ba83af5921864b95f handshake=Noise_NNpsk1_25519_ChaChaPoly_BLAKE2b gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662546f77e811ab35561749225514a9041dd60f0971cb6c16a595992a msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c0a44d4d21ef21ccaca66bf95c85c71b4176f2e082084e86f9c1 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=627eff0c6f895f05f005ae386f2e3bd0f04a2ce1b308c09a9a7efc24b593d5 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=57ebc9b6d2d2352741b60d2e221cc05b660997799e0589257dcbaa6ab8a453 handshake=Noise_NNpsk2_25519_ChaChaPoly_BLAKE2b gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254224ae179b2e475df7ec45848ad251c75c093fdcb0eccb715accb msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484661ce2f4a22491191e59e782267d686152bb0931d0d95282be7d62 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=235d6e8d0ce1821b0a800f12b932240ca563d9246f535102faff2ce267bc2d msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=454fc5046d2d0b78b7b7bf94edd69a124fc244e9ddc61f8991051192723e34 handshake=Noise_NN_25519_ChaChaPoly_BLAKE2b gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466a632ac4e20596b74a3ba081cade4076b msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=13d25f218f99a206fea16ec00da9ffa85d826e945ff96cf5c809557d8ac3d5 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=f59ee5daa0c96f469ccbd54f22f1dc6e414db878e9802d9a60bbf66b17c2fa handshake=Noise_NNpsk0_25519_ChaChaPoly_BLAKE2b gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254b06ef00a4d70a332e9d2d7ee208915d8 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466a69b59729468a7560df3f44a73e23793 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=7811d68572ef1cef95b8a84abaa2c04c52c65b6bc7717b20d7d0937fbdd792 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=ccf5caaaee5fd10189d055e7c7e73eff5c50c424c5186ba83af5921864b95f handshake=Noise_NNpsk1_25519_ChaChaPoly_BLAKE2b gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254ce1d92d2350fbee302be9be3ad3c64da msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466fa472236809ef20090d9cdcddcf53b3f msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=627eff0c6f895f05f005ae386f2e3bd0f04a2ce1b308c09a9a7efc24b593d5 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=57ebc9b6d2d2352741b60d2e221cc05b660997799e0589257dcbaa6ab8a453 handshake=Noise_NNpsk2_25519_ChaChaPoly_BLAKE2b gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662545d25ad5a9ff63b9a03b1283e53ee3b47 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484660d15867c6e1e33cb806e7213c2070fb2 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=235d6e8d0ce1821b0a800f12b932240ca563d9246f535102faff2ce267bc2d msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=454fc5046d2d0b78b7b7bf94edd69a124fc244e9ddc61f8991051192723e34 handshake=Noise_NN_25519_ChaChaPoly_BLAKE2b gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c86b9a678485762fc7a42265d67a1ab87c705687b414166c9df1 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=13d25f218f99a206fea16ec00da9ffa85d826e945ff96cf5c809557d8ac3d5 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=f59ee5daa0c96f469ccbd54f22f1dc6e414db878e9802d9a60bbf66b17c2fa handshake=Noise_NNpsk0_25519_ChaChaPoly_BLAKE2b gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662544291e8e0931ad8b16a78a94b1c635dbd71a5ac125379e105b3de msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466871d4367360b3a22ef39d1de21e1ff59b1753271ca93e5511e28 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=7811d68572ef1cef95b8a84abaa2c04c52c65b6bc7717b20d7d0937fbdd792 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=ccf5caaaee5fd10189d055e7c7e73eff5c50c424c5186ba83af5921864b95f handshake=Noise_NNpsk1_25519_ChaChaPoly_BLAKE2b gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662546f77e811ab355617492204d2720b9e3cf1b1aec5da0fcaa6bf91 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c0a44d4d21ef21ccaca686386a2bf51e7354e7af59917d9b6643 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=627eff0c6f895f05f005ae386f2e3bd0f04a2ce1b308c09a9a7efc24b593d5 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=57ebc9b6d2d2352741b60d2e221cc05b660997799e0589257dcbaa6ab8a453 handshake=Noise_NNpsk2_25519_ChaChaPoly_BLAKE2b gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254224ae179b2e475df7ec4a184c97251967b804a044fdfd2aea7d6 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484661ce2f4a22491191e59e7076f9aedbd9c6be1c26f94ef4491cd5a msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=235d6e8d0ce1821b0a800f12b932240ca563d9246f535102faff2ce267bc2d msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=454fc5046d2d0b78b7b7bf94edd69a124fc244e9ddc61f8991051192723e34 handshake=Noise_KN_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466a2f457bc3aff4cffba8148122b472e8d msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=c096947fe48821afe851ee5ab92bb0df988463d57ba4b283ec431ff8661cd0 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=75bc0377d0436cff22226d1136c0690df2727247cc08bcb1bacd5515bc0b03 handshake=Noise_KNpsk0_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625405d8c5acffb92564fbf7452d9342b1f2 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846612a034b4785dad8a1de7e4ef2d8db776 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=84e4d0e9a8d546be134bd8d93e6d4ef9fe83b7fc8503ed1d6a3495db3a35b6 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=ae361ebb5e7ae9d1fdad4c00b920379f19fca1eb3997bcccda85a6308b47bd handshake=Noise_KNpsk1_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c1ea9f3ccd34beeeaa8e540bc7eb9f54 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466efd17f977051f84913f28c6129853611 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=e5ccaaeb804ee27f31fb09b68d42fe6b940367fcb4f3591d2fd82b72024edc msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=5afd726057fe1cb681ee905558ed76fbe22239fcbcf8f39970d6ad48ab4f51 handshake=Noise_KNpsk2_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662544d5cff5d8b30c51e9adc0b19105c1313 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846687e6f622354e5f80d7cef534378f3090 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=e33a92b005c91179ff2a9f0e179b0c972f9b388541bd5c62c379cc05d0ec80 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=e73a4ead0be8bd5e1dac776d7d88f6bda655f69da442b99ba0742dc5905d57 handshake=Noise_KN_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846692e0f0cadb3c591903a8bf99a59da7cf9db265b8ae6b75dc23da msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=c096947fe48821afe851ee5ab92bb0df988463d57ba4b283ec431ff8661cd0 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=75bc0377d0436cff22226d1136c0690df2727247cc08bcb1bacd5515bc0b03 handshake=Noise_KNpsk0_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c50efd8dcd4dc214c8054a27dc861e4fd0b7593e07254b0ee129 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466ccf4b6474627f408499a1bbe8979e087d3029557416e4804d234 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=84e4d0e9a8d546be134bd8d93e6d4ef9fe83b7fc8503ed1d6a3495db3a35b6 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=ae361ebb5e7ae9d1fdad4c00b920379f19fca1eb3997bcccda85a6308b47bd handshake=Noise_KNpsk1_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662545b869eb72ca64cc2d6827db97a739536c13cbabd38989507992b msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484663fe7d7cee5f0380f6c801eab927dd4639ffd11e2c2bcb2e9e4b1 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=e5ccaaeb804ee27f31fb09b68d42fe6b940367fcb4f3591d2fd82b72024edc msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=5afd726057fe1cb681ee905558ed76fbe22239fcbcf8f39970d6ad48ab4f51 handshake=Noise_KNpsk2_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625421ec5b7f100436755fcc7344c07f39d3b204fcb238e868e30f8f msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846645e9ac3e449c0f53b6793b6526cdfa0d8960b745aa88cb98b4c1 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=e33a92b005c91179ff2a9f0e179b0c972f9b388541bd5c62c379cc05d0ec80 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=e73a4ead0be8bd5e1dac776d7d88f6bda655f69da442b99ba0742dc5905d57 handshake=Noise_KN_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466d1ac871da6795cd1bf42f6e4778eba0e msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=c096947fe48821afe851ee5ab92bb0df988463d57ba4b283ec431ff8661cd0 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=75bc0377d0436cff22226d1136c0690df2727247cc08bcb1bacd5515bc0b03 handshake=Noise_KNpsk0_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625476ee8d7f3a1828d84dcbf1fcc8a4a2af msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484662f8bb2f6eb8e944455239c3883d5baa9 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=84e4d0e9a8d546be134bd8d93e6d4ef9fe83b7fc8503ed1d6a3495db3a35b6 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=ae361ebb5e7ae9d1fdad4c00b920379f19fca1eb3997bcccda85a6308b47bd handshake=Noise_KNpsk1_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254044d66fd5be6f6f903529a08c91ca7a8 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466b28a402e90013fb224a3cdc6885ab50e msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=e5ccaaeb804ee27f31fb09b68d42fe6b940367fcb4f3591d2fd82b72024edc msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=5afd726057fe1cb681ee905558ed76fbe22239fcbcf8f39970d6ad48ab4f51 handshake=Noise_KNpsk2_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254f48976f8e36a771ae749f67142338313 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466110f04a5d3f770028208831ad8973e78 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=e33a92b005c91179ff2a9f0e179b0c972f9b388541bd5c62c379cc05d0ec80 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=e73a4ead0be8bd5e1dac776d7d88f6bda655f69da442b99ba0742dc5905d57 handshake=Noise_KN_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846692e0f0cadb3c591903a8ddab209d656baadf356263026a58bd22 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=c096947fe48821afe851ee5ab92bb0df988463d57ba4b283ec431ff8661cd0 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=75bc0377d0436cff22226d1136c0690df2727247cc08bcb1bacd5515bc0b03 handshake=Noise_KNpsk0_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c50efd8dcd4dc214c805058c30240a610132a8a3910453e655d5 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466ccf4b6474627f408499acbcf8ca41dedf91ee38353404982353a msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=84e4d0e9a8d546be134bd8d93e6d4ef9fe83b7fc8503ed1d6a3495db3a35b6 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=ae361ebb5e7ae9d1fdad4c00b920379f19fca1eb3997bcccda85a6308b47bd handshake=Noise_KNpsk1_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662545b869eb72ca64cc2d682cb6669a21f17801f9ae01c063e4ddc66 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484663fe7d7cee5f0380f6c8054b28c1be92664a53099215dd224c2a6 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=e5ccaaeb804ee27f31fb09b68d42fe6b940367fcb4f3591d2fd82b72024edc msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=5afd726057fe1cb681ee905558ed76fbe22239fcbcf8f39970d6ad48ab4f51 handshake=Noise_KNpsk2_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625421ec5b7f100436755fcc5821bb3b0e9440da589fba503939929d msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846645e9ac3e449c0f53b6793ad3c38088fe2a9a1687817650d29825 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=e33a92b005c91179ff2a9f0e179b0c972f9b388541bd5c62c379cc05d0ec80 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=e73a4ead0be8bd5e1dac776d7d88f6bda655f69da442b99ba0742dc5905d57 handshake=Noise_NK_25519_ChaChaPoly_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c6e796fa47f064296ace520223eb1dd4 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846676512fffc7284353c50e8f1e50b945fb msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=02e58bb367d2215eee3ce2e3a92143cab6b06f86312014629c8eba7d0e38e5 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=0ba20925776dbb39ccd4cdce82047b8d60db1ffc2f0acad621ef0d9009aca0 handshake=Noise_NKpsk0_25519_ChaChaPoly_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662547760d42a506aaa5170e068f630688a53 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484664ff57dc460faf9957ccc215c82625f72 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=815fb4a13763ec1687575d026446fb266cc4559a2e093563cd567c1928f829 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=ef3d9cab1bedc9b8c09ecc5d236462d60fd9a9422e8784d32f31ab27ca422e handshake=Noise_NKpsk1_25519_ChaChaPoly_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662542c3389c93d1cbbd6c6f019414066af3e msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484664893d38851f50347bf1ce3de9524655f msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=110a8f74722cb3993b524fb420736083bf5289a21c683b579810d9109d5c9b msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=22b76dbeef407b045457a05be6485cc69046d41ddfc4cf527be814ff661dbd handshake=Noise_NKpsk2_25519_ChaChaPoly_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254faa23cff30269a31a11f5b42c9162604 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466e9b51f8946c2ae367b2d20ce054ef95e msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=09fe0a7fa8ec12cf6456d2d0a55b78880b6ee9334179cedf36b8216b0b179b msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=e79a394c1e746f3dae6a5f2cb32ca5a20604059585ebb6c339012c9de90641 handshake=Noise_NK_25519_ChaChaPoly_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c81819c82320a3cf8a849bd2e79390bde13b992be00ca8465386 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484661a77bcc3ed425db85bd9597b6a0d34435d1010cb1b0a3d984f96 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=02e58bb367d2215eee3ce2e3a92143cab6b06f86312014629c8eba7d0e38e5 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=0ba20925776dbb39ccd4cdce82047b8d60db1ffc2f0acad621ef0d9009aca0 handshake=Noise_NKpsk0_25519_ChaChaPoly_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254ef2398290ba5d346eb19be574fc6ccce0965514c9aa58262d397 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484663b5e2c4787084bef7e3a09ee94b7c2173313452ed41413a3efa1 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=815fb4a13763ec1687575d026446fb266cc4559a2e093563cd567c1928f829 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=ef3d9cab1bedc9b8c09ecc5d236462d60fd9a9422e8784d32f31ab27ca422e handshake=Noise_NKpsk1_25519_ChaChaPoly_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625437705fd6001f9d8fcdd2add594d12af9de7abea9a566426838ca msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484666af1d6140fb3e3cd79fa80d74125e9148a2fae4a01fa69759c41 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=110a8f74722cb3993b524fb420736083bf5289a21c683b579810d9109d5c9b msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=22b76dbeef407b045457a05be6485cc69046d41ddfc4cf527be814ff661dbd handshake=Noise_NKpsk2_25519_ChaChaPoly_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662542990e960017d439237f507eb9a110ea1c15cd1961db0eee83129 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846633b80c1088b1489016fc9f7b244968820f26c348bc378f826c69 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=09fe0a7fa8ec12cf6456d2d0a55b78880b6ee9334179cedf36b8216b0b179b msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=e79a394c1e746f3dae6a5f2cb32ca5a20604059585ebb6c339012c9de90641 handshake=Noise_NK_25519_ChaChaPoly_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625459b23e6596ccfc1d861e44965c248bc3 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466f16a3ac5548d7e8b622e26baf3f256a1 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=02e58bb367d2215eee3ce2e3a92143cab6b06f86312014629c8eba7d0e38e5 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=0ba20925776dbb39ccd4cdce82047b8d60db1ffc2f0acad621ef0d9009aca0 handshake=Noise_NKpsk0_25519_ChaChaPoly_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541bc20995406cf070cdbd007ba8de8fc3 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484666fff7b379bd0814d6ab0f7d1cdf32e59 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=815fb4a13763ec1687575d026446fb266cc4559a2e093563cd567c1928f829 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=ef3d9cab1bedc9b8c09ecc5d236462d60fd9a9422e8784d32f31ab27ca422e handshake=Noise_NKpsk1_25519_ChaChaPoly_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254526352a52eb702c0846d41e845f956e6 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484665d3bcbb1d75f8239e7dd48fd00e023ba msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=110a8f74722cb3993b524fb420736083bf5289a21c683b579810d9109d5c9b msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=22b76dbeef407b045457a05be6485cc69046d41ddfc4cf527be814ff661dbd handshake=Noise_NKpsk2_25519_ChaChaPoly_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662540c54a88750132ccc7d2606ccd647e158 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466b5570e4eb7f95e64466aa037c73e745e msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=09fe0a7fa8ec12cf6456d2d0a55b78880b6ee9334179cedf36b8216b0b179b msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=e79a394c1e746f3dae6a5f2cb32ca5a20604059585ebb6c339012c9de90641 handshake=Noise_NK_25519_ChaChaPoly_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c81819c82320a3cf8a848138f5e224a7535afb46defe7d87553c msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484661a77bcc3ed425db85bd942db11c4661841c59bc54d0800472873 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=02e58bb367d2215eee3ce2e3a92143cab6b06f86312014629c8eba7d0e38e5 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=0ba20925776dbb39ccd4cdce82047b8d60db1ffc2f0acad621ef0d9009aca0 handshake=Noise_NKpsk0_25519_ChaChaPoly_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254ef2398290ba5d346eb19c7fc80387a124bee9c89251344667fc0 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484663b5e2c4787084bef7e3a6061d1819ecd024f00bf02c2e6acf677 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=815fb4a13763ec1687575d026446fb266cc4559a2e093563cd567c1928f829 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=ef3d9cab1bedc9b8c09ecc5d236462d60fd9a9422e8784d32f31ab27ca422e handshake=Noise_NKpsk1_25519_ChaChaPoly_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625437705fd6001f9d8fcdd2730a8aedfe5a4471d07b97371d534f57 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484666af1d6140fb3e3cd79fa4642e8c5891b3c04a8128d5f3cd3a845 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=110a8f74722cb3993b524fb420736083bf5289a21c683b579810d9109d5c9b msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=22b76dbeef407b045457a05be6485cc69046d41ddfc4cf527be814ff661dbd handshake=Noise_NKpsk2_25519_ChaChaPoly_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662542990e960017d439237f52c524921d226d4977c7c5f80fe55e3c7 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846633b80c1088b1489016fceccf88e99c39eb84390e2d6c09747f91 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=09fe0a7fa8ec12cf6456d2d0a55b78880b6ee9334179cedf36b8216b0b179b msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=e79a394c1e746f3dae6a5f2cb32ca5a20604059585ebb6c339012c9de90641 handshake=Noise_KK_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662540add9701c614f83639fc5b8469a824e1 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466adae6f9cdefe2c94ee03225c37604b0a msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=3dc2f873e6658db54bb9c572f74b4c1cf45ad75c65239938a138836f952884 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=8e3bc17a298d558e3a06e40efb7b7fb5c96c4aa1d5e4d5f787d2515e14b998 handshake=Noise_KKpsk0_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662546610e2230ff1f3183d48afe4781ff0f6 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466727d1d82190773d3282167eb6e957f08 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=4c270a853bd1c257e47c627efd4b79e3530ba09c1d52d5b17a2b3692c1f1c7 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=ae75589da7fee8dd69c1b09e67a2c1f7e6eacaee8014dd93276961df209a42 handshake=Noise_KKpsk1_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254fef2b62435793bda6a4c4aad05ae8b4a msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484667b3cb7dfdc05036e035075c3154d5f32 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=fe3643f10e3112865a008a1c5c10c54896ca6d88c8d90914f94dd6fac138cd msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=403d08bf236b73390ed2923cd3c1ff651185bbe29b564d2cb40a4675b6cbfc handshake=Noise_KKpsk2_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662546dec2771909ce9080044dd47d7e2ba76 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846619249b3f50f0f8542659ce99e21cb636 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=30f5556b007aaf32d4952968082ba5217423797071e81cdd569b73a8725017 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=2dc14afd5ebf1485e853ba62a6180a64707caa20165712e8d495c8c603e97f handshake=Noise_KK_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662549c28485b9d3a6a7ca1e70af530f049309a3b19da102d864d1599 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846626c79bad0b5abe023979c227b9eb46738a33dbc12faa4ab64df0 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=3dc2f873e6658db54bb9c572f74b4c1cf45ad75c65239938a138836f952884 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=8e3bc17a298d558e3a06e40efb7b7fb5c96c4aa1d5e4d5f787d2515e14b998 handshake=Noise_KKpsk0_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662549c643b3d339ed91764914480f545d04a1cdf9982ed7e7e1286a7 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466418f1875550e6432799a2eb9a92fcb4fc53bad4bb8aa1dc3f3ca msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=4c270a853bd1c257e47c627efd4b79e3530ba09c1d52d5b17a2b3692c1f1c7 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=ae75589da7fee8dd69c1b09e67a2c1f7e6eacaee8014dd93276961df209a42 handshake=Noise_KKpsk1_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662545e50e3aef221429fa8e8134dcc000d3ce8f0a959f9b5cc273dbc msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484665a65999701c16a9ae50ffe150f59674b235dcf3a3d6ea1d5d91f msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=fe3643f10e3112865a008a1c5c10c54896ca6d88c8d90914f94dd6fac138cd msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=403d08bf236b73390ed2923cd3c1ff651185bbe29b564d2cb40a4675b6cbfc handshake=Noise_KKpsk2_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254ea662b9896170d9582a6150ca6343873bc78f15cbd3060355e29 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484666c2eeab8af4a3f66ba3d1a3e4b4acc9f606878c661b2ba31a4ec msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=30f5556b007aaf32d4952968082ba5217423797071e81cdd569b73a8725017 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=2dc14afd5ebf1485e853ba62a6180a64707caa20165712e8d495c8c603e97f handshake=Noise_KK_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662543e047c5ed566988814daa1e9e4605341 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484664938a09e1060496bb538cb5f75115a31 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=3dc2f873e6658db54bb9c572f74b4c1cf45ad75c65239938a138836f952884 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=8e3bc17a298d558e3a06e40efb7b7fb5c96c4aa1d5e4d5f787d2515e14b998 handshake=Noise_KKpsk0_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662545df1c569503f51071bdf5cd13746f1f6 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484660fb79e8c546d18b5aedcec17dd1b7ae3 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=4c270a853bd1c257e47c627efd4b79e3530ba09c1d52d5b17a2b3692c1f1c7 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=ae75589da7fee8dd69c1b09e67a2c1f7e6eacaee8014dd93276961df209a42 handshake=Noise_KKpsk1_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254edd4fe26947e07493993cad56c107e29 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484662480512f17f4dda812ba7e8c02b84333 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=fe3643f10e3112865a008a1c5c10c54896ca6d88c8d90914f94dd6fac138cd msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=403d08bf236b73390ed2923cd3c1ff651185bbe29b564d2cb40a4675b6cbfc handshake=Noise_KKpsk2_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254b2d96179cc834d3bf1192c8cd4e7c1f0 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846624d094f7cde5f0b1561205f0a58cb4e1 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=30f5556b007aaf32d4952968082ba5217423797071e81cdd569b73a8725017 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=2dc14afd5ebf1485e853ba62a6180a64707caa20165712e8d495c8c603e97f handshake=Noise_KK_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662549c28485b9d3a6a7ca1e7ae04c80a14d382f1e9a8b3932548ecfa msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846626c79bad0b5abe023979ebedf6784eaba92e4bbc6ade0a638027 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=3dc2f873e6658db54bb9c572f74b4c1cf45ad75c65239938a138836f952884 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=8e3bc17a298d558e3a06e40efb7b7fb5c96c4aa1d5e4d5f787d2515e14b998 handshake=Noise_KKpsk0_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662549c643b3d339ed91764918cbf74d28fc8719e73556b95fb8700c3 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466418f1875550e6432799a6d7ab709f63bdae8d6d2c952226eb8e2 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=4c270a853bd1c257e47c627efd4b79e3530ba09c1d52d5b17a2b3692c1f1c7 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=ae75589da7fee8dd69c1b09e67a2c1f7e6eacaee8014dd93276961df209a42 handshake=Noise_KKpsk1_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662545e50e3aef221429fa8e881b96f072d239b26dfd0155e0757eda9 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484665a65999701c16a9ae50fd52f26c48089f42e1c84202264bba4d3 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=fe3643f10e3112865a008a1c5c10c54896ca6d88c8d90914f94dd6fac138cd msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=403d08bf236b73390ed2923cd3c1ff651185bbe29b564d2cb40a4675b6cbfc handshake=Noise_KKpsk2_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254ea662b9896170d9582a69f28efbf005006e6d922df48806ea391 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484666c2eeab8af4a3f66ba3df608254030f07adb8a353054b309566a msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=30f5556b007aaf32d4952968082ba5217423797071e81cdd569b73a8725017 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=2dc14afd5ebf1485e853ba62a6180a64707caa20165712e8d495c8c603e97f handshake=Noise_NX_25519_ChaChaPoly_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484661001bf5d654afd000b60a48982a7f8f16bad1946aefa20866c7c142a94c472233b64ed63dfc7555c854c43e68cd95f6d1475061fe795ea1e30f1cf6d8077235a msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=b9e79f9d8263bcf07bbcc8e8729039c8cce829d3be34aa7f1414aef1312e2e msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=cb46d49add7c73f9a1bc9c2bb015e114ff3c23aaff62326cd077f3d54d3d8d handshake=Noise_NXpsk0_25519_ChaChaPoly_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254d1cb2f10981522e83aae2312213c754f msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484665fd1624f32ed036ff7fc7f8c27ff605eba031dca8f50f0750e420763654f319c02737a43b9d5d56fd312fbd3e875bf695b546491b9a5d4f0a3866dd74079bdc1 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=9057ac2b936c434d8bd9a5f926136918b98c36c73d65ae6e092509dc0f7d1d msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=6434f211fcaa13b60694f51d53bd2d058231706b393d76016e6fb18500796a handshake=Noise_NXpsk1_25519_ChaChaPoly_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662544f135b82ef3c887c3a1f13fa66bdd6ff msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466d6f1bac5db9338604250bf5aea410705dab380ac8d53e05070aa26bd4e8adba93f296cffaa1f2ed206645b81e91e706bbcfd9abe7465b3eed22b53984a1dac07 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=2681c5a5a71b1a764618ffe8265b55b0262a8dc0e579ea417b506565587609 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=b512c5f3481260755d59236bcf47d03b49096fbfb58f4f01d3e57e93aa8a80 handshake=Noise_NXpsk2_25519_ChaChaPoly_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254e5854b1e81cbb8cc49dc98173b9cefd0 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466492d0eb95d7c0b7d7e02e0057dab75d823438caf0ca19e7b8f550466c9e5ec10c36f9e3ab39e90ce475d2ce2f81d912655d8d21d8ee3c26ca6111bb3bdc449e0 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=87c279f5b3cab2d36d5d53adfef24f41f8f0ad59541d80cfeb3d32a9373ab4 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=163c5ca8ea00dd3b81b2b494e038ad57c26277be9a54efbf0b491eb34621ea handshake=Noise_NX_25519_ChaChaPoly_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484661001bf5d654afd000b60a48982a7f8f16bad1946aefa20866c7c142a94c47223b18e3f707c460fbaa28865ad9d668ea9abda0084c02e273674c44fe10712a87cf1f039a7c62b617178f0 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=b9e79f9d8263bcf07bbcc8e8729039c8cce829d3be34aa7f1414aef1312e2e msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=cb46d49add7c73f9a1bc9c2bb015e114ff3c23aaff62326cd077f3d54d3d8d handshake=Noise_NXpsk0_25519_ChaChaPoly_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625447633918cf073418422f340bfd1bc8db323c006435cbeb4e766f msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484665fd1624f32ed036ff7fc7f8c27ff605eba031dca8f50f0750e420763654f319c306334979630201ed10c494d6e98c7599c97ed31e367ab91ae6752af9d3e7f0f310b1a68839b57f3af4b msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=9057ac2b936c434d8bd9a5f926136918b98c36c73d65ae6e092509dc0f7d1d msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=6434f211fcaa13b60694f51d53bd2d058231706b393d76016e6fb18500796a handshake=Noise_NXpsk1_25519_ChaChaPoly_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254feeb1e12496f2e4e099574f80191ac09276f3f7e5e523e91eb01 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466d6f1bac5db9338604250bf5aea410705dab380ac8d53e05070aa26bd4e8adba9725f545c2be3115608bd82e9ecc664e335683343957a81560b3c30b947654f0cf1b4d8a7f75fe3b6766e msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=2681c5a5a71b1a764618ffe8265b55b0262a8dc0e579ea417b506565587609 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=b512c5f3481260755d59236bcf47d03b49096fbfb58f4f01d3e57e93aa8a80 handshake=Noise_NXpsk2_25519_ChaChaPoly_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548c01fe1c6c49957de78d150a12bc0a4299e0fce95818fcf28e50 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466492d0eb95d7c0b7d7e02e0057dab75d823438caf0ca19e7b8f550466c9e5ec1064d3270ff07b4c418f9960259ec303f31e374382eb37dddd0343063ec69b9f6a1cb2126f82a678d8b5fa msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=87c279f5b3cab2d36d5d53adfef24f41f8f0ad59541d80cfeb3d32a9373ab4 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=163c5ca8ea00dd3b81b2b494e038ad57c26277be9a54efbf0b491eb34621ea handshake=Noise_NX_25519_ChaChaPoly_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484661001bf5d654afd000b60a48982a7f8f16bad1946aefa20866c7c142a94c47223332bc232984079635e54eb96a835e148dc8d60cae839375194f9c7b0ddc8c951 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=b9e79f9d8263bcf07bbcc8e8729039c8cce829d3be34aa7f1414aef1312e2e msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=cb46d49add7c73f9a1bc9c2bb015e114ff3c23aaff62326cd077f3d54d3d8d handshake=Noise_NXpsk0_25519_ChaChaPoly_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662545276316a0ed49eab2fa9c4d911322382 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484665fd1624f32ed036ff7fc7f8c27ff605eba031dca8f50f0750e420763654f319c3ca35ccf8d081dd3bc901f4a5d13c8f683208c9cd51ac4c469753652411a6a2b msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=9057ac2b936c434d8bd9a5f926136918b98c36c73d65ae6e092509dc0f7d1d msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=6434f211fcaa13b60694f51d53bd2d058231706b393d76016e6fb18500796a handshake=Noise_NXpsk1_25519_ChaChaPoly_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254043225c8bd9663ef3ef17c4f3a01688a msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466d6f1bac5db9338604250bf5aea410705dab380ac8d53e05070aa26bd4e8adba90e3e28528791e262d6447fc135a62b6ef174eca6f83586e29efebf0d211d6c17 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=2681c5a5a71b1a764618ffe8265b55b0262a8dc0e579ea417b506565587609 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=b512c5f3481260755d59236bcf47d03b49096fbfb58f4f01d3e57e93aa8a80 handshake=Noise_NXpsk2_25519_ChaChaPoly_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662549f846d3cf079683dacbc4b63ad6c0a01 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466492d0eb95d7c0b7d7e02e0057dab75d823438caf0ca19e7b8f550466c9e5ec10dcff0ef61dd99720eed6968a3a5f9ebc124df4a7e622f4aaa27dbf6803ab23d4 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=87c279f5b3cab2d36d5d53adfef24f41f8f0ad59541d80cfeb3d32a9373ab4 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=163c5ca8ea00dd3b81b2b494e038ad57c26277be9a54efbf0b491eb34621ea handshake=Noise_NX_25519_ChaChaPoly_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484661001bf5d654afd000b60a48982a7f8f16bad1946aefa20866c7c142a94c47223888ddf72adf7001627f8ed91dd333d25abda0084c02e273674c4f5a1c2f6bc0ba9c95969fa9346fbaf1f msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=b9e79f9d8263bcf07bbcc8e8729039c8cce829d3be34aa7f1414aef1312e2e msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=cb46d49add7c73f9a1bc9c2bb015e114ff3c23aaff62326cd077f3d54d3d8d handshake=Noise_NXpsk0_25519_ChaChaPoly_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625447633918cf073418422f4e800c64262116b557756d3917dea3b0 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484665fd1624f32ed036ff7fc7f8c27ff605eba031dca8f50f0750e420763654f319c22fc74d15ca64b517e5b7d93d4786c339c97ed31e367ab91ae6763a0ae92a90d8db97f341fa0af4b2922 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=9057ac2b936c434d8bd9a5f926136918b98c36c73d65ae6e092509dc0f7d1d msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=6434f211fcaa13b60694f51d53bd2d058231706b393d76016e6fb18500796a handshake=Noise_NXpsk1_25519_ChaChaPoly_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254feeb1e12496f2e4e0995be8115bad42c6477a3b1b28252a81fbe msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466d6f1bac5db9338604250bf5aea410705dab380ac8d53e05070aa26bd4e8adba9259737628f54586b0c82e86c3d58105635683343957a81560b3c76df030794ccb6677d91b03c63198fed msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=2681c5a5a71b1a764618ffe8265b55b0262a8dc0e579ea417b506565587609 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=b512c5f3481260755d59236bcf47d03b49096fbfb58f4f01d3e57e93aa8a80 handshake=Noise_NXpsk2_25519_ChaChaPoly_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548c01fe1c6c49957de78d567452df11303abb4e72c68fd934013b msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466492d0eb95d7c0b7d7e02e0057dab75d823438caf0ca19e7b8f550466c9e5ec1089cb6312ea00184d8e4823521c7542711e374382eb37dddd03434e498cfe49446d13a1f17641c62d74be msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=87c279f5b3cab2d36d5d53adfef24f41f8f0ad59541d80cfeb3d32a9373ab4 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=163c5ca8ea00dd3b81b2b494e038ad57c26277be9a54efbf0b491eb34621ea handshake=Noise_KX_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466179eeb7aae5b20dec5995bc6a5d6e2bb9ba4230601424a00e6db617861aa71450288e5ec4f28f4623eb6bdb44b3157684d77cd66463f11069c7d976244bc728d msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=c2bb1a0510ab355a2510ff3004b60eca89d1719792c5debfe35e8bacd3a22b msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=8b38dc71a41266bb63183e45bc3e44f8f57fe720828cbc1296dc6bfc7d2557 handshake=Noise_KXpsk0_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254939dacc481851a259b90b407652ca87c msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466d3c3067c9805256d1dc3e4270df2edf92b5490b88dfc45ad9d5a48b23d181af0dcad241275390b064c4b453d071f8e4ad6d2515685b25744b80f8e6f4a4abb7c msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=f7b885d922743399857f09ed19c19ca8a4e74cd85eda575b12444f1fed058f msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=2686fb37d67ed89179e0b5d0af77792ee6cf1a9b7e169af39512daeb1d20d3 handshake=Noise_KXpsk1_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662547062e9cf5576fc2b4c124d9ce66a28a0 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484668632910f8bae8e626c3c3ee7de1bc07dc38d0186546649ae93933bdc7edb0a65a46196ceff28ba865581ec2563330a8ce8891f325f8a478efc4c955d2eb6a37d msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=115fea697d7bcade2ef9a2d597bd4084a517fe809ecc0741ce9dd61c98fb90 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=c85e6c4d4331ad8ed2db83a7e9406ac663299046ea7582b1f5e2cc4c7c935d handshake=Noise_KXpsk2_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662545d1f4bb51a8be81e03d55eddabf13fbb msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484669cd62d93703ab4f915f66c4c10b254212de4a53b3d95a63ea962f6d35da0d9542ccb4b9b10b069dfaaf134297079a71db28c4babf29d84b7d8f8227826600fc9 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=409d4523fe0934586527baa3e12f1d4f5052096478e56e84c175fcc9b6625f msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=b7d53fd728a2b440653f65a1facc49bcad6ca6e0a78972c4271b8518290c91 handshake=Noise_KX_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466179eeb7aae5b20dec5995bc6a5d6e2bb9ba4230601424a00e6db617861aa71457d13eafd308a55b40ab5f394b4a062f11647d7c3399446edcb98c15fd689f9a1130785bb45bb91377c1c msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=c2bb1a0510ab355a2510ff3004b60eca89d1719792c5debfe35e8bacd3a22b msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=8b38dc71a41266bb63183e45bc3e44f8f57fe720828cbc1296dc6bfc7d2557 handshake=Noise_KXpsk0_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662542a49dcf4c8364f330f2c4096746db3b89b22d735da6a239394a2 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466d3c3067c9805256d1dc3e4270df2edf92b5490b88dfc45ad9d5a48b23d181af0d2bb9743fc882ac69de65ea6a60888a59d4fff629fa819bbff1024925852f1686ee8cf6c72c230c97381 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=f7b885d922743399857f09ed19c19ca8a4e74cd85eda575b12444f1fed058f msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=2686fb37d67ed89179e0b5d0af77792ee6cf1a9b7e169af39512daeb1d20d3 handshake=Noise_KXpsk1_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662543a9230768ed98f32a31dd2e8e4ebd76f2e0ca3824a4c211aeda0 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484668632910f8bae8e626c3c3ee7de1bc07dc38d0186546649ae93933bdc7edb0a651dbc7414ce613441d019292b1c34b8d0c3b6f6d04e36d77d8232f885f117d61218b74ceee4bb683247d0 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=115fea697d7bcade2ef9a2d597bd4084a517fe809ecc0741ce9dd61c98fb90 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=c85e6c4d4331ad8ed2db83a7e9406ac663299046ea7582b1f5e2cc4c7c935d handshake=Noise_KXpsk2_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662545c320f73198c23651d414b71ef96c3edcc0e4e02d78b3359ff30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484669cd62d93703ab4f915f66c4c10b254212de4a53b3d95a63ea962f6d35da0d9544a9cb36f29d81bffa4d9168eea4b4d5391296c52ec0585c8deeef0425f8728304a8f10ad563280a2f1d4 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=409d4523fe0934586527baa3e12f1d4f5052096478e56e84c175fcc9b6625f msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=b7d53fd728a2b440653f65a1facc49bcad6ca6e0a78972c4271b8518290c91 handshake=Noise_KX_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466179eeb7aae5b20dec5995bc6a5d6e2bb9ba4230601424a00e6db617861aa71458e36527aef883c8c96b8f626909171994d85960ab8d14303beb35b5df7204a10 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=c2bb1a0510ab355a2510ff3004b60eca89d1719792c5debfe35e8bacd3a22b msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=8b38dc71a41266bb63183e45bc3e44f8f57fe720828cbc1296dc6bfc7d2557 handshake=Noise_KXpsk0_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254f39aef73df6fe3c5f28de40ce7f759a0 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466d3c3067c9805256d1dc3e4270df2edf92b5490b88dfc45ad9d5a48b23d181af05d9187615bf9c1d9b1e5d7779bcee0bdcbb351df0b5b450a6ffcb11a5287109c msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=f7b885d922743399857f09ed19c19ca8a4e74cd85eda575b12444f1fed058f msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=2686fb37d67ed89179e0b5d0af77792ee6cf1a9b7e169af39512daeb1d20d3 handshake=Noise_KXpsk1_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254f39c39bdeb9989b9352beb67fbb47db0 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484668632910f8bae8e626c3c3ee7de1bc07dc38d0186546649ae93933bdc7edb0a65c6f3b964c11299306556d0df66e428db049c2698e430f4f642b228c12e8b196d msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=115fea697d7bcade2ef9a2d597bd4084a517fe809ecc0741ce9dd61c98fb90 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=c85e6c4d4331ad8ed2db83a7e9406ac663299046ea7582b1f5e2cc4c7c935d handshake=Noise_KXpsk2_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625492e67987c1b2adc0152f1442ae64a66d msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484669cd62d93703ab4f915f66c4c10b254212de4a53b3d95a63ea962f6d35da0d954f1d3d37785abc0bc28d3e37a0d3df4fbcea0bc3b6f47926decd3d4b98ea0990f msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=409d4523fe0934586527baa3e12f1d4f5052096478e56e84c175fcc9b6625f msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=b7d53fd728a2b440653f65a1facc49bcad6ca6e0a78972c4271b8518290c91 handshake=Noise_KX_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466179eeb7aae5b20dec5995bc6a5d6e2bb9ba4230601424a00e6db617861aa7145dda1510598297081009b0fc99622410c1647d7c3399446edcb98da03e57385e8faac62bdc41eadcecb8b msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=c2bb1a0510ab355a2510ff3004b60eca89d1719792c5debfe35e8bacd3a22b msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=8b38dc71a41266bb63183e45bc3e44f8f57fe720828cbc1296dc6bfc7d2557 handshake=Noise_KXpsk0_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662542a49dcf4c8364f330f2c15d431db17f7b786d48c641fbe6400e2 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466d3c3067c9805256d1dc3e4270df2edf92b5490b88dfc45ad9d5a48b23d181af0d9b183f5fbd413da83c7c79e1bd427b09d4fff629fa819bbff108d80d0b71ab1d99b7c818456879b06b6 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=f7b885d922743399857f09ed19c19ca8a4e74cd85eda575b12444f1fed058f msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=2686fb37d67ed89179e0b5d0af77792ee6cf1a9b7e169af39512daeb1d20d3 handshake=Noise_KXpsk1_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662543a9230768ed98f32a31d857e0da9b9145a8da70a019517797d63 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484668632910f8bae8e626c3c3ee7de1bc07dc38d0186546649ae93933bdc7edb0a6546e65dee7b9d77f189d5f5fa8ee92552c3b6f6d04e36d77d82327b7f5cb50529fd6b2174e66a7148312f msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=115fea697d7bcade2ef9a2d597bd4084a517fe809ecc0741ce9dd61c98fb90 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=c85e6c4d4331ad8ed2db83a7e9406ac663299046ea7582b1f5e2cc4c7c935d handshake=Noise_KXpsk2_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662545c320f73198c23651d417f6af622e2c553d933c8c67756f925b4 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484669cd62d93703ab4f915f66c4c10b254212de4a53b3d95a63ea962f6d35da0d954aa7c44244e9ce82031d2825a5dcd0c5c91296c52ec0585c8deee38dff35af0421f67c4a806b7f4f49d47 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=409d4523fe0934586527baa3e12f1d4f5052096478e56e84c175fcc9b6625f msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=b7d53fd728a2b440653f65a1facc49bcad6ca6e0a78972c4271b8518290c91 handshake=Noise_XN_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484660bee8aa990598c582bf25ff21b457e80 msg_2_payload= msg_2_ciphertext=291e0f5e79575df990b58e317022d3c6c864164d559dcb77ceb88a02eba2e0a422aa0bc47de0c7b744c10a26b0f4de12ca28ba39eb4266bbe53ef915a869eb69 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=f9972897d0a22fd3ab4f7df758c17201e716d92495d7e798597ca633fcfa79 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=663a74b07d26987f1aaea566c63fed3ab905d0549d4cbbba95998087711e7b handshake=Noise_XNpsk0_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254157c844130c0ac1a8cd295ab5c2863f2 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466d0ccb8f5058ba0a1fe9e0d072bb75403 msg_2_payload= msg_2_ciphertext=dd296759956a201688e8438b5452e3224f22f3ce9a0c57b37a16b930b0dc6ce29ed8196b7ab499814a3cf0cd656a4959302475376a205bb9aee6b4d6d6af5210 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=b8f919e1619e002fc009c8201390385e887e9cef040b20b93d6d92525060af msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=813ffe58a1028b85472449f2e7612dce5751dcc2ad70d889e91018a148fc69 handshake=Noise_XNpsk1_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625456e86321f5117e2826a5ad00441de277 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484662634d4221d0ec8fdda4507d9dcf91e08 msg_2_payload= msg_2_ciphertext=3a7a393db716dc075d961ce4109c2af6f7e5dcd35c0b947bf30c01936a6b4b36f1129b52c3bd379d90a216a63b3675a482fb307672a7e95517889addfc1cc0c5 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=97f376dd10bbfe09c7570b3514ff97a15fb7d7cefc2b25f5ce5a67dcd1cf67 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=9669b636c25732803353c3c1e70508120e8b6896a2fb5edab54f831d162db6 handshake=Noise_XNpsk2_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662549b78be66b1f2e09771269003303a25c1 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846606fea2bb9b9e69e297b06911a5d0d1c8 msg_2_payload= msg_2_ciphertext=f4364f3c48d2280a28b5a0cc4dbbdf75ae5efff3e129e5beff1ea88c7f501b9fd178457c94ad442beb3afa4f915c3ecb6a48f6a0ff1692761575a7903144b8f7 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=e6c2fa29df53fe75a34bea7633a930df3aa8c62e20accf544277163022c037 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=94ec62cb132c7c7ec8d99d702072fe1f9e1602bdca45023e8d3db9db63237d handshake=Noise_XNpsk3_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254a723d539c7b582ffdf1a53288cadbb26 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484669a62c45ef5d3c92b21360e796d4c197a msg_2_payload= msg_2_ciphertext=1e9a2da1ec0430295c3b8b7e1888bcb09293f61e62dfbdb29707348a95bdce2904ce827fd5330e814ba2346712de095e110c5aedd3543a74e86afa9d2cab6f83 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=9307b428397906f7e529cf6dd1bdf53f782a88f89a250c18dc83d57c9992dd msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=8b1a7574e6cee466e01ba7f20e6cf372188b6294b43823ebc4c4c8a753b6e0 handshake=Noise_XN_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466ea98bff8eb4696d6d3c0e4f70aba310a675391aaf82e0804fa79 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=291e0f5e79575df990b58e317022d3c6c864164d559dcb77ceb88a02eba2e0a499f907c37ae8e0c3aaffe34553249753254343342ae4704d7c23cd8a77a1807441d2c7501369bb467126 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=f9972897d0a22fd3ab4f7df758c17201e716d92495d7e798597ca633fcfa79 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=663a74b07d26987f1aaea566c63fed3ab905d0549d4cbbba95998087711e7b handshake=Noise_XNpsk0_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254ae18211db1dcdc553413922091f72d9ced221e2acda5a660f9b7 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466b660d1ecf94c4595dd57f654d3a0f19cccd9b63570f79de6c96e msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=dd296759956a201688e8438b5452e3224f22f3ce9a0c57b37a16b930b0dc6ce2a537ae7c3f8105a2d3205317f8106e9257c07ceb5be90bcae241636ec9f1d1403c7d54fdb497a925991f msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=b8f919e1619e002fc009c8201390385e887e9cef040b20b93d6d92525060af msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=813ffe58a1028b85472449f2e7612dce5751dcc2ad70d889e91018a148fc69 handshake=Noise_XNpsk1_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625467ec45c3d546c1618f39adc8f13e3f35a17f633a753012f9aa29 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466a92e7cbd80b059556fffcbb169e97c1bde48cfcac32e1368920f msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=3a7a393db716dc075d961ce4109c2af6f7e5dcd35c0b947bf30c01936a6b4b36982e61825971d574332da023645bb288e766c9dbe21f85a458860f34d47d5087b3e701cc52600fa760ce msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=97f376dd10bbfe09c7570b3514ff97a15fb7d7cefc2b25f5ce5a67dcd1cf67 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=9669b636c25732803353c3c1e70508120e8b6896a2fb5edab54f831d162db6 handshake=Noise_XNpsk2_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625419c32a8d476aa90292e1d2946f42be7dd73161301ecdd5168423 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484665c79e23e35136c510c909b68a7bf6508d04d169d772f42b5bc0e msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=f4364f3c48d2280a28b5a0cc4dbbdf75ae5efff3e129e5beff1ea88c7f501b9f1c3c70937fadc804f6b89718241ae97906d8bfebdb39bfd7b9fe0871270ae98eb13d651ecec51bc2d66e msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=e6c2fa29df53fe75a34bea7633a930df3aa8c62e20accf544277163022c037 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=94ec62cb132c7c7ec8d99d702072fe1f9e1602bdca45023e8d3db9db63237d handshake=Noise_XNpsk3_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662549974e0c1a1b524048c2bab05845477ddee545b9e24a00fa921d8 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484663070ecf7cc85144673b2911307e9d0e3ed49482c84a7a59d3334 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=1e9a2da1ec0430295c3b8b7e1888bcb09293f61e62dfbdb29707348a95bdce2923776b5ee769a4928746f064091987a2d97a14c5bf5c035f4991be19871e8779eb5a753c6d99be0a20d1 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=9307b428397906f7e529cf6dd1bdf53f782a88f89a250c18dc83d57c9992dd msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=8b1a7574e6cee466e01ba7f20e6cf372188b6294b43823ebc4c4c8a753b6e0 handshake=Noise_XN_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466ffcf5f753467c7c2b694d4eb00d1baaf msg_2_payload= msg_2_ciphertext=291e0f5e79575df990b58e317022d3c6c864164d559dcb77ceb88a02eba2e0a42fb1e938d3fb06653176bc867442b318b3360a8f9ebdc1524fe34b0d01725fc8 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=f9972897d0a22fd3ab4f7df758c17201e716d92495d7e798597ca633fcfa79 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=663a74b07d26987f1aaea566c63fed3ab905d0549d4cbbba95998087711e7b handshake=Noise_XNpsk0_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254fac3c8bd046a3e9d0b38ccd7698c7db6 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484665270ac63c46e1a1e26719e5752918e22 msg_2_payload= msg_2_ciphertext=dd296759956a201688e8438b5452e3224f22f3ce9a0c57b37a16b930b0dc6ce2d2a1fcad32691cfbd2db34ffb0eb021e5d7f48acb637ce70ed33921ee3ca689f msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=b8f919e1619e002fc009c8201390385e887e9cef040b20b93d6d92525060af msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=813ffe58a1028b85472449f2e7612dce5751dcc2ad70d889e91018a148fc69 handshake=Noise_XNpsk1_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625435b9059703f0f637c4ead9348dc36f16 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484669a201926a025f16da73a7cdf456738ce msg_2_payload= msg_2_ciphertext=3a7a393db716dc075d961ce4109c2af6f7e5dcd35c0b947bf30c01936a6b4b36a1cd9d2d29d8df1cae8a102e26684ead172e71f633ff50d7d7c573c35152b6c7 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=97f376dd10bbfe09c7570b3514ff97a15fb7d7cefc2b25f5ce5a67dcd1cf67 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=9669b636c25732803353c3c1e70508120e8b6896a2fb5edab54f831d162db6 handshake=Noise_XNpsk2_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541da3f1038dde89dca976e36d13d38cb8 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484661f04fde9d6d3ca84c7f1c7167cb63357 msg_2_payload= msg_2_ciphertext=f4364f3c48d2280a28b5a0cc4dbbdf75ae5efff3e129e5beff1ea88c7f501b9fd634eda749f434e721ff28d808524bd37f20a0c93e065a591c9272510869a9e1 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=e6c2fa29df53fe75a34bea7633a930df3aa8c62e20accf544277163022c037 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=94ec62cb132c7c7ec8d99d702072fe1f9e1602bdca45023e8d3db9db63237d handshake=Noise_XNpsk3_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254991d7378909ba56f867c5a46cb280527 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466b7d7d49c8cdbf29b0e5a7f486c7d774f msg_2_payload= msg_2_ciphertext=1e9a2da1ec0430295c3b8b7e1888bcb09293f61e62dfbdb29707348a95bdce29a4fd3c75a1f27bda13b92eeb81995531e73aaf41be201edd340e9decbcce9b42 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=9307b428397906f7e529cf6dd1bdf53f782a88f89a250c18dc83d57c9992dd msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=8b1a7574e6cee466e01ba7f20e6cf372188b6294b43823ebc4c4c8a753b6e0 handshake=Noise_XN_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466ea98bff8eb4696d6d3c004ce0d42550c2b03ee2612ca6e9eec18 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=291e0f5e79575df990b58e317022d3c6c864164d559dcb77ceb88a02eba2e0a4db2f87efd55abe5bb4ea2f0003a2497c254343342ae4704d7c233e1bd4602b35f158072774208aca6994 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=f9972897d0a22fd3ab4f7df758c17201e716d92495d7e798597ca633fcfa79 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=663a74b07d26987f1aaea566c63fed3ab905d0549d4cbbba95998087711e7b handshake=Noise_XNpsk0_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254ae18211db1dcdc55341394577371548dcdaddb6157b5753662ae msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466b660d1ecf94c4595dd5712cccfbae9909b1ab004f4f12bff3a33 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=dd296759956a201688e8438b5452e3224f22f3ce9a0c57b37a16b930b0dc6ce298cc5dd18599c844fea755c57ed3c85257c07ceb5be90bcae241fee76d9fbcd17295f12f3fa2ec616528 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=b8f919e1619e002fc009c8201390385e887e9cef040b20b93d6d92525060af msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=813ffe58a1028b85472449f2e7612dce5751dcc2ad70d889e91018a148fc69 handshake=Noise_XNpsk1_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625467ec45c3d546c1618f393067aed902b79b0759bf968282a2c103 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466a92e7cbd80b059556fff5b12b14c05770aff36bcc9ebc7ddeee2 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=3a7a393db716dc075d961ce4109c2af6f7e5dcd35c0b947bf30c01936a6b4b36dd253a46b8575151d8867881d28453aee766c9dbe21f85a4588624fa9b30ac191ca69a7bfffa584f28a4 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=97f376dd10bbfe09c7570b3514ff97a15fb7d7cefc2b25f5ce5a67dcd1cf67 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=9669b636c25732803353c3c1e70508120e8b6896a2fb5edab54f831d162db6 handshake=Noise_XNpsk2_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625419c32a8d476aa90292e13801b5d6071e1336ffd6ea151b596406 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484665c79e23e35136c510c9085f9ab38ad9a3ad5ef10537e6dc8d07c msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=f4364f3c48d2280a28b5a0cc4dbbdf75ae5efff3e129e5beff1ea88c7f501b9f3e33f6dfc8d3fe6635968a6600df1d6406d8bfebdb39bfd7b9fed61850abbf511f0095bcb77843c3d61b msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=e6c2fa29df53fe75a34bea7633a930df3aa8c62e20accf544277163022c037 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=94ec62cb132c7c7ec8d99d702072fe1f9e1602bdca45023e8d3db9db63237d handshake=Noise_XNpsk3_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662549974e0c1a1b524048c2b37c669f275837a99381fa77f882cfbc2 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484663070ecf7cc85144673b207ee9a47874207daa4bf8a066372efbb msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=1e9a2da1ec0430295c3b8b7e1888bcb09293f61e62dfbdb29707348a95bdce292304418a554352333e6b377871f2d1e8d97a14c5bf5c035f4991b48c2c8ad26971d51de56abfc8ef0295 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=9307b428397906f7e529cf6dd1bdf53f782a88f89a250c18dc83d57c9992dd msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=8b1a7574e6cee466e01ba7f20e6cf372188b6294b43823ebc4c4c8a753b6e0 handshake=Noise_IN_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548f40c5adb68f25624ae5b214ea767a6ec94d829d3d7b5e1ad1ba6f3e2138285f msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466ceaaefa2a1d4a51bc7f72a564d71bc35 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=830ff5384b15750877d9469ab3b96e768a5e2fb618f00ca1e32da37d165221 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=832c1dca2a6b7c02b170c8d8cdec75e14983c8eae7ce6a07cc3392853455a9 handshake=Noise_INpsk0_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662547f70fa944b4bcd3d0d716f20a1eb95435666a15bb48ee700b648d33cef9f93019e0f8047ef1c51f2a5ff1cd3bcd30b6721663f533a5f40592962147438962718 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484662ee035a51c82be8d63659f7a3dcb7efb msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=76707435fd3a637b4f9628bed8250d212f363d49580ee23c3edb82bc538cd2 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=5afb8fe565768ec14254b79c64316cdd3895062d4533d37634fa8f3f273cb3 handshake=Noise_INpsk1_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254e8e12229cd4637c3412fe01f0b06cbbed1697731baf0add84a48598d80045cf16f2a56cf605314390dbffd940401319897aa7f01a4e35a1fe1e509be03f8d287 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484660244d36287cc5719d495d63952e4bb9b msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=781eb466f56d8404382803362e53dbfeab396f39e8614f70fd644325ce1803 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=86bfba9287f9d6663701546e14ccbad7b7e24be798aaf3f43a36a855d7ca62 handshake=Noise_INpsk2_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541af3a1c3bc570ea6628903b6958854f3ccf77420136473d50d9ec58570d6ad5c4e176ab1a556abfa6141ec06d5ebe92ae95582f12402263635e5ddc2ab70d6d2 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846620e5ec2a4f6ef544a3d54fa9185006e1 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=ce130309e71e17105be8aa8b21f6f46258b99dae8d8818db759ea80677f64d msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=4f2a1afcbfd92475f02b92eed96533323b3771c0c9833bbd87dd84373a89bc handshake=Noise_IN_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548f40c5adb68f25624ae5b214ea767a6ec94d829d3d7b5e1ad1ba6f3e2138285f746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484661df866ef53fc2daf09cd18e25f560f54e710d97f93f341248ad1 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=830ff5384b15750877d9469ab3b96e768a5e2fb618f00ca1e32da37d165221 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=832c1dca2a6b7c02b170c8d8cdec75e14983c8eae7ce6a07cc3392853455a9 handshake=Noise_INpsk0_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662547f70fa944b4bcd3d0d716f20a1eb95435666a15bb48ee700b648d33cef9f93019e0f8047ef1c51f2a5ff1cd3bcd30b673d3b9677d899fc7f3d4b1258c0ff0ec33195ae6869722122a130 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466511d7d7f1904de2a67a43753ae73743bfca8e1aac9dfacb410ed msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=76707435fd3a637b4f9628bed8250d212f363d49580ee23c3edb82bc538cd2 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=5afb8fe565768ec14254b79c64316cdd3895062d4533d37634fa8f3f273cb3 handshake=Noise_INpsk1_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254e8e12229cd4637c3412fe01f0b06cbbed1697731baf0add84a48598d80045cf16f2a56cf605314390dbffd9404013198a9436856dc49b27a0698cb3ff57e3a14cbb3a80397fc12b67135 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846694b4c5866a584c0a70d8bee74ef35f21d601f7d4b9699b0a2c67 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=781eb466f56d8404382803362e53dbfeab396f39e8614f70fd644325ce1803 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=86bfba9287f9d6663701546e14ccbad7b7e24be798aaf3f43a36a855d7ca62 handshake=Noise_INpsk2_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541af3a1c3bc570ea6628903b6958854f3ccf77420136473d50d9ec58570d6ad5c4e176ab1a556abfa6141ec06d5ebe92ae3533b3481ea038673f4428b39a64a07fc333516e98346439cd0 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846603fa37b0787d046e5b39334226f42b1c63b64cb45dd4a9b095eb msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=ce130309e71e17105be8aa8b21f6f46258b99dae8d8818db759ea80677f64d msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=4f2a1afcbfd92475f02b92eed96533323b3771c0c9833bbd87dd84373a89bc handshake=Noise_IN_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548f40c5adb68f25624ae5b214ea767a6ec94d829d3d7b5e1ad1ba6f3e2138285f msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484666660569f7c7fcd07d8e9d1a7c3634f60 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=830ff5384b15750877d9469ab3b96e768a5e2fb618f00ca1e32da37d165221 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=832c1dca2a6b7c02b170c8d8cdec75e14983c8eae7ce6a07cc3392853455a9 handshake=Noise_INpsk0_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662547f70fa944b4bcd3d0d716f20a1eb95435666a15bb48ee700b648d33cef9f930187a4370f2d9e5767873b7171e38897f591b606a1131011cee4173a3db7e22891 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466f48a955b0b5cd099e7df95661e2862ad msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=76707435fd3a637b4f9628bed8250d212f363d49580ee23c3edb82bc538cd2 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=5afb8fe565768ec14254b79c64316cdd3895062d4533d37634fa8f3f273cb3 handshake=Noise_INpsk1_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254e8e12229cd4637c3412fe01f0b06cbbed1697731baf0add84a48598d80045cf11aaf3ee7de388d106596fdd48f72dd649b6b876b67bb13aeba09c64daf11ecd1 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466060c96c5c428dca80c960fe9dd5a6ca8 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=781eb466f56d8404382803362e53dbfeab396f39e8614f70fd644325ce1803 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=86bfba9287f9d6663701546e14ccbad7b7e24be798aaf3f43a36a855d7ca62 handshake=Noise_INpsk2_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541af3a1c3bc570ea6628903b6958854f3ccf77420136473d50d9ec58570d6ad5cc18eb20f16747975cab6ac45d73488d66cc7b0294a6220498d30ba8bcf4f3952 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846644c3cae20a10acfac961f89a75b787df msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=ce130309e71e17105be8aa8b21f6f46258b99dae8d8818db759ea80677f64d msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=4f2a1afcbfd92475f02b92eed96533323b3771c0c9833bbd87dd84373a89bc handshake=Noise_IN_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548f40c5adb68f25624ae5b214ea767a6ec94d829d3d7b5e1ad1ba6f3e2138285f746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484661df866ef53fc2daf09cdb07952c281cdcc4480337d476e359f64 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=830ff5384b15750877d9469ab3b96e768a5e2fb618f00ca1e32da37d165221 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=832c1dca2a6b7c02b170c8d8cdec75e14983c8eae7ce6a07cc3392853455a9 handshake=Noise_INpsk0_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662547f70fa944b4bcd3d0d716f20a1eb95435666a15bb48ee700b648d33cef9f930187a4370f2d9e5767873b7171e38897f53d3b9677d899fc7f3d4b2a7f9618049af0a0133f690fec587926 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466511d7d7f1904de2a67a437e109b3089a6a3efa6d5fe753113a09 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=76707435fd3a637b4f9628bed8250d212f363d49580ee23c3edb82bc538cd2 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=5afb8fe565768ec14254b79c64316cdd3895062d4533d37634fa8f3f273cb3 handshake=Noise_INpsk1_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254e8e12229cd4637c3412fe01f0b06cbbed1697731baf0add84a48598d80045cf11aaf3ee7de388d106596fdd48f72dd64a9436856dc49b27a0698e39b1a331575f7dbc783c4b27db56d56 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846694b4c5866a584c0a70d80f9608c9ab477dd6be32ca78b3452e7a msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=781eb466f56d8404382803362e53dbfeab396f39e8614f70fd644325ce1803 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=86bfba9287f9d6663701546e14ccbad7b7e24be798aaf3f43a36a855d7ca62 handshake=Noise_INpsk2_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541af3a1c3bc570ea6628903b6958854f3ccf77420136473d50d9ec58570d6ad5cc18eb20f16747975cab6ac45d73488d6e3533b3481ea038673f4bae24ae04bf0f379985ae3359e56cf1d msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846603fa37b0787d046e5b39156540f78e37ab584d177787c7570713 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=ce130309e71e17105be8aa8b21f6f46258b99dae8d8818db759ea80677f64d msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=4f2a1afcbfd92475f02b92eed96533323b3771c0c9833bbd87dd84373a89bc handshake=Noise_XK_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254a8121f6d88933f372d3d8558ba96c6a0 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484660b117a47d5ea6ba03a4e8a00f4bc0e88 msg_2_payload= msg_2_ciphertext=2a607b984bb2614e9c6b84c0a735f9cd1e4bf3ff01edf33d6626f16ac1f12f0c5230239edb11e337d70427365bb94949ce7fda351e4f8ca43da1e91c0559d921 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=af719ddf29a7df759e00d10bf397d6e72d961dfa146e38a48e8856747db349 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=01cb205a382fe3800d1194755b30433dc1250c4e9ab65581919777e1e31862 handshake=Noise_XKpsk0_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254e5f2f445afe0d790bd2631a553574915 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846641ccb8f7db404e7089382d696e3f2043 msg_2_payload= msg_2_ciphertext=10fd75cdb4d7a71ef3d8713d7d3ee0fe77eefaac88a1cc0e8fb1c8598830a26ca429ae726b1c48e9af560b971005eccd788717c413004ef0a0fc54b26fc39d72 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=6c00201f24d7406b7a41e346011509fc9726bf3cd3fcb0099f893241f292a5 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=4385be501f1af8ec43aeb67163036606dba4b666f59e77f89ce03b86efaf3a handshake=Noise_XKpsk1_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662543336582f35b4811afc0009c5bfe23fb6 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466f0b2cda351a7491a1a8d233f694a900f msg_2_payload= msg_2_ciphertext=d9ecc3d1ca57c998fe713d129c081b9b8ad9ce9a519179902a57600b30ce6f5cd976176cc09af329cc934132ef8e22b2ad160e39304ec60451a20c5d535db720 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=fd90a09b18aca3fb4322a97ba23a61973ef7a0617af12ac48a9a1ce3a59cdc msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=b139c0e387155e21af5751ced5df67d118e4ec857c5aad862bc90a024853bc handshake=Noise_XKpsk2_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662545a532081892316ccc914c1f41b95fd32 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846620d7abc3c895614c290126a72d27e586 msg_2_payload= msg_2_ciphertext=d3a8c16bc7ec7a53b13ed69e7307bfedb166350efaafad356bbe13865f8305b4271fa9f8941fbb5227e2e99ca7272ad4cf688f2a831138f199cfd07f2048b360 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=8b8306bca22f2ba97f257b5658a95c6c17aeb73208ac47adb53e6f34f32dda msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=3ccc1f6d694e1f807baa7077c3917823fd3d5d0c1acb9a819dc2ecea0740d3 handshake=Noise_XKpsk3_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625467ece9526c5e98a95ef06540641ce080 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846669b9f0e8b083bd61a6ee3c2d1376b7ce msg_2_payload= msg_2_ciphertext=cb86a2b771eb68b697b00603224426b59b2e4cc522c385955fe80b89936fdc879d6ceedd6144d1f246e83474db6628e531eef9b73bece378cef0d0783c520c44 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=9961ea7152c68324f433f74f14cf453872f922c078365f6eb72d1eaab869ed msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=57c5a35b57323a4841a2535029c297d298028e10e798e0fbcca41110ff6bc1 handshake=Noise_XK_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254f6cb6fe7e80444bb3154cc8c6ee7d1303de77495fc986b7ede43 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846671a438132a5b2eb4b6a07e26cde62f24cc303c50baebbc111c88 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=2a607b984bb2614e9c6b84c0a735f9cd1e4bf3ff01edf33d6626f16ac1f12f0cbae76bfc135b5828a7ff27f023ea59cc8dc0802c5d9d369d77f4bcf1bdd8a6c3205c28db784528897fcc msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=af719ddf29a7df759e00d10bf397d6e72d961dfa146e38a48e8856747db349 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=01cb205a382fe3800d1194755b30433dc1250c4e9ab65581919777e1e31862 handshake=Noise_XKpsk0_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662546b45ff089253cdcc224ba73eab621cc196ddf50935e457ea5640 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484667d787668fb251e9de3b703c7a10f7f6541db12cfde30137eb731 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=10fd75cdb4d7a71ef3d8713d7d3ee0fe77eefaac88a1cc0e8fb1c8598830a26c3a7a94677b6f6971a918b1f6142f0f8add5ea9a3086edd1694264640113dafd9941831d9f8e59458af6c msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=6c00201f24d7406b7a41e346011509fc9726bf3cd3fcb0099f893241f292a5 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=4385be501f1af8ec43aeb67163036606dba4b666f59e77f89ce03b86efaf3a handshake=Noise_XKpsk1_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254f7aa65da5c5393de3c5535e15dbfb46a665260e9f00887efb923 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466578656f83336512ba12d91d1410dee12011adad4e28674496199 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=d9ecc3d1ca57c998fe713d129c081b9b8ad9ce9a519179902a57600b30ce6f5c761b50e9f3ba0c4d57466b8b7f36c21246578936ef0f0cde78ec9962c6dc167becb1bb4943c865e84f44 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=fd90a09b18aca3fb4322a97ba23a61973ef7a0617af12ac48a9a1ce3a59cdc msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=b139c0e387155e21af5751ced5df67d118e4ec857c5aad862bc90a024853bc handshake=Noise_XKpsk2_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662540e6f56acb931ce6a0d25e1f25351be198ed759a1ef122e6a47c5 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466bc88a17b8b5854bac07fd6b2a163ca81ce377f77ed9a6565f2ff msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=d3a8c16bc7ec7a53b13ed69e7307bfedb166350efaafad356bbe13865f8305b479ef186dc0bf7da9b3969fc460549a4f75ef7aedc759cb34d7baf24c96274d5de3ea057059bf346967bb msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=8b8306bca22f2ba97f257b5658a95c6c17aeb73208ac47adb53e6f34f32dda msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=3ccc1f6d694e1f807baa7077c3917823fd3d5d0c1acb9a819dc2ecea0740d3 handshake=Noise_XKpsk3_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254ef3e6a97158d33a0e062f662ee40189264748f8f4669b195157a msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466e69d80c877ed191a57840a873d4d140ed15adb13fc5e0faceae5 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=cb86a2b771eb68b697b00603224426b59b2e4cc522c385955fe80b89936fdc8768b3221f7eb3474b3a397b412566a083eae667065d5d8520f96dc500ef05901b2c97eb3e257b5b641688 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=9961ea7152c68324f433f74f14cf453872f922c078365f6eb72d1eaab869ed msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=57c5a35b57323a4841a2535029c297d298028e10e798e0fbcca41110ff6bc1 handshake=Noise_XK_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254956f94f7a6fcc381776893a9419a1391 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484662dcab0911950a5414c1739ef201b0d59 msg_2_payload= msg_2_ciphertext=2a607b984bb2614e9c6b84c0a735f9cd1e4bf3ff01edf33d6626f16ac1f12f0ce46707d4054136e38d139c40429a1c7bdfe2618fcd66e1d1c993a5d724149ad3 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=af719ddf29a7df759e00d10bf397d6e72d961dfa146e38a48e8856747db349 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=01cb205a382fe3800d1194755b30433dc1250c4e9ab65581919777e1e31862 handshake=Noise_XKpsk0_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625480f041b1faae93dc9ad4e24164074a72 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466049ae30e300696665182cd0c2c5a3333 msg_2_payload= msg_2_ciphertext=10fd75cdb4d7a71ef3d8713d7d3ee0fe77eefaac88a1cc0e8fb1c8598830a26c27529778073a3c1eca1366f61e1e6df01f4c362cabd86d507f717372d3b42cde msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=6c00201f24d7406b7a41e346011509fc9726bf3cd3fcb0099f893241f292a5 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=4385be501f1af8ec43aeb67163036606dba4b666f59e77f89ce03b86efaf3a handshake=Noise_XKpsk1_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625459b3fc3e146bee1bedd48d2e529619c9 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466d8091dc1177e44919beeef55f461c8f5 msg_2_payload= msg_2_ciphertext=d9ecc3d1ca57c998fe713d129c081b9b8ad9ce9a519179902a57600b30ce6f5c82a04833784ccfb5e9722ca5241a6755c3cbc5f3606b84da1baa6576e7b927d8 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=fd90a09b18aca3fb4322a97ba23a61973ef7a0617af12ac48a9a1ce3a59cdc msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=b139c0e387155e21af5751ced5df67d118e4ec857c5aad862bc90a024853bc handshake=Noise_XKpsk2_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254de5fed603c0f5e7048cde4754accb939 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484664a79bd841524585be070029e87cf5b17 msg_2_payload= msg_2_ciphertext=d3a8c16bc7ec7a53b13ed69e7307bfedb166350efaafad356bbe13865f8305b4c5551963da60c1367a4ddb92d1aeebab7f9e1068c5b07e44cd6de3b644761c55 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=8b8306bca22f2ba97f257b5658a95c6c17aeb73208ac47adb53e6f34f32dda msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=3ccc1f6d694e1f807baa7077c3917823fd3d5d0c1acb9a819dc2ecea0740d3 handshake=Noise_XKpsk3_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254a20106c4f0d2e1d15b488b9120d587a7 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484664cb1d6364acf843b72742c6e40fb7816 msg_2_payload= msg_2_ciphertext=cb86a2b771eb68b697b00603224426b59b2e4cc522c385955fe80b89936fdc876f2d10e9970e2e2a05abf249856727901c01817fcd79e7bb15ca824f74e20dbb msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=9961ea7152c68324f433f74f14cf453872f922c078365f6eb72d1eaab869ed msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=57c5a35b57323a4841a2535029c297d298028e10e798e0fbcca41110ff6bc1 handshake=Noise_XK_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254f6cb6fe7e80444bb315499a7f5f08590af0d50a5359f99e54dbe msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846671a438132a5b2eb4b6a09e2096243969b42b4b9a198dc894d2e9 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=2a607b984bb2614e9c6b84c0a735f9cd1e4bf3ff01edf33d6626f16ac1f12f0c0912c9cd375503ce9e805b172ad0d4698dc0802c5d9d369d77f4ade77f73640bd9d60f3899f36dfde35b msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=af719ddf29a7df759e00d10bf397d6e72d961dfa146e38a48e8856747db349 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=01cb205a382fe3800d1194755b30433dc1250c4e9ab65581919777e1e31862 handshake=Noise_XKpsk0_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662546b45ff089253cdcc224b4eb91d5554d75cc6efe1975d9068377a msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484667d787668fb251e9de3b7940a90cd22958f5cbf27ca154b6b22de msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=10fd75cdb4d7a71ef3d8713d7d3ee0fe77eefaac88a1cc0e8fb1c8598830a26ceb2af92575fa2c196715cdff6e5a2bd2dd5ea9a3086edd169426bb9c6f9f3ef69ab1bca891788d793838 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=6c00201f24d7406b7a41e346011509fc9726bf3cd3fcb0099f893241f292a5 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=4385be501f1af8ec43aeb67163036606dba4b666f59e77f89ce03b86efaf3a handshake=Noise_XKpsk1_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254f7aa65da5c5393de3c5548df4e50beec4d5d686ea0a58b5d7c07 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466578656f83336512ba12ddb9299155eb66d8b8c563c46b2650045 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=d9ecc3d1ca57c998fe713d129c081b9b8ad9ce9a519179902a57600b30ce6f5c7c893705678fdd420468b74e00732ced46578936ef0f0cde78ec005dc5d6cedeee43ee05dcddc151e174 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=fd90a09b18aca3fb4322a97ba23a61973ef7a0617af12ac48a9a1ce3a59cdc msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=b139c0e387155e21af5751ced5df67d118e4ec857c5aad862bc90a024853bc handshake=Noise_XKpsk2_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662540e6f56acb931ce6a0d25a7d58f03a624f2edffe6889a3cc1bdb4 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466bc88a17b8b5854bac07f57eb97d0e6556bd36bf0765632a4a0d9 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=d3a8c16bc7ec7a53b13ed69e7307bfedb166350efaafad356bbe13865f8305b495169d8ddfd2ce2b08da7fb2185ad2f975ef7aedc759cb34d7ba5b6a6521406803adf71d8e3f467e6b5e msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=8b8306bca22f2ba97f257b5658a95c6c17aeb73208ac47adb53e6f34f32dda msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=3ccc1f6d694e1f807baa7077c3917823fd3d5d0c1acb9a819dc2ecea0740d3 handshake=Noise_XKpsk3_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254ef3e6a97158d33a0e062dfd67d4d95e6b70c838462a3c8f93c11 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466e69d80c877ed191a5784108e0821d062d135c79ecd1e1d32e495 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=cb86a2b771eb68b697b00603224426b59b2e4cc522c385955fe80b89936fdc879e3d3e2544d69c1bfcb5c318fcadaf1beae667065d5d8520f96da952f2d9dd6784e56b3af33f9e2f6a7d msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=9961ea7152c68324f433f74f14cf453872f922c078365f6eb72d1eaab869ed msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=57c5a35b57323a4841a2535029c297d298028e10e798e0fbcca41110ff6bc1 handshake=Noise_IK_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625471316e70ec2670fe80a4529101864a5dac3d5f9c0924e8d38cecd60c54adbaa284b6111d7779c4ee7bb9c56da492e5a80972d99ccbf7d9068e6e90a7a73a01e9 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484666953a0bb0be9e3cb75769d93c5a16090 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=dc52cf04c64e4b750c00444789e41cb1abe496381a2d1b42303b231e809437 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=4e39fa2317aba599efd3f7a7ca1de12dfae13bc630cc8768ce6326894fb250 handshake=Noise_IKpsk0_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548a773d92dab8d730d4809faed6fbf25151dc4609a2020980934c02fa2026e50395c19e290fc2b0ebd1926e25516eaa74382fef41e27d86725aac235f5ec54486 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484667c6f4245d9e5b32e9e357b2b8858590d msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=186910b9f7f96154beaaa85cd7bc247243468524c12329a05a42ca5a36c68f msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=cd2f07315236b6e428120a37bbfaab7b1c58f4d55a2242e02c6e7bb943500b handshake=Noise_IKpsk1_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662540d9201affcf03e61b649d92ff393eb2ee186823f5369731162b2f772cfc6371bcbe8d7e19394282f1efe8a67e2b8322dbcac776930e9ed0a112705ef2f6f2fb6 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846645235dc77860e6902834d55b53616e13 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=c64fdb57aa336721d15fb7ab26fe477cda48a1bf9e0ad3bc4cd554b0740b7e msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=b7601a7f5ac11f9241580f13b13d47a05b9e0ac4a31aa9229b455d6850f6f4 handshake=Noise_IKpsk2_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254b62f8e1b309574de35d98d9a4088e6919c1849b2c5254dcbca5494537cb4a72988a30055e89f105e4a2ec94ffe1e01b210d70746671e7bffca493129849aeff4 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466aa41d4650249b9c0c26cbc1ce87e8c1f msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=f4c177d26066f6951689eeb7dba6199b0a71514482d9fd58cab9c9da5ebe95 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=15e2992826a7c63bdc9c36c422f0625aa3cddb283aaf9aea44444d8ffdbe82 handshake=Noise_IK_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625471316e70ec2670fe80a4529101864a5dac3d5f9c0924e8d38cecd60c54adbaa284b6111d7779c4ee7bb9c56da492e5a86e5ed547305fd8e63d0c6f2932f3a5c642bda3b85699cfd4af02 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466b0981ce42d3aee24e400cc2d7c0851db983a76950d68ac02018e msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=dc52cf04c64e4b750c00444789e41cb1abe496381a2d1b42303b231e809437 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=4e39fa2317aba599efd3f7a7ca1de12dfae13bc630cc8768ce6326894fb250 handshake=Noise_IKpsk0_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548a773d92dab8d730d4809faed6fbf25151dc4609a2020980934c02fa2026e50395c19e290fc2b0ebd1926e25516eaa74a8c2db362d37b8bd047718944128a324cc8464b8770aa0edb54d msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466fa4432021f183c112445ce9dd4839730062f80545088527f6ab7 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=186910b9f7f96154beaaa85cd7bc247243468524c12329a05a42ca5a36c68f msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=cd2f07315236b6e428120a37bbfaab7b1c58f4d55a2242e02c6e7bb943500b handshake=Noise_IKpsk1_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662540d9201affcf03e61b649d92ff393eb2ee186823f5369731162b2f772cfc6371bcbe8d7e19394282f1efe8a67e2b8322d2307641fa5171d2e6a90b7327908bd3a4c0ba2647c9fbf326342 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466f6777d6ce0d20a6334912c2cce256a5baafbb4981cb3b57e2b7f msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=c64fdb57aa336721d15fb7ab26fe477cda48a1bf9e0ad3bc4cd554b0740b7e msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=b7601a7f5ac11f9241580f13b13d47a05b9e0ac4a31aa9229b455d6850f6f4 handshake=Noise_IKpsk2_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254b62f8e1b309574de35d98d9a4088e6919c1849b2c5254dcbca5494537cb4a72988a30055e89f105e4a2ec94ffe1e01b2e07148a37250771da813ab2d25f8ebfd885dbf1a2d381a28b36e msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846655590e80a4cbf7b11a80ddd081ca9aca27a45d1ad37939362f98 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=f4c177d26066f6951689eeb7dba6199b0a71514482d9fd58cab9c9da5ebe95 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=15e2992826a7c63bdc9c36c422f0625aa3cddb283aaf9aea44444d8ffdbe82 handshake=Noise_IK_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625471316e70ec2670fe80a4529101864a5dac3d5f9c0924e8d38cecd60c54adbaa2f602a28ed62afc1421fb6217fa8bb34ec2ffe02e3cde39a920ebf369ebc4d7e2 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484662b2ab0ecf235887681b76ad519b29032 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=dc52cf04c64e4b750c00444789e41cb1abe496381a2d1b42303b231e809437 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=4e39fa2317aba599efd3f7a7ca1de12dfae13bc630cc8768ce6326894fb250 handshake=Noise_IKpsk0_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548a773d92dab8d730d4809faed6fbf25151dc4609a2020980934c02fa2026e5035a6b8c83d8d35b4be37728726934df7fa54ca976c7ac99763b5b503dedabf110 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484667c2bd068de83287251c4332dfaf109e3 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=186910b9f7f96154beaaa85cd7bc247243468524c12329a05a42ca5a36c68f msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=cd2f07315236b6e428120a37bbfaab7b1c58f4d55a2242e02c6e7bb943500b handshake=Noise_IKpsk1_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662540d9201affcf03e61b649d92ff393eb2ee186823f5369731162b2f772cfc6371b56d4c205efdaadafe7ad43991634897df8a65cce5462ff5edf7a3cb303d23cb5 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c1bd3e2fdbb59170ea903582e5173315 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=c64fdb57aa336721d15fb7ab26fe477cda48a1bf9e0ad3bc4cd554b0740b7e msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=b7601a7f5ac11f9241580f13b13d47a05b9e0ac4a31aa9229b455d6850f6f4 handshake=Noise_IKpsk2_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254b62f8e1b309574de35d98d9a4088e6919c1849b2c5254dcbca5494537cb4a7295084dc6a278b90d5443be18249717177d5e8e7d7aa1d5047cac7e122ceb801eb msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484667276e5a1b63d8f369009fcbf44acc6b9 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=f4c177d26066f6951689eeb7dba6199b0a71514482d9fd58cab9c9da5ebe95 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=15e2992826a7c63bdc9c36c422f0625aa3cddb283aaf9aea44444d8ffdbe82 handshake=Noise_IK_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625471316e70ec2670fe80a4529101864a5dac3d5f9c0924e8d38cecd60c54adbaa2f602a28ed62afc1421fb6217fa8bb34e6e5ed547305fd8e63d0c7272edad8555d9482a258f9fcd94b9b2 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466b0981ce42d3aee24e4004d6ea9acd8a847242a19f3f0f4cb0976 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=dc52cf04c64e4b750c00444789e41cb1abe496381a2d1b42303b231e809437 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=4e39fa2317aba599efd3f7a7ca1de12dfae13bc630cc8768ce6326894fb250 handshake=Noise_IKpsk0_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548a773d92dab8d730d4809faed6fbf25151dc4609a2020980934c02fa2026e5035a6b8c83d8d35b4be37728726934df7fa8c2db362d37b8bd047781dee28aded1f414d2c10d890fa2eba1 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466fa4432021f183c112445d6ff055cdbdc1b47a925e1550a0242a2 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=186910b9f7f96154beaaa85cd7bc247243468524c12329a05a42ca5a36c68f msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=cd2f07315236b6e428120a37bbfaab7b1c58f4d55a2242e02c6e7bb943500b handshake=Noise_IKpsk1_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662540d9201affcf03e61b649d92ff393eb2ee186823f5369731162b2f772cfc6371b56d4c205efdaadafe7ad43991634897d2307641fa5171d2e6a90d2f10229135bee69c5e8987beeaff24e msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466f6777d6ce0d20a633491e32380e0bba416095b23e6c06497fd0c msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=c64fdb57aa336721d15fb7ab26fe477cda48a1bf9e0ad3bc4cd554b0740b7e msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=b7601a7f5ac11f9241580f13b13d47a05b9e0ac4a31aa9229b455d6850f6f4 handshake=Noise_IKpsk2_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254b62f8e1b309574de35d98d9a4088e6919c1849b2c5254dcbca5494537cb4a7295084dc6a278b90d5443be18249717177e07148a37250771da813c0db249d31475e830bbcc50ce9aeab43 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846655590e80a4cbf7b11a803755ea3f2276bcb10438d218a79e05cf msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=f4c177d26066f6951689eeb7dba6199b0a71514482d9fd58cab9c9da5ebe95 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=15e2992826a7c63bdc9c36c422f0625aa3cddb283aaf9aea44444d8ffdbe82 handshake=Noise_XX_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466b0b018e349141e1b16c68fe9a6cb1183c260c44bb83c93a140953ad45612b8c64bb3b17125ca3fb8cf0cd955affd684b70d7a73e49f11219837f16d3f7544832 msg_2_payload= msg_2_ciphertext=b4c5f23f127237b5a80ac12f3a3548fe46c39172f6b180eb1e023e6e19e283eeb2c9403c731010215a57c3149b0f7aaec1f10503228b36cd1662e940ecc38fd5 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=adcafe99678efda6f3d8c84a8fd41a63bb2cfc85aa6eb8ff3dbf724496b03e msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=51d5c55fb055dc171c4bf7618270e30b393601f44f3a0abd7c276b63093c1a handshake=Noise_XXpsk0_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254e89ad728d1b3555e8affba774c455ecf msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466def8302a4ce14b6d8679764f5605d198853b8968688d7432e591c0371dbd9c271e7509b3366c251d193c2b6173162f24bfb214c9912e36dbc2bebcd0c5a41310 msg_2_payload= msg_2_ciphertext=7ae518aa6a3882fac6b6d6fcd88954cccf404ea1aa2a075d533916de39720ebbd5a2fc7c5df275e6d9ac02a752f651f67f737345e8c1310db32861d8fb0233f9 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=fd0638db68611323934a1dc1c26175ddc9abfbf887629ce59b4303156bcaa1 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=3d9c9f74481ef29d381234288ecb1d26afa997692fff8407cbf6da726a5725 handshake=Noise_XXpsk1_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254fa223f36e9139a40a9551700c5636675 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466ce56429bffb894f3369b30a544d455d8f184f93f9c842bbe985dde8e576dd8eed8438aa1768e3aa2b4ad1bebf0a92b156771c02032ed9387687cca42cb786162 msg_2_payload= msg_2_ciphertext=4897d20141b9271678aeff91ee7005ca77d69a228f23d79eb6ac67cecef3224f6f88b8b1d486e5d50a397d526deb513cf18ed7a50ff9722cef519cfdd08f2ed8 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=4c7e74911721ae8c0678065a0f6ad8fb1297a21f6754b38e266eee19d0ad2a msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=475800d09b8bf0421df0e7679d3cd21b814fd6dff0fb9c46dbc5376c6122e4 handshake=Noise_XXpsk2_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254a0282a4879cb0deb654bdede7e9be90b msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484661e036fa970ffb21503a0108b83c0bd72003bb6d4a97179484514ff7ef45ec9eb9bdbfd37a4b660583fab7b211f1b3503b00b5e97afc5b32665b370e6478b524d msg_2_payload= msg_2_ciphertext=94ed14201939c7bb4572b20adf4082cd6bb82f70f3c8de3316bc33f5eae48cd9ddd25dc1383725178c8598f5fba81ebb96531a3239965542dbb5b6788e6c69ff msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=86774279eb88fc06ae6805d0b449a143cdfe04a11fc7a429277b968cabe3bf msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=b1f80227766841582344bc541607b227d94329c13eacc906aa8d505877ba86 handshake=Noise_XXpsk3_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254813e50d4de1a8d4e0d61efe2041f7ca6 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466f05a4cb6e4cb79e094bd585a0b9fbc734db005568fc515c58c9fde6291e3e29220fbe03545fe15b4e8e1acca1559b4b2de52d9ae55517db0f969b67cfd1a046a msg_2_payload= msg_2_ciphertext=8651088810f5c175e542fa61507d8cfac7670c9c1f1e3eb7c8fcfa1e632b0d466be2a1a293e4da8f69787704224eafe4849020203ee23d283e335821b48f1adf msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=ff43d872c9028bdb9c54fa2c87bf427cd7fdf53b281d89649f183629b8f2e9 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=50ca5d06223b9346bc628ee151bf174732e4afc56fe3fca4baff4173abe983 handshake=Noise_XX_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466b0b018e349141e1b16c68fe9a6cb1183c260c44bb83c93a140953ad45612b8c6c9a7ce6964ece59add85b2606ced1d6d19d85b03583048e0c2c9a492b15d90479c7b9af68fb1a47696d5 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=b4c5f23f127237b5a80ac12f3a3548fe46c39172f6b180eb1e023e6e19e283eec8b71c2ce9c0e29ca1766034c2c8feb14cb940f335a08c03246384d70b9a8ae83fd96cea468098f1f8d9 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=adcafe99678efda6f3d8c84a8fd41a63bb2cfc85aa6eb8ff3dbf724496b03e msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=51d5c55fb055dc171c4bf7618270e30b393601f44f3a0abd7c276b63093c1a handshake=Noise_XXpsk0_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541fe2db7a97bbe9c0027b7090cb11725f0947318b6d1f1ad08ce7 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466def8302a4ce14b6d8679764f5605d198853b8968688d7432e591c0371dbd9c27e50840bb3f7e4c87ca8f5414ba3078aa5c032641bc1cdaccd5aa58bfd328b2972ff47f99ced9a6b7aef3 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=7ae518aa6a3882fac6b6d6fcd88954cccf404ea1aa2a075d533916de39720ebb186eba1bc5bdad09bcab5739864ca692519efda7f74013ae0602622d1accdeb04f261e1eb1ada91b5a00 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=fd0638db68611323934a1dc1c26175ddc9abfbf887629ce59b4303156bcaa1 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=3d9c9f74481ef29d381234288ecb1d26afa997692fff8407cbf6da726a5725 handshake=Noise_XXpsk1_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625483cfed638fb3c56f6e445c3225fd44968f7a179313516eb5c1a9 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466ce56429bffb894f3369b30a544d455d8f184f93f9c842bbe985dde8e576dd8eef9072a865ec6acd45a95e6d5699cf88ab1adaf886733195012b10e6cd5389e4046ec7b8620170cceaf17 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=4897d20141b9271678aeff91ee7005ca77d69a228f23d79eb6ac67cecef3224f04191a5af016de4910629179a06d26cadb2c8b23157b86216ebf371933ed5d042b8b69d9b202f343b7c2 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=4c7e74911721ae8c0678065a0f6ad8fb1297a21f6754b38e266eee19d0ad2a msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=475800d09b8bf0421df0e7679d3cd21b814fd6dff0fb9c46dbc5376c6122e4 handshake=Noise_XXpsk2_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662540f55bdaaa880fc12facbe60813c0db272c15e442ff0938e3533a msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484661e036fa970ffb21503a0108b83c0bd72003bb6d4a97179484514ff7ef45ec9eb2c798e8efacdd62b6bf5244df69c8c3aa2494f38471537cc5d6b6504593989137c09964cbdfe9eb3d3e9 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=94ed14201939c7bb4572b20adf4082cd6bb82f70f3c8de3316bc33f5eae48cd99924bd9d5a06fe3a5583f3a383313d93e7a7158f06660cce13843fa445d1bf333858f033b9294adcacf0 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=86774279eb88fc06ae6805d0b449a143cdfe04a11fc7a429277b968cabe3bf msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=b1f80227766841582344bc541607b227d94329c13eacc906aa8d505877ba86 handshake=Noise_XXpsk3_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541bb344a916e3fe400ded24cb3fa734c93f22004e92da97dbce1d msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466f05a4cb6e4cb79e094bd585a0b9fbc734db005568fc515c58c9fde6291e3e2928d5c8ea8af6ef701c52ab3e57ada1d472451c80484377ba18cd7418f721d9d21744f1ad65da0279a66fb msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=8651088810f5c175e542fa61507d8cfac7670c9c1f1e3eb7c8fcfa1e632b0d4638dea852a90ce28331a393758df509cdfaeeeceaa062fd82e223c30f70e0e273f7d7dbf386acf966ddf8 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=ff43d872c9028bdb9c54fa2c87bf427cd7fdf53b281d89649f183629b8f2e9 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=50ca5d06223b9346bc628ee151bf174732e4afc56fe3fca4baff4173abe983 handshake=Noise_XX_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466b0b018e349141e1b16c68fe9a6cb1183c260c44bb83c93a140953ad45612b8c67f6ad77fe0172d65f35620f8d6f0b8db7eaf545a402e665786d189c5c7e2bef0 msg_2_payload= msg_2_ciphertext=b4c5f23f127237b5a80ac12f3a3548fe46c39172f6b180eb1e023e6e19e283eed57a951543a0ab0645958f932e50a2743423286e6494f7c453bed71b63a1bb91 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=adcafe99678efda6f3d8c84a8fd41a63bb2cfc85aa6eb8ff3dbf724496b03e msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=51d5c55fb055dc171c4bf7618270e30b393601f44f3a0abd7c276b63093c1a handshake=Noise_XXpsk0_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254daabd705d9da7c80c426df55902fb9cc msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466def8302a4ce14b6d8679764f5605d198853b8968688d7432e591c0371dbd9c27c142d82a45eca7997eeec4e81381209cd1cc75dc52230a6ad5dc90432748d6df msg_2_payload= msg_2_ciphertext=7ae518aa6a3882fac6b6d6fcd88954cccf404ea1aa2a075d533916de39720ebb5a679823352dc4b0bbbb47c9dc418fbf6185f09c57410138d19557733bdfd046 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=fd0638db68611323934a1dc1c26175ddc9abfbf887629ce59b4303156bcaa1 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=3d9c9f74481ef29d381234288ecb1d26afa997692fff8407cbf6da726a5725 handshake=Noise_XXpsk1_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662546693cc146b829f659b3a3a6f36062417 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466ce56429bffb894f3369b30a544d455d8f184f93f9c842bbe985dde8e576dd8eee6e90c6418f739bec226dd5fa5dcd4cc0f4524e463ccf85bcef7c086833474b4 msg_2_payload= msg_2_ciphertext=4897d20141b9271678aeff91ee7005ca77d69a228f23d79eb6ac67cecef3224fce9e99b2d8ffbd7aec4d8c8df6c5a172de9a9714a6af6b1234f1620b8645e579 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=4c7e74911721ae8c0678065a0f6ad8fb1297a21f6754b38e266eee19d0ad2a msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=475800d09b8bf0421df0e7679d3cd21b814fd6dff0fb9c46dbc5376c6122e4 handshake=Noise_XXpsk2_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254774c69f7d11f794ed54a4bf91f16fd2d msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484661e036fa970ffb21503a0108b83c0bd72003bb6d4a97179484514ff7ef45ec9eb96af227896014838fc1945263ff54bd5375932b16efea120c62ed8a315420f6c msg_2_payload= msg_2_ciphertext=94ed14201939c7bb4572b20adf4082cd6bb82f70f3c8de3316bc33f5eae48cd9e6d85d2c7f133960dc1f8e448a65d585cea1481e2d35d543ea5429a592eabe47 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=86774279eb88fc06ae6805d0b449a143cdfe04a11fc7a429277b968cabe3bf msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=b1f80227766841582344bc541607b227d94329c13eacc906aa8d505877ba86 handshake=Noise_XXpsk3_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541c21324e86ac7d65b7dc06cf3b651e32 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466f05a4cb6e4cb79e094bd585a0b9fbc734db005568fc515c58c9fde6291e3e292a276b6138dab236a57f9a781388562c174bef9f634ada92d349e837ac7ccd978 msg_2_payload= msg_2_ciphertext=8651088810f5c175e542fa61507d8cfac7670c9c1f1e3eb7c8fcfa1e632b0d46bb08fbcd509f32a5dfabbf43a22dbc5e5002092ca11ba0dddc4faedad0330f85 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=ff43d872c9028bdb9c54fa2c87bf427cd7fdf53b281d89649f183629b8f2e9 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=50ca5d06223b9346bc628ee151bf174732e4afc56fe3fca4baff4173abe983 handshake=Noise_XX_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466b0b018e349141e1b16c68fe9a6cb1183c260c44bb83c93a140953ad45612b8c682f5a2957440f5f83a39a24e5cb2627919d85b03583048e0c2c936d254bb86813590fe0b415b3271c451 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=b4c5f23f127237b5a80ac12f3a3548fe46c39172f6b180eb1e023e6e19e283eee243c226bfded175cebcfe8ec14f27024cb940f335a08c032463eeca3f18039cd75586b07daff31c4dff msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=adcafe99678efda6f3d8c84a8fd41a63bb2cfc85aa6eb8ff3dbf724496b03e msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=51d5c55fb055dc171c4bf7618270e30b393601f44f3a0abd7c276b63093c1a handshake=Noise_XXpsk0_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541fe2db7a97bbe9c0027b1f62071910cfd2266573bb14a7de4342 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466def8302a4ce14b6d8679764f5605d198853b8968688d7432e591c0371dbd9c27c0e397d4a328006c00af1dc428f95bc55c032641bc1cdaccd5aae41c3d70b1d39ac256cf6c07a7430831 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=7ae518aa6a3882fac6b6d6fcd88954cccf404ea1aa2a075d533916de39720ebb1eaeb854d104e73a1406c7ff4ad6beed519efda7f74013ae060269ba43ed1a294c9c44cff50595ad1324 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=fd0638db68611323934a1dc1c26175ddc9abfbf887629ce59b4303156bcaa1 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=3d9c9f74481ef29d381234288ecb1d26afa997692fff8407cbf6da726a5725 handshake=Noise_XXpsk1_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625483cfed638fb3c56f6e443f8097c23fee7a3b76149d56e41918a5 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466ce56429bffb894f3369b30a544d455d8f184f93f9c842bbe985dde8e576dd8ee8ca69106df75e49f29eaae67fa71a409b1adaf886733195012b157ffd83ea7ae659b0902222ed9440be7 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=4897d20141b9271678aeff91ee7005ca77d69a228f23d79eb6ac67cecef3224fc3f318361519b4d6ffa8722b937eda33db2c8b23157b86216ebf80415aa89e935fb92101ea57f6ec5669 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=4c7e74911721ae8c0678065a0f6ad8fb1297a21f6754b38e266eee19d0ad2a msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=475800d09b8bf0421df0e7679d3cd21b814fd6dff0fb9c46dbc5376c6122e4 handshake=Noise_XXpsk2_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662540f55bdaaa880fc12facb47d5793c5c9c2c879cfb8cb55945655f msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484661e036fa970ffb21503a0108b83c0bd72003bb6d4a97179484514ff7ef45ec9eb07357830807daf32b9a32297a1a9878da2494f38471537cc5d6bd4192f5f3078085f0533aa0e75686fba msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=94ed14201939c7bb4572b20adf4082cd6bb82f70f3c8de3316bc33f5eae48cd9b530622c64695f7e4ce8f79b3ef119fbe7a7158f06660cce138493700e351a7a22ae1bb11889ae401722 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=86774279eb88fc06ae6805d0b449a143cdfe04a11fc7a429277b968cabe3bf msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=b1f80227766841582344bc541607b227d94329c13eacc906aa8d505877ba86 handshake=Noise_XXpsk3_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541bb344a916e3fe400dedd2a7371c38b355300008ffe1f92c5321 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466f05a4cb6e4cb79e094bd585a0b9fbc734db005568fc515c58c9fde6291e3e2920a77f6c331f2b9e51cb445ebaa762dd12451c80484377ba18cd74ca6e49295ef6417ad4b265ac043c90e msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=8651088810f5c175e542fa61507d8cfac7670c9c1f1e3eb7c8fcfa1e632b0d46f22ae59817305950a50b328539a252ccfaeeeceaa062fd82e2237a114a9d10610aa66213ef7dbb4f0ebc msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=ff43d872c9028bdb9c54fa2c87bf427cd7fdf53b281d89649f183629b8f2e9 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=50ca5d06223b9346bc628ee151bf174732e4afc56fe3fca4baff4173abe983 handshake=Noise_IX_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548f40c5adb68f25624ae5b214ea767a6ec94d829d3d7b5e1ad1ba6f3e2138285f msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484660d08c6ebb96e008cec2c0c4667d8488bfa63fb9542b9543bf2f44452ddfca2d7b47846f7c23a61ba89e3005c17a3da874f0113c4bcaef064e33c7388076221f1 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=4ce1063a2c24a067d32c33bc634f9164349ff4d51e2f736aa8ddfe7d85dbde msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=1e8ec223c4616b42db4b40ac577af6937537a779ffc4517314c4c90e6c6bec handshake=Noise_IXpsk0_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254b63d4823ec3c33b747175212d3fa59c7320419f05114fa56bc49c588ce3efae0f7a0096cf97cac10155a9af45a6fa4a568a065542312cfca94b12f8721a77ee9 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484663960d18951259c9250ca1804369d267c7a61ba56041491bbe42dac780957c6c53b4073645443610174b25add1f889f59292b4d5756ee87a43c557907cefe7ee3 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=b9c8ed9bfe0b9016461bf4ab1d3f56b261cbd5f0c9a165184fcfbe28af3968 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=81bfdb36c9b8d755d0ebe25f87edd262896108dfa2b073c0814093f7d2ebd8 handshake=Noise_IXpsk1_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254e48b3f70e18e77885fa9aacad3100d7678a827d00fb563dcd477899b1ee1d89e23ecb8f2999013a2043036cea9c6d610ab3d9d45672d615f56e14a907a6626ef msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466ba047e6e3ee18a0dcb8a530689f90df6155ccc5cb33a0b378c4885b36c315b433e6294711d4def132673d121030ade3f074c8ce7ac45822d01166f7efabff8a0 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=f98369e9445c5882aa703756b77e75713ba3004075fa24c018653a1b4d103b msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=d842e68c723ec899be6e97299547bfae1c1c2666c328a4cc939f33d2be6eb3 handshake=Noise_IXpsk2_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c3be70df2112be564394441fab73a3d1ea8cffbf282cb7e2fba6d4bf93eb3d0e546334907b6a75b27e91ddf1f4bb8265c5dbe3134d556ccda881f6735a439202 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466f6538498df27580b5a8ce84806413a0bb3fef6548807b7675d415b295a36312997861b158cfe7287bc38d8d22edc615342716e16b46f10a0099c7c8d5984039a msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=8bd6813d28352fec1b43d31a7c1f39f37c4800d82a6281fcfc81eae0b97d3b msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=7b1ea910350e67ec24ed0f3c557ff265133851bdafd4c7aea32ba5a7624f13 handshake=Noise_IX_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548f40c5adb68f25624ae5b214ea767a6ec94d829d3d7b5e1ad1ba6f3e2138285f746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484660d08c6ebb96e008cec2c0c4667d8488bfa63fb9542b9543bf2f44452ddfca2d7e4427f5970f26a10fd1072dbd7a0836bbd3886d3f59490443484ed8534285770555656ca00988f52612d msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=4ce1063a2c24a067d32c33bc634f9164349ff4d51e2f736aa8ddfe7d85dbde msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=1e8ec223c4616b42db4b40ac577af6937537a779ffc4517314c4c90e6c6bec handshake=Noise_IXpsk0_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254b63d4823ec3c33b747175212d3fa59c7320419f05114fa56bc49c588ce3efae0f7a0096cf97cac10155a9af45a6fa4a522e8eb3d61d2bb8d5009943c3bf446f032c0b794ddc1c18d137e msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484663960d18951259c9250ca1804369d267c7a61ba56041491bbe42dac780957c6c521f538e34bfd357ad7040f461cb64b9987381dbd1f2b9a676c279d5af171ea9f30c5941cb2be937e43c9 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=b9c8ed9bfe0b9016461bf4ab1d3f56b261cbd5f0c9a165184fcfbe28af3968 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=81bfdb36c9b8d755d0ebe25f87edd262896108dfa2b073c0814093f7d2ebd8 handshake=Noise_IXpsk1_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254e48b3f70e18e77885fa9aacad3100d7678a827d00fb563dcd477899b1ee1d89e23ecb8f2999013a2043036cea9c6d61031e9c7b4162140f5829894388eee5bce7e93baee3ce0bf4190a0 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466ba047e6e3ee18a0dcb8a530689f90df6155ccc5cb33a0b378c4885b36c315b435561f0ef42c5ba5a40979f0841216806b326e04a2da36a9011b2a694ff283f0fd98a630d79dbce95ab02 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=f98369e9445c5882aa703756b77e75713ba3004075fa24c018653a1b4d103b msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=d842e68c723ec899be6e97299547bfae1c1c2666c328a4cc939f33d2be6eb3 handshake=Noise_IXpsk2_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c3be70df2112be564394441fab73a3d1ea8cffbf282cb7e2fba6d4bf93eb3d0e546334907b6a75b27e91ddf1f4bb8265b68b7fea24bfbe6d185a29b30f2a103349aa2e37f6c2f1278168 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466f6538498df27580b5a8ce84806413a0bb3fef6548807b7675d415b295a3631293868d42d5504ab97a0d82a50cb83c2bf74206d4835e15686aa2abf992b7b0d27c5415c83cde596788278 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=8bd6813d28352fec1b43d31a7c1f39f37c4800d82a6281fcfc81eae0b97d3b msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=7b1ea910350e67ec24ed0f3c557ff265133851bdafd4c7aea32ba5a7624f13 handshake=Noise_IX_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548f40c5adb68f25624ae5b214ea767a6ec94d829d3d7b5e1ad1ba6f3e2138285f msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484660d08c6ebb96e008cec2c0c4667d8488bfa63fb9542b9543bf2f44452ddfca2d7f2ef33da3c18e4950b1cfe62f4c883d97c018436fa3d37069cb5911316e08700 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=4ce1063a2c24a067d32c33bc634f9164349ff4d51e2f736aa8ddfe7d85dbde msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=1e8ec223c4616b42db4b40ac577af6937537a779ffc4517314c4c90e6c6bec handshake=Noise_IXpsk0_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254b63d4823ec3c33b747175212d3fa59c7320419f05114fa56bc49c588ce3efae0bd8ff356da1943afb6db2e8cb9fd67d0125c3c87b9c83ee8cce6e92d25387b4e msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484663960d18951259c9250ca1804369d267c7a61ba56041491bbe42dac780957c6c55061e844b5ab6cd23a97fee163cfb3db7b4faa27b08a1ca24b0a681294fe9bb1 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=b9c8ed9bfe0b9016461bf4ab1d3f56b261cbd5f0c9a165184fcfbe28af3968 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=81bfdb36c9b8d755d0ebe25f87edd262896108dfa2b073c0814093f7d2ebd8 handshake=Noise_IXpsk1_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254e48b3f70e18e77885fa9aacad3100d7678a827d00fb563dcd477899b1ee1d89e980889cb7bf25f6f4be3551e27e1ea7d9f2719d05e33dada3b7b1a5721c6142a msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466ba047e6e3ee18a0dcb8a530689f90df6155ccc5cb33a0b378c4885b36c315b43ee2d0ae05c3381ef19d6552e4c379c9e3455f5369feb06f5b823512a752550a6 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=f98369e9445c5882aa703756b77e75713ba3004075fa24c018653a1b4d103b msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=d842e68c723ec899be6e97299547bfae1c1c2666c328a4cc939f33d2be6eb3 handshake=Noise_IXpsk2_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c3be70df2112be564394441fab73a3d1ea8cffbf282cb7e2fba6d4bf93eb3d0e50d15abf5a511b499f4bb2364105d9762588d57b6b4cef7251a82d36e5a85394 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466f6538498df27580b5a8ce84806413a0bb3fef6548807b7675d415b295a3631299a0f8e43b9e338ca409665b3d31f4276ee5a9ba840a56170f1c28b57685cd310 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=8bd6813d28352fec1b43d31a7c1f39f37c4800d82a6281fcfc81eae0b97d3b msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=7b1ea910350e67ec24ed0f3c557ff265133851bdafd4c7aea32ba5a7624f13 handshake=Noise_IX_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548f40c5adb68f25624ae5b214ea767a6ec94d829d3d7b5e1ad1ba6f3e2138285f746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484660d08c6ebb96e008cec2c0c4667d8488bfa63fb9542b9543bf2f44452ddfca2d7e7b3d10d1bec4db060cc81ac11981c86bd3886d3f59490443484f9dff1092bbff7dcf06981d28b28afaf msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=4ce1063a2c24a067d32c33bc634f9164349ff4d51e2f736aa8ddfe7d85dbde msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=1e8ec223c4616b42db4b40ac577af6937537a779ffc4517314c4c90e6c6bec handshake=Noise_IXpsk0_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254b63d4823ec3c33b747175212d3fa59c7320419f05114fa56bc49c588ce3efae0bd8ff356da1943afb6db2e8cb9fd67d022e8eb3d61d2bb8d5009413d916e50ebf18eaeb1c662609b9507 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484663960d18951259c9250ca1804369d267c7a61ba56041491bbe42dac780957c6c5196c019b9d174ed3dcaa53099503522a87381dbd1f2b9a676c27b5ac5b1513fbc5623bdc039536108225 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=b9c8ed9bfe0b9016461bf4ab1d3f56b261cbd5f0c9a165184fcfbe28af3968 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=81bfdb36c9b8d755d0ebe25f87edd262896108dfa2b073c0814093f7d2ebd8 handshake=Noise_IXpsk1_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254e48b3f70e18e77885fa9aacad3100d7678a827d00fb563dcd477899b1ee1d89e980889cb7bf25f6f4be3551e27e1ea7d31e9c7b4162140f582989fb19a400cb8e233d3c9e389e6178779 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466ba047e6e3ee18a0dcb8a530689f90df6155ccc5cb33a0b378c4885b36c315b4322b0f462158e15814a1bde609953f95db326e04a2da36a9011b27061e58c38b18c508dc98a28a96bd47d msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=f98369e9445c5882aa703756b77e75713ba3004075fa24c018653a1b4d103b msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=d842e68c723ec899be6e97299547bfae1c1c2666c328a4cc939f33d2be6eb3 handshake=Noise_IXpsk2_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c3be70df2112be564394441fab73a3d1ea8cffbf282cb7e2fba6d4bf93eb3d0e50d15abf5a511b499f4bb2364105d976b68b7fea24bfbe6d185a5c40f1b38412d69a8edfb30ae69c37b2 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466f6538498df27580b5a8ce84806413a0bb3fef6548807b7675d415b295a36312906e14d4e13ee44c451ac33dd85c6494674206d4835e15686aa2a956b0924d35a221d4b7181d71a7acb72 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=8bd6813d28352fec1b43d31a7c1f39f37c4800d82a6281fcfc81eae0b97d3b msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=7b1ea910350e67ec24ed0f3c557ff265133851bdafd4c7aea32ba5a7624f13 handshake=Noise_N_25519_ChaChaPoly_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254b62d68267d71003dd2ec89177e7a80e3 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=073e37ccc3b3b5f301022426e60a9fe42344451b0c246c7c3c52e90200becd msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=13d07f95326d21c8df6cc06e039928135e3e0ce76c0ac29c1af3af17f9f209 handshake=Noise_Npsk0_25519_ChaChaPoly_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c7ecad40ae43136bb00e644faf111fee msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=e80199955235b10ef537be4e4ece03b89e395270f354863329a81623fe31c4 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=4223b3fdafd3b6e8362de55b3af3e442fe88d22174d266b7098f6d1f3d54dd handshake=Noise_Npsk1_25519_ChaChaPoly_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625484bee855d8aaadb550fd7368ce11dae9 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=44098386e9c10ee7805cd6c24acfa0e883439cab2955227546351f2d0b98d2 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=bbba498b110eeed6a4a8db59b425539b45f08454356ec2e9c332d77880488c handshake=Noise_N_25519_ChaChaPoly_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254609e1a34b71f412922516c43c0e318eacbab4c4d9944d7320797 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=073e37ccc3b3b5f301022426e60a9fe42344451b0c246c7c3c52e90200becd msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=13d07f95326d21c8df6cc06e039928135e3e0ce76c0ac29c1af3af17f9f209 handshake=Noise_Npsk0_25519_ChaChaPoly_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254acceaed8b3a21db94a655c36c11a60a8bb89df76cff84a34015e msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=e80199955235b10ef537be4e4ece03b89e395270f354863329a81623fe31c4 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=4223b3fdafd3b6e8362de55b3af3e442fe88d22174d266b7098f6d1f3d54dd handshake=Noise_Npsk1_25519_ChaChaPoly_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662544c8a0cbbea89e5ae2aabf7a0ff0cab75f79795fe12ca51560061 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=44098386e9c10ee7805cd6c24acfa0e883439cab2955227546351f2d0b98d2 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=bbba498b110eeed6a4a8db59b425539b45f08454356ec2e9c332d77880488c handshake=Noise_N_25519_ChaChaPoly_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625419e9c7e045efa93cdbf8951bde24f518 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=073e37ccc3b3b5f301022426e60a9fe42344451b0c246c7c3c52e90200becd msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=13d07f95326d21c8df6cc06e039928135e3e0ce76c0ac29c1af3af17f9f209 handshake=Noise_Npsk0_25519_ChaChaPoly_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625423626274f79a73c1a08d4f8b3740dc65 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=e80199955235b10ef537be4e4ece03b89e395270f354863329a81623fe31c4 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=4223b3fdafd3b6e8362de55b3af3e442fe88d22174d266b7098f6d1f3d54dd handshake=Noise_Npsk1_25519_ChaChaPoly_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254d7f8985f5a07f3b6134b3eb461d07c79 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=44098386e9c10ee7805cd6c24acfa0e883439cab2955227546351f2d0b98d2 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=bbba498b110eeed6a4a8db59b425539b45f08454356ec2e9c332d77880488c handshake=Noise_N_25519_ChaChaPoly_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254609e1a34b71f412922514c3e94964753215ede1067c59472f88c msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=073e37ccc3b3b5f301022426e60a9fe42344451b0c246c7c3c52e90200becd msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=13d07f95326d21c8df6cc06e039928135e3e0ce76c0ac29c1af3af17f9f209 handshake=Noise_Npsk0_25519_ChaChaPoly_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254acceaed8b3a21db94a65700f1c5dab0d3b1eac91132e3ab6eebe msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=e80199955235b10ef537be4e4ece03b89e395270f354863329a81623fe31c4 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=4223b3fdafd3b6e8362de55b3af3e442fe88d22174d266b7098f6d1f3d54dd handshake=Noise_Npsk1_25519_ChaChaPoly_BLAKE2b resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662544c8a0cbbea89e5ae2aab126c87f8777b9b68d5b545fb3b2f398f msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=44098386e9c10ee7805cd6c24acfa0e883439cab2955227546351f2d0b98d2 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=bbba498b110eeed6a4a8db59b425539b45f08454356ec2e9c332d77880488c handshake=Noise_K_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254bbe42ea4bcf66d6f758a4c188bf4bc91 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=084290d5043c3b6948d4921b6077beb8b735be5abb710c15d603fbe6a8837a msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=3bc6edaa3068acffde7c0e48a284fcc85e5a53eed67eebfc269b39a61d4fab handshake=Noise_Kpsk0_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254a213fa659c7a882c575df816336d8be4 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=4c0b6eb320ffdd0fc360e131a2743b8da960103c65a8574894dab9baebddbb msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=0d78bbe8c396fcee4ec8845d3212997c19c03686fedd94fe7ad7083f8fccb1 handshake=Noise_Kpsk1_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254f14e85fd8ba7aba75b5a1a46a90667e1 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=393b40808649ae3cfe543634928e71fcc0db659c41c8a5bfa0463f8d097617 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=768b4c83f5e7bdf3236786bcaf620e2f72c314ee77dca21ea045a5e8ded973 handshake=Noise_K_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662549be6f2a5fceed9834cd66790fbc903926c448bc59b48b2154dd6 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=084290d5043c3b6948d4921b6077beb8b735be5abb710c15d603fbe6a8837a msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=3bc6edaa3068acffde7c0e48a284fcc85e5a53eed67eebfc269b39a61d4fab handshake=Noise_Kpsk0_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541f6ab56ef38ff35798fe8f0f4d134086e57f446a2345b1191ea4 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=4c0b6eb320ffdd0fc360e131a2743b8da960103c65a8574894dab9baebddbb msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=0d78bbe8c396fcee4ec8845d3212997c19c03686fedd94fe7ad7083f8fccb1 handshake=Noise_Kpsk1_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662543bef9db972e2e6c71558809e51ae65d7420c45bdc240f8abd816 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=393b40808649ae3cfe543634928e71fcc0db659c41c8a5bfa0463f8d097617 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=768b4c83f5e7bdf3236786bcaf620e2f72c314ee77dca21ea045a5e8ded973 handshake=Noise_K_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662542b78acccc816e4c2f5f9699184235c74 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=084290d5043c3b6948d4921b6077beb8b735be5abb710c15d603fbe6a8837a msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=3bc6edaa3068acffde7c0e48a284fcc85e5a53eed67eebfc269b39a61d4fab handshake=Noise_Kpsk0_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254036e6f1d1a3deae5b6a6a0082f91b971 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=4c0b6eb320ffdd0fc360e131a2743b8da960103c65a8574894dab9baebddbb msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=0d78bbe8c396fcee4ec8845d3212997c19c03686fedd94fe7ad7083f8fccb1 handshake=Noise_Kpsk1_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662542fba2f565d1471d00632cf0be54aaf62 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=393b40808649ae3cfe543634928e71fcc0db659c41c8a5bfa0463f8d097617 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=768b4c83f5e7bdf3236786bcaf620e2f72c314ee77dca21ea045a5e8ded973 handshake=Noise_K_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662549be6f2a5fceed9834cd62141f0bbf0f39ae2eac726587cc06702 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=084290d5043c3b6948d4921b6077beb8b735be5abb710c15d603fbe6a8837a msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=3bc6edaa3068acffde7c0e48a284fcc85e5a53eed67eebfc269b39a61d4fab handshake=Noise_Kpsk0_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541f6ab56ef38ff35798feb9a0e6306cecfbf9d320ae214ca7ffa4 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=4c0b6eb320ffdd0fc360e131a2743b8da960103c65a8574894dab9baebddbb msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=0d78bbe8c396fcee4ec8845d3212997c19c03686fedd94fe7ad7083f8fccb1 handshake=Noise_Kpsk1_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662543bef9db972e2e6c71558a57e72719d6994322c7eba68ffb7ef1d msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=393b40808649ae3cfe543634928e71fcc0db659c41c8a5bfa0463f8d097617 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=768b4c83f5e7bdf3236786bcaf620e2f72c314ee77dca21ea045a5e8ded973 handshake=Noise_X_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662544fd54b64a44cca6205b19aa279c8056ac51f96cf3d758067d237f87128e15a4c4148bd36ab1729cacb085be81f3480b4354206c59a07e41330ad15f95124cafa msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=5876a3382ed90f78c1b3e6fcc88722443a39185cf5e5cda8ab5801aaf69cab msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=7c0c69826778f7c46a4a344ae33d3c0ed24c6d3be7fd57c2dc63ef4f23655f handshake=Noise_Xpsk0_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254bb88bc8f1d5b95ff9b457b11932e08c4bf7737b9597e5dc4ced87cd5c0887080e2fee14b04294b61597f5e910bad3abf548e5e3e756da213e59a1707ed1994c5 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=27d554df29f82a035d188e8fac392e112e2155f4fb2d7efb097a7c4c92ae8b msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=75d225f9a1c43f07a06f35ea7ad7ae7ca2e485fb080e7be7125995b7ca2263 handshake=Noise_Xpsk1_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254a613c9d0d0c7df0be15c578383f68146433aac97b59474cda1ba8aede82a04e58cd86fc4c305ad8471f0bfa4bc5cae2cd4cbf0bdcdcee3c1c7a411ede4b5cb19 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=38a911620b7d62cc36bdb2c5bd3f1f53c7b135ba945f890838208dd1ac3a60 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=0687c7ac818efa9d4eb42085ac0531050094895a11ab5c62f4c49ff0f7da16 handshake=Noise_X_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662544fd54b64a44cca6205b19aa279c8056ac51f96cf3d758067d237f87128e15a4c4148bd36ab1729cacb085be81f3480b4155fb51d817c41fe84d19fea4db898d03d6d178d62bb9d9673a0 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=5876a3382ed90f78c1b3e6fcc88722443a39185cf5e5cda8ab5801aaf69cab msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=7c0c69826778f7c46a4a344ae33d3c0ed24c6d3be7fd57c2dc63ef4f23655f handshake=Noise_Xpsk0_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254bb88bc8f1d5b95ff9b457b11932e08c4bf7737b9597e5dc4ced87cd5c0887080e2fee14b04294b61597f5e910bad3abf14a6559af2e96ddafc7e68c916704cffd7863bc38c69a17f28b6 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=27d554df29f82a035d188e8fac392e112e2155f4fb2d7efb097a7c4c92ae8b msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=75d225f9a1c43f07a06f35ea7ad7ae7ca2e485fb080e7be7125995b7ca2263 handshake=Noise_Xpsk1_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254a613c9d0d0c7df0be15c578383f68146433aac97b59474cda1ba8aede82a04e58cd86fc4c305ad8471f0bfa4bc5cae2c4b81d112e3e7d0d726c849388581cc9b879a98224acb457c68b7 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=38a911620b7d62cc36bdb2c5bd3f1f53c7b135ba945f890838208dd1ac3a60 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=0687c7ac818efa9d4eb42085ac0531050094895a11ab5c62f4c49ff0f7da16 handshake=Noise_X_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662544fd54b64a44cca6205b19aa279c8056ac51f96cf3d758067d237f87128e15a4c7166621c380455d9dbf411bd450cdb4b05c3f2a27cbec817ffe9647f2a18afd9 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=5876a3382ed90f78c1b3e6fcc88722443a39185cf5e5cda8ab5801aaf69cab msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=7c0c69826778f7c46a4a344ae33d3c0ed24c6d3be7fd57c2dc63ef4f23655f handshake=Noise_Xpsk0_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254bb88bc8f1d5b95ff9b457b11932e08c4bf7737b9597e5dc4ced87cd5c08870808e9bdae01e07f17b6fa915c3d91ed7d3547d6d73c86caa69fb94fed060c14382 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=27d554df29f82a035d188e8fac392e112e2155f4fb2d7efb097a7c4c92ae8b msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=75d225f9a1c43f07a06f35ea7ad7ae7ca2e485fb080e7be7125995b7ca2263 handshake=Noise_Xpsk1_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254a613c9d0d0c7df0be15c578383f68146433aac97b59474cda1ba8aede82a04e544d764e5f67a403d442e16be3807b5d5f5f2bdf9e39234ca23c3a2d94b6c46f3 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=38a911620b7d62cc36bdb2c5bd3f1f53c7b135ba945f890838208dd1ac3a60 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=0687c7ac818efa9d4eb42085ac0531050094895a11ab5c62f4c49ff0f7da16 handshake=Noise_X_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662544fd54b64a44cca6205b19aa279c8056ac51f96cf3d758067d237f87128e15a4c7166621c380455d9dbf411bd450cdb4b155fb51d817c41fe84d1c532e9d9b1ae823f499ea722badc77e4 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=5876a3382ed90f78c1b3e6fcc88722443a39185cf5e5cda8ab5801aaf69cab msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=7c0c69826778f7c46a4a344ae33d3c0ed24c6d3be7fd57c2dc63ef4f23655f handshake=Noise_Xpsk0_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254bb88bc8f1d5b95ff9b457b11932e08c4bf7737b9597e5dc4ced87cd5c08870808e9bdae01e07f17b6fa915c3d91ed7d314a6559af2e96ddafc7ed897a4125cd575976d0cdd5e33aca3fc msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=27d554df29f82a035d188e8fac392e112e2155f4fb2d7efb097a7c4c92ae8b msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=75d225f9a1c43f07a06f35ea7ad7ae7ca2e485fb080e7be7125995b7ca2263 handshake=Noise_Xpsk1_25519_ChaChaPoly_BLAKE2b init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254a613c9d0d0c7df0be15c578383f68146433aac97b59474cda1ba8aede82a04e544d764e5f67a403d442e16be3807b5d54b81d112e3e7d0d726c8af41b189b719d2efe35796a636de31d9 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=38a911620b7d62cc36bdb2c5bd3f1f53c7b135ba945f890838208dd1ac3a60 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=0687c7ac818efa9d4eb42085ac0531050094895a11ab5c62f4c49ff0f7da16 handshake=Noise_NN_25519_ChaChaPoly_BLAKE2s gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466d6b2af1b6bc7ab3bb3c96b892afbaf49 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=e693375ca5a2a0ff37a4b36662433ecc789e8a04887751ac3b0bb070039726 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=821cbd91e90a763bc70ac3cdee3bd2fb4b9dcd0e7cc3a066b85811c0c55c10 handshake=Noise_NNpsk0_25519_ChaChaPoly_BLAKE2s gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625429e02e0aff3585ba34213b02ce0584b1 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484667e40f02cbf3aba406c8b3556958221ef msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=45229f0fb23ccd92b0554c5be976ab8ccecf5f1e7503af4c5a1e4e45d35dd5 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=fcf39b68313e893f9682801d60aee12337d52a64661af37a0366b7924d1657 handshake=Noise_NNpsk1_25519_ChaChaPoly_BLAKE2s gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662540d6ecb3df1991eeb786683cac2d3f982 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484660a5dcf3414a6c779bd8881e8852bc849 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=ff900c6284287621348a3f116e7d1cb4fa64dffb7904a8332b36377381eafd msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=d49b01235ee41b7bb4b32de0b258be2280dcf68262b690fef7f0511bdb52d1 handshake=Noise_NNpsk2_25519_ChaChaPoly_BLAKE2s gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254296fa023d848fab1af54ab8d08d37448 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466b6e42d67d8cea5e983a691e0658fac72 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=98fd5ab58a3ad920b59dd500179a238f715af6d3b0d6d4a1801fad5e3c8dc5 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=4deac6ad723c4459d22e13e42c68b1b87c98cea7c470d684acd1c238be8398 handshake=Noise_NN_25519_ChaChaPoly_BLAKE2s gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484669274a4f99ffbbcd930fb758f8ed76cc03fe9ad85a0fc5556f701 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=e693375ca5a2a0ff37a4b36662433ecc789e8a04887751ac3b0bb070039726 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=821cbd91e90a763bc70ac3cdee3bd2fb4b9dcd0e7cc3a066b85811c0c55c10 handshake=Noise_NNpsk0_25519_ChaChaPoly_BLAKE2s gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254b8766d12729c594966e9e1234f04bdf152052d9085b3df49d3b9 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846633188335572849c06f2196f49d512745d01ddf3748851abb18e5 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=45229f0fb23ccd92b0554c5be976ab8ccecf5f1e7503af4c5a1e4e45d35dd5 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=fcf39b68313e893f9682801d60aee12337d52a64661af37a0366b7924d1657 handshake=Noise_NNpsk1_25519_ChaChaPoly_BLAKE2s gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c65e819d0b4074ef005311ac1d8ddc01b50aec437a3e07b27f15 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466da135105806675a56c11b4d9eb8f1bf2f93503003b148160977b msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=ff900c6284287621348a3f116e7d1cb4fa64dffb7904a8332b36377381eafd msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=d49b01235ee41b7bb4b32de0b258be2280dcf68262b690fef7f0511bdb52d1 handshake=Noise_NNpsk2_25519_ChaChaPoly_BLAKE2s gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662549c5cfd6799fc937000b5133e782ef3af066bce5532efe254878b msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484668a48263708b02a2508c92e6d37091d7805917886430d81cbf539 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=98fd5ab58a3ad920b59dd500179a238f715af6d3b0d6d4a1801fad5e3c8dc5 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=4deac6ad723c4459d22e13e42c68b1b87c98cea7c470d684acd1c238be8398 handshake=Noise_NN_25519_ChaChaPoly_BLAKE2s gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484663116eefd4bce9076d9dcae0406a1e895 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=e693375ca5a2a0ff37a4b36662433ecc789e8a04887751ac3b0bb070039726 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=821cbd91e90a763bc70ac3cdee3bd2fb4b9dcd0e7cc3a066b85811c0c55c10 handshake=Noise_NNpsk0_25519_ChaChaPoly_BLAKE2s gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254df955d65e85408302701c443b9876628 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466073acc4aae4797305f3a5014902f0389 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=45229f0fb23ccd92b0554c5be976ab8ccecf5f1e7503af4c5a1e4e45d35dd5 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=fcf39b68313e893f9682801d60aee12337d52a64661af37a0366b7924d1657 handshake=Noise_NNpsk1_25519_ChaChaPoly_BLAKE2s gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662543bc1046f99db530d13c0e9d8c4b8972a msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466d259d8e58663d8fdc8ee8a76f38aedb4 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=ff900c6284287621348a3f116e7d1cb4fa64dffb7904a8332b36377381eafd msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=d49b01235ee41b7bb4b32de0b258be2280dcf68262b690fef7f0511bdb52d1 handshake=Noise_NNpsk2_25519_ChaChaPoly_BLAKE2s gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662547b5ec929ff746b2951ad02dcb8e1d328 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466f1470d8024e4f3ed2f729669ad158aed msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=98fd5ab58a3ad920b59dd500179a238f715af6d3b0d6d4a1801fad5e3c8dc5 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=4deac6ad723c4459d22e13e42c68b1b87c98cea7c470d684acd1c238be8398 handshake=Noise_NN_25519_ChaChaPoly_BLAKE2s gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484669274a4f99ffbbcd930fb9d5f607de66556bd116615a94643140d msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=e693375ca5a2a0ff37a4b36662433ecc789e8a04887751ac3b0bb070039726 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=821cbd91e90a763bc70ac3cdee3bd2fb4b9dcd0e7cc3a066b85811c0c55c10 handshake=Noise_NNpsk0_25519_ChaChaPoly_BLAKE2s gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254b8766d12729c594966e9df5831055ca8c424d8ca8f3f2a6fbeac msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846633188335572849c06f2123581c51160861c0049f3bb291bd9e3f msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=45229f0fb23ccd92b0554c5be976ab8ccecf5f1e7503af4c5a1e4e45d35dd5 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=fcf39b68313e893f9682801d60aee12337d52a64661af37a0366b7924d1657 handshake=Noise_NNpsk1_25519_ChaChaPoly_BLAKE2s gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c65e819d0b4074ef00531acf9a294d769a2eae079b342632d219 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466da135105806675a56c116abd2f66bf544bd00009d1f973865921 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=ff900c6284287621348a3f116e7d1cb4fa64dffb7904a8332b36377381eafd msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=d49b01235ee41b7bb4b32de0b258be2280dcf68262b690fef7f0511bdb52d1 handshake=Noise_NNpsk2_25519_ChaChaPoly_BLAKE2s gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662549c5cfd6799fc937000b54a31dc936d6b1bd4e8676cdcc42b1bf3 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484668a48263708b02a2508c97593c7ffd766732eba2768eab8536d6f msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=98fd5ab58a3ad920b59dd500179a238f715af6d3b0d6d4a1801fad5e3c8dc5 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=4deac6ad723c4459d22e13e42c68b1b87c98cea7c470d684acd1c238be8398 handshake=Noise_KN_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484662996b770a8beee5210ae2ee2d93339cd msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=53437efbfb1f92fe43ae72099eb65358797dd48886cb9671975797e3f579ca msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=44bd43feee10b6715272dcc8826de7e866dc27f7e3dfb7148b4824eb226aea handshake=Noise_KNpsk0_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625406f76c7e9f1f456d70bf867e2c44a6c2 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466f0b70f196c5e9dbe5bc086b4be3e425a msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=8b98df9fba3f2887f5616371dbfeee8ee63dcc2830f8cf7a58ebf593ccf728 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=5d9d130f122419ba52d847d0099b0155e7e4ea9fe0ff4b4b2bef3a0f9bb75a handshake=Noise_KNpsk1_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254b00aef15e78c2222b23f921a2940819b msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846656bc91e33dd792081f01fe00c118bf9f msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=8f8dac7f5d54982068e3293e629a3ecdb58d6780b15240f4f9dd7157b04c3c msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=3bcd3a3be774bdaf617db13ae419cd4542b1d1796f7c3ef01f6dd56f210fa1 handshake=Noise_KNpsk2_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254066270b88eaeaa86e505970da02d2c2c msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484668b803871150207af0a9bbb9a7532ff88 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=e0a9264ac293727a86412dcb3c3293a0abf9283468cc94a78c30b457ae6e97 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=4886d3f446d6daba42fc5eea04ccc91ed077abd0db4925ef076daf5b0f3cd4 handshake=Noise_KN_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484661cd505ea2a9f4ba454a661b2979075e9c575359c8f2543677d42 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=53437efbfb1f92fe43ae72099eb65358797dd48886cb9671975797e3f579ca msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=44bd43feee10b6715272dcc8826de7e866dc27f7e3dfb7148b4824eb226aea handshake=Noise_KNpsk0_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254fdc73e2c2e717296f86029e72318cac7f1ffc79284aa8bd938cf msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846604563dac6ba8bdec8a444aa53f3da950706868979722e1df493a msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=8b98df9fba3f2887f5616371dbfeee8ee63dcc2830f8cf7a58ebf593ccf728 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=5d9d130f122419ba52d847d0099b0155e7e4ea9fe0ff4b4b2bef3a0f9bb75a handshake=Noise_KNpsk1_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548aefbdd261500e340336114bd4696e9be890d9ff0fc44ea383c1 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466ae024a90f2448f1ee801f6cbe7b9b5999fcebe5c8c19366db677 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=8f8dac7f5d54982068e3293e629a3ecdb58d6780b15240f4f9dd7157b04c3c msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=3bcd3a3be774bdaf617db13ae419cd4542b1d1796f7c3ef01f6dd56f210fa1 handshake=Noise_KNpsk2_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541798c5f0ce19bfeeb8e18af1f7646b1f78b4e2fe25e9c4aa503f msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466b4179026203db247901b5b2ad69041a6c10a2c5c39b06f619c7e msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=e0a9264ac293727a86412dcb3c3293a0abf9283468cc94a78c30b457ae6e97 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=4886d3f446d6daba42fc5eea04ccc91ed077abd0db4925ef076daf5b0f3cd4 handshake=Noise_KN_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846667203848cd4c9ae0b133522056dba949 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=53437efbfb1f92fe43ae72099eb65358797dd48886cb9671975797e3f579ca msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=44bd43feee10b6715272dcc8826de7e866dc27f7e3dfb7148b4824eb226aea handshake=Noise_KNpsk0_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662540949d3d2cd0eaca6b6506a09b263fe4a msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484664404e85e9fb434e0d2218ff52fe95fd7 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=8b98df9fba3f2887f5616371dbfeee8ee63dcc2830f8cf7a58ebf593ccf728 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=5d9d130f122419ba52d847d0099b0155e7e4ea9fe0ff4b4b2bef3a0f9bb75a handshake=Noise_KNpsk1_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254f0f5d97c2da7cf61e0d3948154ba74e4 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466099137f9449e7fa478c3ed1fdab515ea msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=8f8dac7f5d54982068e3293e629a3ecdb58d6780b15240f4f9dd7157b04c3c msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=3bcd3a3be774bdaf617db13ae419cd4542b1d1796f7c3ef01f6dd56f210fa1 handshake=Noise_KNpsk2_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254098b9b5f3f97855bdbf6058d616bfe58 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466ed1898e3f24678b9217c3c2ce1cfb437 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=e0a9264ac293727a86412dcb3c3293a0abf9283468cc94a78c30b457ae6e97 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=4886d3f446d6daba42fc5eea04ccc91ed077abd0db4925ef076daf5b0f3cd4 handshake=Noise_KN_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484661cd505ea2a9f4ba454a673b09a4a33ce505f13351254cce920a6 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=53437efbfb1f92fe43ae72099eb65358797dd48886cb9671975797e3f579ca msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=44bd43feee10b6715272dcc8826de7e866dc27f7e3dfb7148b4824eb226aea handshake=Noise_KNpsk0_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254fdc73e2c2e717296f860f1ce209564649b4c8c5b08a054956d53 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846604563dac6ba8bdec8a44ca483cb93b9ae929ac1d197021cf2085 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=8b98df9fba3f2887f5616371dbfeee8ee63dcc2830f8cf7a58ebf593ccf728 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=5d9d130f122419ba52d847d0099b0155e7e4ea9fe0ff4b4b2bef3a0f9bb75a handshake=Noise_KNpsk1_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548aefbdd261500e340336f649ecfec1f202ce87c63b9ebcf86561 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466ae024a90f2448f1ee801ea786081533c8eb3243d2bf0d737ba6c msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=8f8dac7f5d54982068e3293e629a3ecdb58d6780b15240f4f9dd7157b04c3c msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=3bcd3a3be774bdaf617db13ae419cd4542b1d1796f7c3ef01f6dd56f210fa1 handshake=Noise_KNpsk2_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541798c5f0ce19bfeeb8e177a3c5e381a60f5e06de14a6e67d0371 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466b4179026203db247901b1e7fb2131d14bfa00e9a72203580ecee msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=e0a9264ac293727a86412dcb3c3293a0abf9283468cc94a78c30b457ae6e97 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=4886d3f446d6daba42fc5eea04ccc91ed077abd0db4925ef076daf5b0f3cd4 handshake=Noise_NK_25519_ChaChaPoly_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c796bf92e018434c9b2146fab78f30d0 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466cb3abc71944afc6463300a32ba99b33d msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=56a475d3db0d0d5931542a93e3cd57c7dc51b29fc6d0a7cea41aea05d99fe5 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=5c239eb65b5f0d0641f6c6c20aec65646626249f9194e4211a2f8e761c2d72 handshake=Noise_NKpsk0_25519_ChaChaPoly_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541c9047e5f60f5b21c65fa8ff35c46e4f msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466cf1d49363de74d70a9f0cdbaa3310eda msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=a6593eb8dd060da72b612dd4128b4fef345d58c2e8cc2764dff574a3094fe9 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=b7ce16bfa101adc89a7773ffd08c545634f59d9035cabadef5f5ce941351d4 handshake=Noise_NKpsk1_25519_ChaChaPoly_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625444240d38699667b5d6c608f41fdee5a6 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484661379efd5a3414a48873a1d9b88af74a7 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=2e97c7a30baa66eb2eef35ac21f0985cb7139c68c681119ac87dd8864ab50e msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=2d441a28146d89109afcebf7fb254715a4937c1b775ed048735c301b7c15ba handshake=Noise_NKpsk2_25519_ChaChaPoly_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254f944f03a16bec0d4ede15bbf507f7e25 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846634632482a2c45167231236b170f1fbc1 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=93bb4e3dd1995295277446d3010fc7299dd2d1f283d7ce9ee8934d1caa60ef msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=d7ce2e01658cebe3086b25ae67c184cbb26e4855bc9c03a82c149948ea9a4e handshake=Noise_NK_25519_ChaChaPoly_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254bc7e9bcabcd39b9278b329a24d91072a9948a6cab4205f4c2d25 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466060fcddff00afaa37fd10ae19782d5eda54dc6d0af0a1ae34816 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=56a475d3db0d0d5931542a93e3cd57c7dc51b29fc6d0a7cea41aea05d99fe5 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=5c239eb65b5f0d0641f6c6c20aec65646626249f9194e4211a2f8e761c2d72 handshake=Noise_NKpsk0_25519_ChaChaPoly_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662544e94ec05dc68a1daa22d31bf607f134c66047ce9b78516559d77 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466281b734b3aba9427cddf7bb7d3165127146b88235d7d9f276e66 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=a6593eb8dd060da72b612dd4128b4fef345d58c2e8cc2764dff574a3094fe9 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=b7ce16bfa101adc89a7773ffd08c545634f59d9035cabadef5f5ce941351d4 handshake=Noise_NKpsk1_25519_ChaChaPoly_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254b844c29336d91edab89a73e74bb4a4964c09b0449b950f67ede8 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484660e1784da1b96e7a4a7d7bee4668e1c37f9e61052c4553d7a1339 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=2e97c7a30baa66eb2eef35ac21f0985cb7139c68c681119ac87dd8864ab50e msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=2d441a28146d89109afcebf7fb254715a4937c1b775ed048735c301b7c15ba handshake=Noise_NKpsk2_25519_ChaChaPoly_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541c1384003bc26279ca3c0030d4aaf3b3dd795108bd34df2f6607 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484663780ee06ece35bbfb120e4f2070358151d0642cb542d816754a5 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=93bb4e3dd1995295277446d3010fc7299dd2d1f283d7ce9ee8934d1caa60ef msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=d7ce2e01658cebe3086b25ae67c184cbb26e4855bc9c03a82c149948ea9a4e handshake=Noise_NK_25519_ChaChaPoly_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c25868d2b2a31aa03b91b342e3a0f010 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466d3bd657df804422777533bd275e14c99 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=56a475d3db0d0d5931542a93e3cd57c7dc51b29fc6d0a7cea41aea05d99fe5 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=5c239eb65b5f0d0641f6c6c20aec65646626249f9194e4211a2f8e761c2d72 handshake=Noise_NKpsk0_25519_ChaChaPoly_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662544490043bc9ee1f9b37b487bd5c239c9f msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846659153640b1bffc0da68baa51d62f821c msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=a6593eb8dd060da72b612dd4128b4fef345d58c2e8cc2764dff574a3094fe9 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=b7ce16bfa101adc89a7773ffd08c545634f59d9035cabadef5f5ce941351d4 handshake=Noise_NKpsk1_25519_ChaChaPoly_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254d438f5822dfd27a43ada58efc5977708 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466117ef4bc881b704cfb87d2c0e95fa683 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=2e97c7a30baa66eb2eef35ac21f0985cb7139c68c681119ac87dd8864ab50e msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=2d441a28146d89109afcebf7fb254715a4937c1b775ed048735c301b7c15ba handshake=Noise_NKpsk2_25519_ChaChaPoly_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254ae324e3db885a891345f300591c39991 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466158ae4d81ce5d413184b62ecbf1db7d6 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=93bb4e3dd1995295277446d3010fc7299dd2d1f283d7ce9ee8934d1caa60ef msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=d7ce2e01658cebe3086b25ae67c184cbb26e4855bc9c03a82c149948ea9a4e handshake=Noise_NK_25519_ChaChaPoly_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254bc7e9bcabcd39b9278b37f9892f7dec16e155389121da24e1fad msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466060fcddff00afaa37fd11c440d18031d7f9a735d2dd1ea6bfe24 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=56a475d3db0d0d5931542a93e3cd57c7dc51b29fc6d0a7cea41aea05d99fe5 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=5c239eb65b5f0d0641f6c6c20aec65646626249f9194e4211a2f8e761c2d72 handshake=Noise_NKpsk0_25519_ChaChaPoly_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662544e94ec05dc68a1daa22de47ad3b7f3e2e17d0b302fa6890ea67f msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466281b734b3aba9427cddf3c94b9f572f110a02b5e52acab758e34 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=a6593eb8dd060da72b612dd4128b4fef345d58c2e8cc2764dff574a3094fe9 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=b7ce16bfa101adc89a7773ffd08c545634f59d9035cabadef5f5ce941351d4 handshake=Noise_NKpsk1_25519_ChaChaPoly_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254b844c29336d91edab89a43bfc3fe933ccd161c24839025e6c72d msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484660e1784da1b96e7a4a7d743449335246823acd49e72750ccfa6fa msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=2e97c7a30baa66eb2eef35ac21f0985cb7139c68c681119ac87dd8864ab50e msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=2d441a28146d89109afcebf7fb254715a4937c1b775ed048735c301b7c15ba handshake=Noise_NKpsk2_25519_ChaChaPoly_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541c1384003bc26279ca3cb125ee90cc218132fdbf93455a891a92 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484663780ee06ece35bbfb120dda59c0d7f0226547003e9db0016a4ab msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=93bb4e3dd1995295277446d3010fc7299dd2d1f283d7ce9ee8934d1caa60ef msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=d7ce2e01658cebe3086b25ae67c184cbb26e4855bc9c03a82c149948ea9a4e handshake=Noise_KK_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254d8021192b02d5946c7e1e789d60c9c06 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466388958d71fa742cfe4c44b889e03b468 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=674d3b19a02535626dfcb13bd383509b715566cf53e9f31ac161944d38b7c1 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=aefd829d861f03d0d8c4bfedbb520f7c1837a46e2e1b26896063783b1cba4b handshake=Noise_KKpsk0_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625402790d4c1ebce1325c633c1f1ea80ad4 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466fe65d3f16b8c5ccf188f663b2183c2fd msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=42e238b4b6180654120bdb79734c6bbf8d47cc49f94689740b89443a5f809c msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=556615110f73692755058a5f80d58f952a3eecccd14006edf6dcff48f44b5a handshake=Noise_KKpsk1_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254a8a2e2a6065a7666ddee18705efd8639 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466b3385c8f08a91f06deff7077b00932f4 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=19e26089ed5d9ec2cd5a9488c012880c76670e7b6ef405e518a658008f829c msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=32a0cd0ddbbe90796cde8048bc59f2c3544948b03e6675e4ae0437baf0df06 handshake=Noise_KKpsk2_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254eace755c4d02a6492ec15bc6fb76ca61 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846637b28fc3206f049e0d7ee41b124c12dd msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=a0136e8d63fc19792c4a64e752e7de2ee2b61eb0ae0298595363785c8f653d msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=fbb11e69ee5a33728ed2823c05a6fa19dc7d73d6af4467e990e87941bd582f handshake=Noise_KK_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625419aad3185cdd8cf655a1e5c3dd7a90657bf4c873bac45f7f8225 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484668f22a41cfad6486600f09fe2698e50cc3657fc2261cd5b29f73c msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=674d3b19a02535626dfcb13bd383509b715566cf53e9f31ac161944d38b7c1 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=aefd829d861f03d0d8c4bfedbb520f7c1837a46e2e1b26896063783b1cba4b handshake=Noise_KKpsk0_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c98a7a53fef3f35c47556529a7f0d50cb2a15c56501f76d59e09 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484666d587d79056823bbadec39dee9aa9580e4f45bcf104f273ea3b1 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=42e238b4b6180654120bdb79734c6bbf8d47cc49f94689740b89443a5f809c msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=556615110f73692755058a5f80d58f952a3eecccd14006edf6dcff48f44b5a handshake=Noise_KKpsk1_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662543deac12a288a3ffb2541fd331a5da4e660281d6803a335926020 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846639f393a7a74357488e1fbb252c4678b320a0f82ec35209798870 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=19e26089ed5d9ec2cd5a9488c012880c76670e7b6ef405e518a658008f829c msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=32a0cd0ddbbe90796cde8048bc59f2c3544948b03e6675e4ae0437baf0df06 handshake=Noise_KKpsk2_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254935aac7f2c79135a1ae9ad51b5ce8d469acc4b9630f97992db02 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466b1b80dee04d5354522d814e28e9e074e1cd71345e2fe6c0e8725 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=a0136e8d63fc19792c4a64e752e7de2ee2b61eb0ae0298595363785c8f653d msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=fbb11e69ee5a33728ed2823c05a6fa19dc7d73d6af4467e990e87941bd582f handshake=Noise_KK_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625494c0722b15726c73e42293762f1f231b msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484668b06fbd531249a47de97b5d0a1d28204 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=674d3b19a02535626dfcb13bd383509b715566cf53e9f31ac161944d38b7c1 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=aefd829d861f03d0d8c4bfedbb520f7c1837a46e2e1b26896063783b1cba4b handshake=Noise_KKpsk0_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254df63a84e581cf0ee95c5bee20b388692 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c9172f26d7b9526845b62124cc08260e msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=42e238b4b6180654120bdb79734c6bbf8d47cc49f94689740b89443a5f809c msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=556615110f73692755058a5f80d58f952a3eecccd14006edf6dcff48f44b5a handshake=Noise_KKpsk1_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662546b84654df558648f7477ce7e3408ce12 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466fe1815dab93dffb8ae0b5f9134ddc4de msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=19e26089ed5d9ec2cd5a9488c012880c76670e7b6ef405e518a658008f829c msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=32a0cd0ddbbe90796cde8048bc59f2c3544948b03e6675e4ae0437baf0df06 handshake=Noise_KKpsk2_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662545f1e8dfaa017156a4d6b5d8c99129763 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466902a71bf779743a6844bd76f6c8bf029 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=a0136e8d63fc19792c4a64e752e7de2ee2b61eb0ae0298595363785c8f653d msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=fbb11e69ee5a33728ed2823c05a6fa19dc7d73d6af4467e990e87941bd582f handshake=Noise_KK_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625419aad3185cdd8cf655a139d31873c6117854954b8fd22d9e6489 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484668f22a41cfad6486600f0fbb4ae670da71c5206d2817405a505d7 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=674d3b19a02535626dfcb13bd383509b715566cf53e9f31ac161944d38b7c1 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=aefd829d861f03d0d8c4bfedbb520f7c1837a46e2e1b26896063783b1cba4b handshake=Noise_KKpsk0_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c98a7a53fef3f35c4755296b675ec07df2f17c802c6264ef8d4a msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484666d587d79056823bbadec72c5647701d2468995235e0e2dfa6130 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=42e238b4b6180654120bdb79734c6bbf8d47cc49f94689740b89443a5f809c msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=556615110f73692755058a5f80d58f952a3eecccd14006edf6dcff48f44b5a handshake=Noise_KKpsk1_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662543deac12a288a3ffb25418beeca17308cd9c7c9931d1ab774f12f msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846639f393a7a74357488e1f1ba5d4c24b572488251c32b03de1ab63 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=19e26089ed5d9ec2cd5a9488c012880c76670e7b6ef405e518a658008f829c msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=32a0cd0ddbbe90796cde8048bc59f2c3544948b03e6675e4ae0437baf0df06 handshake=Noise_KKpsk2_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254935aac7f2c79135a1ae93f52e8f9b4b46fb2393b2bdacb48565c msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466b1b80dee04d5354522d85eed0973dca2d7cee4415256eac4724d msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=a0136e8d63fc19792c4a64e752e7de2ee2b61eb0ae0298595363785c8f653d msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=fbb11e69ee5a33728ed2823c05a6fa19dc7d73d6af4467e990e87941bd582f handshake=Noise_NX_25519_ChaChaPoly_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484662fa9441324a92794acc0183591dd9d557e9d2251ff81cb8e7b6a34939ac4036f7d53a2007a3c8f072b93fd48bc802cb515be42a451820b25defc737ce7e3a02e msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=ab1d23a9f710a0149ddbb596f968be2ed7afbdc065d8fed5168472f4e0c263 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=173b29d07b7e78108bab3bf145eba669861543b85910a5d60e101d1b57ca02 handshake=Noise_NXpsk0_25519_ChaChaPoly_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254fbe8dfe276679b474bd9e513b64634df msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466e15aaba5d9237372cd606332278a7fafe502bf5da959448b7aba91aa233b84269c46c3dc622e69a9460016f8e316da4ce33ff43f9a694008b6ea9c4733b37c5b msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=d669f1665b76c5081948c04c3f8fcdadbedb03fc0bf735bccead480c9d07d8 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=f1bbc916980b6e57f5c73900c8c3a59e793ec656a08153f0907ddd48c32656 handshake=Noise_NXpsk1_25519_ChaChaPoly_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254f921f0b4cdcc7390e29c00352a70c592 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c275a8088f895e9da65446a1e0f546af2cb58f8ca255a901d607c04862c05d4e714660c2232771711e2f32a3d7d1fc99b177e7ea52743ae3aff0ac71c858c32d msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=6d6afdf7b42a9b89cb2d10db38215064e496f4a7b4a6ed07a6c3ca9079121b msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=22fa156f8584ac9649c136dc97aadc118b2228ead75adb7a613bad01296099 handshake=Noise_NXpsk2_25519_ChaChaPoly_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625456287ced9403b4417a01582209846ee8 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466a1cd0d53bab3c8076ab5f5c8dc0b79628e1e24b179f2b9e83dd9a891c527a2381bfb9a4a59efab9610fe21a425f698732f6a98356e740fb037f721ba9858e9b9 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=0ca7d068c7d39806366bbf7e93af4348300523ce01d7e96c89de8e4fbb9ca8 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=a7675930bc1cefe9a1f84f535b3b583cefcfac329838e7bb176f226570f7a6 handshake=Noise_NX_25519_ChaChaPoly_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484662fa9441324a92794acc0183591dd9d557e9d2251ff81cb8e7b6a34939ac4036f40ffb1456c9e640da7023f3fd1a4082eb2be7bcc73a2ab41fc9d67482e64e47f175e3ab4b97fda1ff7cf msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=ab1d23a9f710a0149ddbb596f968be2ed7afbdc065d8fed5168472f4e0c263 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=173b29d07b7e78108bab3bf145eba669861543b85910a5d60e101d1b57ca02 handshake=Noise_NXpsk0_25519_ChaChaPoly_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662549466b62462582414c580a5d26559f913770e8ff43e82d1d11c2a msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466e15aaba5d9237372cd606332278a7fafe502bf5da959448b7aba91aa233b8426256c0bce8d8a8a48e6749218b6bf4d1fbc50c9616d0018183df12bc6a32a5ae685e786e15ae420fdf1ea msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=d669f1665b76c5081948c04c3f8fcdadbedb03fc0bf735bccead480c9d07d8 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=f1bbc916980b6e57f5c73900c8c3a59e793ec656a08153f0907ddd48c32656 handshake=Noise_NXpsk1_25519_ChaChaPoly_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254dbd5e20809d301052b4953b63dab04cbb1bdca9ce948132bc6a1 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c275a8088f895e9da65446a1e0f546af2cb58f8ca255a901d607c04862c05d4e24b1f1a06cbbd9ca58c102cf6df58054a0cc0aee27153e563b6628d04492ddabf898e9d3dc88cb05caf9 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=6d6afdf7b42a9b89cb2d10db38215064e496f4a7b4a6ed07a6c3ca9079121b msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=22fa156f8584ac9649c136dc97aadc118b2228ead75adb7a613bad01296099 handshake=Noise_NXpsk2_25519_ChaChaPoly_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625414fde92796c7eb025037438eeacbdcb2c0c94f049ba861860b0e msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466a1cd0d53bab3c8076ab5f5c8dc0b79628e1e24b179f2b9e83dd9a891c527a238ba5e4798d9a8c59fe6c7a32b28904c7c29b8a81fc40825e8f546253cd908c607f8a37a276f13e12db216 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=0ca7d068c7d39806366bbf7e93af4348300523ce01d7e96c89de8e4fbb9ca8 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=a7675930bc1cefe9a1f84f535b3b583cefcfac329838e7bb176f226570f7a6 handshake=Noise_NX_25519_ChaChaPoly_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484662fa9441324a92794acc0183591dd9d557e9d2251ff81cb8e7b6a34939ac4036f8651a0e993975aeea53e4113ada3b7d80688689fa70e534841d31e505db9fc63 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=ab1d23a9f710a0149ddbb596f968be2ed7afbdc065d8fed5168472f4e0c263 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=173b29d07b7e78108bab3bf145eba669861543b85910a5d60e101d1b57ca02 handshake=Noise_NXpsk0_25519_ChaChaPoly_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541c6e2b9c9a65d9194cb1f369e1afd5e4 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466e15aaba5d9237372cd606332278a7fafe502bf5da959448b7aba91aa233b842681582921e2a265120960fdd7a5c4863d4c3ca740b0fdea11e84d42a79641712c msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=d669f1665b76c5081948c04c3f8fcdadbedb03fc0bf735bccead480c9d07d8 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=f1bbc916980b6e57f5c73900c8c3a59e793ec656a08153f0907ddd48c32656 handshake=Noise_NXpsk1_25519_ChaChaPoly_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254acd1745c885149a64ce7f3481dee508a msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c275a8088f895e9da65446a1e0f546af2cb58f8ca255a901d607c04862c05d4e2bc44f07f0001ff465418b2180d8b01c70915587643ff6e707d27eb1203bebf0 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=6d6afdf7b42a9b89cb2d10db38215064e496f4a7b4a6ed07a6c3ca9079121b msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=22fa156f8584ac9649c136dc97aadc118b2228ead75adb7a613bad01296099 handshake=Noise_NXpsk2_25519_ChaChaPoly_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254435325bcaf808e2b1a57d1e0cfadda3a msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466a1cd0d53bab3c8076ab5f5c8dc0b79628e1e24b179f2b9e83dd9a891c527a238e295e298959aeaec8ba42bb0c2fccc99632cbcccec4341a272657bbb1e6589bd msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=0ca7d068c7d39806366bbf7e93af4348300523ce01d7e96c89de8e4fbb9ca8 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=a7675930bc1cefe9a1f84f535b3b583cefcfac329838e7bb176f226570f7a6 handshake=Noise_NX_25519_ChaChaPoly_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484662fa9441324a92794acc0183591dd9d557e9d2251ff81cb8e7b6a34939ac4036fbd4d474a60b9243549e661a23fbe6818b2be7bcc73a2ab41fc9dc20c5b432f6d1d06b2f0d17c51070d3a msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=ab1d23a9f710a0149ddbb596f968be2ed7afbdc065d8fed5168472f4e0c263 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=173b29d07b7e78108bab3bf145eba669861543b85910a5d60e101d1b57ca02 handshake=Noise_NXpsk0_25519_ChaChaPoly_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662549466b62462582414c580478ce9b85bd9aa77e54f67f4dd6c5d82 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466e15aaba5d9237372cd606332278a7fafe502bf5da959448b7aba91aa233b84269fc00380622f9c2cbdcac0ed827cdd4cbc50c9616d0018183df16dc0cdbe1194bbeb74960015ce712022 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=d669f1665b76c5081948c04c3f8fcdadbedb03fc0bf735bccead480c9d07d8 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=f1bbc916980b6e57f5c73900c8c3a59e793ec656a08153f0907ddd48c32656 handshake=Noise_NXpsk1_25519_ChaChaPoly_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254dbd5e20809d301052b493609a928ec2fe986655186f645a7791c msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c275a8088f895e9da65446a1e0f546af2cb58f8ca255a901d607c04862c05d4e7fbc9e638653a16fd2d3f653dc377ccca0cc0aee27153e563b668fcabf727f2fe6d5dd0dda9dd235599d msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=6d6afdf7b42a9b89cb2d10db38215064e496f4a7b4a6ed07a6c3ca9079121b msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=22fa156f8584ac9649c136dc97aadc118b2228ead75adb7a613bad01296099 handshake=Noise_NXpsk2_25519_ChaChaPoly_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625414fde92796c7eb025037e305fb9a4b18616d971a36b6852f7315 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466a1cd0d53bab3c8076ab5f5c8dc0b79628e1e24b179f2b9e83dd9a891c527a238b0b828d5c244b4c3c239b1c7b2ddbab729b8a81fc40825e8f5466d7e958a84ff6b12e1af4fbba9a29b50 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=0ca7d068c7d39806366bbf7e93af4348300523ce01d7e96c89de8e4fbb9ca8 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=a7675930bc1cefe9a1f84f535b3b583cefcfac329838e7bb176f226570f7a6 handshake=Noise_KX_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484664da461bfc2d7e228776700246eecb12bc654b92fef771afb5c6c6645648e11d847f40b2d552be046c38b3882103e86fc283c15084a8b61fd16d83e556498ec48 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=f2705e50e8767f26211b34d7fed7756365369d16d09beb7c2242bf73344bdf msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=5d5a714198d09c66a53b7430a506394c4fc09cf01ba87a63be5cc6a3950971 handshake=Noise_KXpsk0_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254a708d17c82987917466c1283e27a5243 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466dade0aaee91efc2a450b6473fb57348ce567f479f3434272157f7a1c1e9c910c7561bf41b5d645b6ddc9fed8e78bee6123322e497d2a8304888aadfdf2827cac msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=37146cfbb188da3bfa49c5395f5efe6192d71715dad654f752818b62cd4cf8 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=5c1087fdfc98033ebd073c253f5cd07c491e345b60eb2db754b6081bda1264 handshake=Noise_KXpsk1_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541b2c9cd52bff4bc2f41a75e8e23b4eed msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846633507ddc0579de7fbe76c684d63e57d543196a324296bc48cd1c7c4573daf945cf06ccbe204667df4aceffdeb4414bf94d1357942e5206de77985c5cdd40844e msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=1b7d27ab5b443523ae268ca3d793470450e01704618a971ca391b115ac6c98 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=62ea5681b380e2a9c1a386ba08bca2ded5a8a6f596841dacce9d9f25c51ad1 handshake=Noise_KXpsk2_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254e3680648d1d20449b7c0aea4203871b0 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466b217bad95312cabcc05c2faa1d4c06b0e11b9dcb71f1e37e6970a55e24352b61482a9701a39f039df362b5cbc297a1b5b5769b45d14697675b25c72ec6f41fb6 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=4c63441220a5aea59a924dc2f03c5f19d6dbf065d3f1fbeffb8c2a9443eba4 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=12296e1c0a21fd13cbe935d4bff4855f097bfa6b56a5220b8bed38c222a82b handshake=Noise_KX_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484664da461bfc2d7e228776700246eecb12bc654b92fef771afb5c6c6645648e11d85f7ae53e16f2f8b10e6f6f77e6b737d17e65818a7649a0dd819b8b79f1e8aadf3dab7f4ccfdb86dbd5b4 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=f2705e50e8767f26211b34d7fed7756365369d16d09beb7c2242bf73344bdf msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=5d5a714198d09c66a53b7430a506394c4fc09cf01ba87a63be5cc6a3950971 handshake=Noise_KXpsk0_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254aa9944ef5862e98b59774e7c724731a7c9ad55bb23e759b6155e msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466dade0aaee91efc2a450b6473fb57348ce567f479f3434272157f7a1c1e9c910c26475971134b2de5ed2acfcc024a4126fa5a09cfc607150eab573e9d106f9c538e33d45efaa6f7bcb45e msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=37146cfbb188da3bfa49c5395f5efe6192d71715dad654f752818b62cd4cf8 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=5c1087fdfc98033ebd073c253f5cd07c491e345b60eb2db754b6081bda1264 handshake=Noise_KXpsk1_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254852022ca0041d1875ce9c1e0a87166a72b54e2be548b4fb70b10 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846633507ddc0579de7fbe76c684d63e57d543196a324296bc48cd1c7c4573daf945617479de0875fba178c5c9adf3280df5cfc231db12d274de858364a5245306776132c263d487322b63f8 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=1b7d27ab5b443523ae268ca3d793470450e01704618a971ca391b115ac6c98 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=62ea5681b380e2a9c1a386ba08bca2ded5a8a6f596841dacce9d9f25c51ad1 handshake=Noise_KXpsk2_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254db02872b3c4193584b69762d97fb9f89abbdd582b7f8e5dc6e22 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466b217bad95312cabcc05c2faa1d4c06b0e11b9dcb71f1e37e6970a55e24352b612c433e36f398b4e463e0d77434f8ad9e7ed2ee1f9beeed0a3e868ad2d0f36605870fbacd13fae104a316 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=4c63441220a5aea59a924dc2f03c5f19d6dbf065d3f1fbeffb8c2a9443eba4 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=12296e1c0a21fd13cbe935d4bff4855f097bfa6b56a5220b8bed38c222a82b handshake=Noise_KX_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484664da461bfc2d7e228776700246eecb12bc654b92fef771afb5c6c6645648e11d8b0cfe2f8e48e009af03e6420e5f0dfab42491c7c224bb630b73d159ef7ff18a8 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=f2705e50e8767f26211b34d7fed7756365369d16d09beb7c2242bf73344bdf msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=5d5a714198d09c66a53b7430a506394c4fc09cf01ba87a63be5cc6a3950971 handshake=Noise_KXpsk0_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625467be4845bb485599879d5d2744ffc023 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466dade0aaee91efc2a450b6473fb57348ce567f479f3434272157f7a1c1e9c910c8cd74cab21809c5bf9ae94a3e74d9bd17fafd70a1360983530c8574e62567f74 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=37146cfbb188da3bfa49c5395f5efe6192d71715dad654f752818b62cd4cf8 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=5c1087fdfc98033ebd073c253f5cd07c491e345b60eb2db754b6081bda1264 handshake=Noise_KXpsk1_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254a32d10e5390ce2550ad276761ef7889f msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846633507ddc0579de7fbe76c684d63e57d543196a324296bc48cd1c7c4573daf945c1ee27fed069cbac9996f122e1180aabed9b592cbde022e46d84a11941ec1527 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=1b7d27ab5b443523ae268ca3d793470450e01704618a971ca391b115ac6c98 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=62ea5681b380e2a9c1a386ba08bca2ded5a8a6f596841dacce9d9f25c51ad1 handshake=Noise_KXpsk2_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254a8e1f464d3fd4aca7a283f32c0d816e2 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466b217bad95312cabcc05c2faa1d4c06b0e11b9dcb71f1e37e6970a55e24352b61c7fe2e8c86a9322bb9d26850cf0727c55e3172f310413bb5addfba93df599150 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=4c63441220a5aea59a924dc2f03c5f19d6dbf065d3f1fbeffb8c2a9443eba4 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=12296e1c0a21fd13cbe935d4bff4855f097bfa6b56a5220b8bed38c222a82b handshake=Noise_KX_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484664da461bfc2d7e228776700246eecb12bc654b92fef771afb5c6c6645648e11d8d792d9531d4982940eb0f25d701902557e65818a7649a0dd819b2669d91c8e90827d6252b0855edaee1c msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=f2705e50e8767f26211b34d7fed7756365369d16d09beb7c2242bf73344bdf msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=5d5a714198d09c66a53b7430a506394c4fc09cf01ba87a63be5cc6a3950971 handshake=Noise_KXpsk0_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254aa9944ef5862e98b5977fc452078277dd82650680c3709420ece msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466dade0aaee91efc2a450b6473fb57348ce567f479f3434272157f7a1c1e9c910cf73243ef2c5e6e04886629ee23126d86fa5a09cfc607150eab57ab0e1c47090e4d87caebb8180cc5dcde msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=37146cfbb188da3bfa49c5395f5efe6192d71715dad654f752818b62cd4cf8 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=5c1087fdfc98033ebd073c253f5cd07c491e345b60eb2db754b6081bda1264 handshake=Noise_KXpsk1_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254852022ca0041d1875ce967af157e5a16f3b94544b7e3f6559950 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846633507ddc0579de7fbe76c684d63e57d543196a324296bc48cd1c7c4573daf9450e09353924859de4e199926441bb4f4fcfc231db12d274de858332825a59715f48ae8b81da85503919df msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=1b7d27ab5b443523ae268ca3d793470450e01704618a971ca391b115ac6c98 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=62ea5681b380e2a9c1a386ba08bca2ded5a8a6f596841dacce9d9f25c51ad1 handshake=Noise_KXpsk2_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254db02872b3c4193584b69e13c7bfd4702fbbf8be5dec60f1f1a2b msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466b217bad95312cabcc05c2faa1d4c06b0e11b9dcb71f1e37e6970a55e24352b617c6c0a311097ecff8bb1f324e9802f137ed2ee1f9beeed0a3e869b49f84fc648bc5733d5fe944589a4f0 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=4c63441220a5aea59a924dc2f03c5f19d6dbf065d3f1fbeffb8c2a9443eba4 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=12296e1c0a21fd13cbe935d4bff4855f097bfa6b56a5220b8bed38c222a82b handshake=Noise_XN_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484667c3bcb8aa57d16c472e5884f7f10d713 msg_2_payload= msg_2_ciphertext=3fd53af07c2c674ca7cf182726641c4c02d7c8d3b0dfecdafecf43b741fac77b9cb60225da2079f22ff4bd57a995175986d65b89a24315d2300e04f08b1214c3 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=3907e2136f0103c819943689cceace3d4f5428bedab749d25ae8afdaf5ef74 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=99cce8f25e45b84ea11bb53afa95131a80faed0345ed3f328b830166eaed5a handshake=Noise_XNpsk0_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254e536bf7659b705b260e11326d088608d msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466384980e3852095d08dd4418f4b9d766a msg_2_payload= msg_2_ciphertext=f336d406e1f75f3ffd3865c92ce137c55e37dc49e27210e05254c2ec3ad7ee4a1199e9838d05b8562d459f0be3ed09e900a3967b6ac1bf68178cbf4f4f521b9f msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=dee33db18e140806fbdc44c4f3b2d7860948d4cc1938dae2dd41e13146756d msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=284090b027f87c4dd51fe38650b3703a08b06dd9022e6d2ffc7f2b04a28459 handshake=Noise_XNpsk1_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254d5bdd95205c45c1e7b522000e02ae624 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484667ac2f4af89e151b584a2b7cedf3b98af msg_2_payload= msg_2_ciphertext=0d06059800951529977ab99abf46011735b52bc602ed118b505e013091719a081d41709ebae85b753a5e4a220c6de5a175240be1b0ff56d32ccd60374d607b55 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=0d616739d9678ba60390dfb5a27c4f636820ea559fcd84a049ce5c785cbee3 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=6f68ab6c0bffe6cebc38e8351dbd50541a4e645e765db0b3582db6711216e2 handshake=Noise_XNpsk2_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662545ced8cfad93ee839f831bf40f350d394 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846636c9388f83f1d795eba433e3a85f6b71 msg_2_payload= msg_2_ciphertext=6ffc44aa06250c17e707f2496732412ed194ea271ed8d0db223b9db3cec1719c4ee79d0d034be157e33048185c964495b331be70f390d09d6d63b7d21b3bc0cf msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=1d203dde50bb9c29b43ea61990dc7f33af190af9c04ca8e2dde93314f17e83 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=78be8aa2d277eb4e3dfb5e3f8de1b46b8bf8a0369ed052fde5c5ddb35f3d1b handshake=Noise_XNpsk3_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662549ab9834e132b8bb4879a23b62843fcbf msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466bb3e012f72892b7e941bce96ca2ea563 msg_2_payload= msg_2_ciphertext=c533dd475d8136b5aeaa4c5113f90ad850eb9f23b6b4c6101f361d28ae49237bdfd0f3ef74d4d4dba6327fde952c82d924aa3af517292ccf6a663aedafb523ae msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=e2eac4b51925c4c1a6d132387b7e72cdb73d43a28e5a77d0792fa9741803ef msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=bd4e9d62222743b195d68b066ec04f67fdc2303d73abf6fbd9a2256d3a03aa handshake=Noise_XN_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846668e545d2dc0b6d33da9fd24ad31b9b33f8a2bd66c94ffc254f41 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=3fd53af07c2c674ca7cf182726641c4c02d7c8d3b0dfecdafecf43b741fac77bcfa35e90e3132d80034ed9b23241a0efd3f7500318405c3518dba6b669ea10904eba266c29ab90fc722f msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=3907e2136f0103c819943689cceace3d4f5428bedab749d25ae8afdaf5ef74 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=99cce8f25e45b84ea11bb53afa95131a80faed0345ed3f328b830166eaed5a handshake=Noise_XNpsk0_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254a9ea932312f389043a091fca6aea3f0dd2859c7c60729aa8c714 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466473a0058daa80d9c2e3d297344328bfcfa46eb6b8e4022a115b5 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=f336d406e1f75f3ffd3865c92ce137c55e37dc49e27210e05254c2ec3ad7ee4a99bac244d3d9414db9516c6eaa31537bbf7fdff96934ac26427ec01d5f97303ba310f8b5d310f5590972 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=dee33db18e140806fbdc44c4f3b2d7860948d4cc1938dae2dd41e13146756d msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=284090b027f87c4dd51fe38650b3703a08b06dd9022e6d2ffc7f2b04a28459 handshake=Noise_XNpsk1_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254a47374f2616d600032043446710da74f47e21009109681b36f63 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846622ec1deae64ffca2c0e9a4719b0ac129654a6acec3acfdf100a8 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=0d06059800951529977ab99abf46011735b52bc602ed118b505e013091719a0818a72afc1a92deb5ac2e19e428bc75ec462350558a18072bb0fb30156b1ea8a40a2c70af2e9bf20ad691 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=0d616739d9678ba60390dfb5a27c4f636820ea559fcd84a049ce5c785cbee3 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=6f68ab6c0bffe6cebc38e8351dbd50541a4e645e765db0b3582db6711216e2 handshake=Noise_XNpsk2_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625400c129b407b0e1a7e81cd0856da2332b21089505096cb0f590c5 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466e5d916dabcaa33741dd98e41128d5e0f20a6a45671f3d1848c2b msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=6ffc44aa06250c17e707f2496732412ed194ea271ed8d0db223b9db3cec1719cc83c5ae88e63fc64b2dfff43b873a068b95e7190573128cae00b528948bb3b6e234c1e93e9612e96e781 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=1d203dde50bb9c29b43ea61990dc7f33af190af9c04ca8e2dde93314f17e83 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=78be8aa2d277eb4e3dfb5e3f8de1b46b8bf8a0369ed052fde5c5ddb35f3d1b handshake=Noise_XNpsk3_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254abb638c9b7f9e37475bc13b640bcd2413ef6ac24ddfc1b375856 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484661b1d6ab5f61f9808b5ba36778c746d1dd4ef83c6344dab022aab msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=c533dd475d8136b5aeaa4c5113f90ad850eb9f23b6b4c6101f361d28ae49237b5a205d18fc908864cac4b3687c9bab1160a25c00f34525741269fff47fe9804b1ea44f2af599eda0f6a3 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=e2eac4b51925c4c1a6d132387b7e72cdb73d43a28e5a77d0792fa9741803ef msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=bd4e9d62222743b195d68b066ec04f67fdc2303d73abf6fbd9a2256d3a03aa handshake=Noise_XN_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466608b752c761dbdbff13c1cf118a78012 msg_2_payload= msg_2_ciphertext=3fd53af07c2c674ca7cf182726641c4c02d7c8d3b0dfecdafecf43b741fac77b5d6677b9332a441dfa111bc6567e02e3f00da36393accef162e17752f5678f96 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=3907e2136f0103c819943689cceace3d4f5428bedab749d25ae8afdaf5ef74 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=99cce8f25e45b84ea11bb53afa95131a80faed0345ed3f328b830166eaed5a handshake=Noise_XNpsk0_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254ec1ea27017f8e7707f18f51064fd2add msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466802a509fd08046ae49f47f74a4e0ccc6 msg_2_payload= msg_2_ciphertext=f336d406e1f75f3ffd3865c92ce137c55e37dc49e27210e05254c2ec3ad7ee4a1684c6ebf8ef1e82a68eb2b50a3099ed665dc1639b91800662be46495764ae43 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=dee33db18e140806fbdc44c4f3b2d7860948d4cc1938dae2dd41e13146756d msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=284090b027f87c4dd51fe38650b3703a08b06dd9022e6d2ffc7f2b04a28459 handshake=Noise_XNpsk1_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662547cab3a68cd70802365a6f31f3bd5404e msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846661068b4ce2fe89e3b22be23143b20354 msg_2_payload= msg_2_ciphertext=0d06059800951529977ab99abf46011735b52bc602ed118b505e013091719a085ee2b4469aa934e1e0120d07cb930ba2333bdc2aebcb22fb4a1ce4237331866d msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=0d616739d9678ba60390dfb5a27c4f636820ea559fcd84a049ce5c785cbee3 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=6f68ab6c0bffe6cebc38e8351dbd50541a4e645e765db0b3582db6711216e2 handshake=Noise_XNpsk2_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254ce578828a73922e9e4dffa89512bc9a2 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466de48548f3293ba62560009b242fee319 msg_2_payload= msg_2_ciphertext=6ffc44aa06250c17e707f2496732412ed194ea271ed8d0db223b9db3cec1719c17ea0785e8debcf3099f7d5eedf069ed765e74a75a323ab224a3738a926ce4fa msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=1d203dde50bb9c29b43ea61990dc7f33af190af9c04ca8e2dde93314f17e83 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=78be8aa2d277eb4e3dfb5e3f8de1b46b8bf8a0369ed052fde5c5ddb35f3d1b handshake=Noise_XNpsk3_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662542242c47f31f968ccc897da360e62a083 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484662f7cedc69bd3185e75f1b4d3809a6402 msg_2_payload= msg_2_ciphertext=c533dd475d8136b5aeaa4c5113f90ad850eb9f23b6b4c6101f361d28ae49237bb9f6442a7516ac401971a31b8079c7f66626d3685e14f06a107bec76b02d16a1 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=e2eac4b51925c4c1a6d132387b7e72cdb73d43a28e5a77d0792fa9741803ef msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=bd4e9d62222743b195d68b066ec04f67fdc2303d73abf6fbd9a2256d3a03aa handshake=Noise_XN_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846668e545d2dc0b6d33da9f921c05aa32b4aa4dd9d7b520452ff0d3 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=3fd53af07c2c674ca7cf182726641c4c02d7c8d3b0dfecdafecf43b741fac77b589759479eeb6de299615797705822d6d3f7500318405c3518db94f99a9ee65a5cbdfc4901fe80c7d645 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=3907e2136f0103c819943689cceace3d4f5428bedab749d25ae8afdaf5ef74 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=99cce8f25e45b84ea11bb53afa95131a80faed0345ed3f328b830166eaed5a handshake=Noise_XNpsk0_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254a9ea932312f389043a0905f635244ebed0c959d850a67d2bfcdb msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466473a0058daa80d9c2e3dcab025910801eed3e0cdb0fb880d3d6b msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=f336d406e1f75f3ffd3865c92ce137c55e37dc49e27210e05254c2ec3ad7ee4a368bf01b9da36e4ce6b554e8b73dab13bf7fdff96934ac26427ebbb2701fc32e0ffccb9c3bb8b0aefb75 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=dee33db18e140806fbdc44c4f3b2d7860948d4cc1938dae2dd41e13146756d msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=284090b027f87c4dd51fe38650b3703a08b06dd9022e6d2ffc7f2b04a28459 handshake=Noise_XNpsk1_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254a47374f2616d600032047892120a00630119ec5dc6a4442dda22 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846622ec1deae64ffca2c0e9c34fa5a2bbf1968c6d2c1d80fc911a28 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=0d06059800951529977ab99abf46011735b52bc602ed118b505e013091719a08f99960c571a1598776bac8555377f9d7462350558a18072bb0fbed68cd772ec5bc4899aeffa332303bfb msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=0d616739d9678ba60390dfb5a27c4f636820ea559fcd84a049ce5c785cbee3 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=6f68ab6c0bffe6cebc38e8351dbd50541a4e645e765db0b3582db6711216e2 handshake=Noise_XNpsk2_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625400c129b407b0e1a7e81ca404bfbae707682f2c14be89ae10c1d8 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466e5d916dabcaa33741dd926fadac6a68a33856977d6b9809f174b msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=6ffc44aa06250c17e707f2496732412ed194ea271ed8d0db223b9db3cec1719ce8e013412dd540377d8d28be4b70dc54b95e7190573128cae00b52f12a95c947a65121d7b922ba35ef3d msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=1d203dde50bb9c29b43ea61990dc7f33af190af9c04ca8e2dde93314f17e83 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=78be8aa2d277eb4e3dfb5e3f8de1b46b8bf8a0369ed052fde5c5ddb35f3d1b handshake=Noise_XNpsk3_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254abb638c9b7f9e37475bc49791331a682b67199936ecb513e38c6 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484661b1d6ab5f61f9808b5bac4d0141615d581366e86cf1c7c01310b msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=c533dd475d8136b5aeaa4c5113f90ad850eb9f23b6b4c6101f361d28ae49237b7fb184f15e468b37794ce697f1bc1ec960a25c00f34525741269d02c60c542110a1f17bd4fda90a7b3bf msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=e2eac4b51925c4c1a6d132387b7e72cdb73d43a28e5a77d0792fa9741803ef msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=bd4e9d62222743b195d68b066ec04f67fdc2303d73abf6fbd9a2256d3a03aa handshake=Noise_IN_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548f40c5adb68f25624ae5b214ea767a6ec94d829d3d7b5e1ad1ba6f3e2138285f msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466bf81cc58fc81923794e9cb78b175e98f msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=19cc2591829276b739f9f5b1deb652104dc294700bfa4bff444556a1eb66a8 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=79d57fd9146cc45d81a557ccb290399035dee037ad22c8371fb245eea2a937 handshake=Noise_INpsk0_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662543e53b95e290bf8014fe7d452af24a73fec879b75957a17db1f438bcc24f70495334d65fed40a1f58a9a10cebb1fad680bc94b53651dc947759b6c639ef74b6de msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484666fcc7926e731cd7c4fd845094bb80e47 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=c2355e5c0f0d55bab43293892b2560f6d625596a578d4688a84723a0e97afa msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=33747bd7e8cd49233efc2b656b41a9ef65fbd5435320b83260b3ab33d71b1e handshake=Noise_INpsk1_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625452bc63f42d0ef66c39248c5cfdc031cacb4c05da27eac1e2da9dc4e76a8c85c97398cb24c0e3770a64c92be982b477907c6ec27d84ab39aa5182d2a2c372cdae msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846667dfafc165b8d7c12f5b3dfdb65a3e2d msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=336f4092772f3176d10c7bc03010e9b478b4cac44381de9ebe043c1ef5a46e msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=06926f4dab3ecdf3d21d9e823d767be93e539cdb751c196465d0b05721229c handshake=Noise_INpsk2_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541905fbbca99a3dae4a0e7dfc37f07ea4a5e4482ed7639d9c957eac004eb91b1964d790510ea069614527929196d827e38e8026e56b9e9d4fecf24dc12ee4556c msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484666ef6fc0cfd40f5cc18f051ab1a038f20 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=435fd3ce23b58ba31718d8851ab789a904d59c6aad42259d48a9ce3966fde9 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=b1703823277c5285e8d3dbb9f6d5e87b77eb8a80f12ceea78de50f0a39a6c9 handshake=Noise_IN_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548f40c5adb68f25624ae5b214ea767a6ec94d829d3d7b5e1ad1ba6f3e2138285f746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466b7f5acb19587ea6253e2dd0e216a6edd1deb1c0e132cd18977f3 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=19cc2591829276b739f9f5b1deb652104dc294700bfa4bff444556a1eb66a8 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=79d57fd9146cc45d81a557ccb290399035dee037ad22c8371fb245eea2a937 handshake=Noise_INpsk0_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662543e53b95e290bf8014fe7d452af24a73fec879b75957a17db1f438bcc24f70495334d65fed40a1f58a9a10cebb1fad68014380d2bea0381c1510e67e5d0b8776c202c821ae1403340c30a msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484664a001ad9502defe28afd10d518c7a7c7500451e748ac3a7af324 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=c2355e5c0f0d55bab43293892b2560f6d625596a578d4688a84723a0e97afa msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=33747bd7e8cd49233efc2b656b41a9ef65fbd5435320b83260b3ab33d71b1e handshake=Noise_INpsk1_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625452bc63f42d0ef66c39248c5cfdc031cacb4c05da27eac1e2da9dc4e76a8c85c97398cb24c0e3770a64c92be982b47790eb1556d2552e1ad7246336cdd4e094fd89ddefeca031320b6331 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484663554a6fc7e2cb03ff28cd7c1b199ee0b0e112ed1e01545886262 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=336f4092772f3176d10c7bc03010e9b478b4cac44381de9ebe043c1ef5a46e msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=06926f4dab3ecdf3d21d9e823d767be93e539cdb751c196465d0b05721229c handshake=Noise_INpsk2_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541905fbbca99a3dae4a0e7dfc37f07ea4a5e4482ed7639d9c957eac004eb91b1964d790510ea069614527929196d827e3359e9010a82b92594f4d8f37f110d89ddea2428fd23087113089 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466ff02318aba77b517f05b7b59fa9e11a4838e31504dfe99625976 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=435fd3ce23b58ba31718d8851ab789a904d59c6aad42259d48a9ce3966fde9 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=b1703823277c5285e8d3dbb9f6d5e87b77eb8a80f12ceea78de50f0a39a6c9 handshake=Noise_IN_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548f40c5adb68f25624ae5b214ea767a6ec94d829d3d7b5e1ad1ba6f3e2138285f msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846632e0ebbe49f1eb985aae92e521edf80e msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=19cc2591829276b739f9f5b1deb652104dc294700bfa4bff444556a1eb66a8 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=79d57fd9146cc45d81a557ccb290399035dee037ad22c8371fb245eea2a937 handshake=Noise_INpsk0_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662543e53b95e290bf8014fe7d452af24a73fec879b75957a17db1f438bcc24f70495155c30fea666bba0fc0ae69c4c3892c154dcfb7b599413a962eeb3d24ad9e8e2 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466276df8c1ea699ceec119c8325ba3eac3 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=c2355e5c0f0d55bab43293892b2560f6d625596a578d4688a84723a0e97afa msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=33747bd7e8cd49233efc2b656b41a9ef65fbd5435320b83260b3ab33d71b1e handshake=Noise_INpsk1_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625452bc63f42d0ef66c39248c5cfdc031cacb4c05da27eac1e2da9dc4e76a8c85c90450ae312299b436e3950e316d28b5c0ad15e29ba03f6668dcde2109f6c74e97 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c12c9edb807ded3c07db4936d0c7e41e msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=336f4092772f3176d10c7bc03010e9b478b4cac44381de9ebe043c1ef5a46e msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=06926f4dab3ecdf3d21d9e823d767be93e539cdb751c196465d0b05721229c handshake=Noise_INpsk2_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541905fbbca99a3dae4a0e7dfc37f07ea4a5e4482ed7639d9c957eac004eb91b195ce984c7b5582ba0dfcb498774dc44f5ab63c89ec6b9ac8067f9267dcc1a63f1 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466fe750a4d7c95a9f0882b1a9c26a77542 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=435fd3ce23b58ba31718d8851ab789a904d59c6aad42259d48a9ce3966fde9 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=b1703823277c5285e8d3dbb9f6d5e87b77eb8a80f12ceea78de50f0a39a6c9 handshake=Noise_IN_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548f40c5adb68f25624ae5b214ea767a6ec94d829d3d7b5e1ad1ba6f3e2138285f746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466b7f5acb19587ea6253e2e4d6e53530bd10bc9560791f93b225c8 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=19cc2591829276b739f9f5b1deb652104dc294700bfa4bff444556a1eb66a8 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=79d57fd9146cc45d81a557ccb290399035dee037ad22c8371fb245eea2a937 handshake=Noise_INpsk0_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662543e53b95e290bf8014fe7d452af24a73fec879b75957a17db1f438bcc24f70495155c30fea666bba0fc0ae69c4c3892c114380d2bea0381c1510e3621bfe83997a122e8107ba562249f8f msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484664a001ad9502defe28afde0277a125ce29e71973a85532a8d4437 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=c2355e5c0f0d55bab43293892b2560f6d625596a578d4688a84723a0e97afa msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=33747bd7e8cd49233efc2b656b41a9ef65fbd5435320b83260b3ab33d71b1e handshake=Noise_INpsk1_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625452bc63f42d0ef66c39248c5cfdc031cacb4c05da27eac1e2da9dc4e76a8c85c90450ae312299b436e3950e316d28b5c0eb1556d2552e1ad724636fb85f3717f9e7f063b35b54e8a07412 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484663554a6fc7e2cb03ff28c38dbd0beb45568b0a1252e49dccd5410 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=336f4092772f3176d10c7bc03010e9b478b4cac44381de9ebe043c1ef5a46e msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=06926f4dab3ecdf3d21d9e823d767be93e539cdb751c196465d0b05721229c handshake=Noise_INpsk2_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541905fbbca99a3dae4a0e7dfc37f07ea4a5e4482ed7639d9c957eac004eb91b195ce984c7b5582ba0dfcb498774dc44f5359e9010a82b92594f4d9fa434710f0c79fda3a3b18a0c7a626f msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466ff02318aba77b517f05b2125921d4c162f0a05516ccd87df7a84 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=435fd3ce23b58ba31718d8851ab789a904d59c6aad42259d48a9ce3966fde9 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=b1703823277c5285e8d3dbb9f6d5e87b77eb8a80f12ceea78de50f0a39a6c9 handshake=Noise_XK_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254a653390edbd86ba1c020a9938137fa5f msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484663f75cb8ff03cce740b876919370edaa2 msg_2_payload= msg_2_ciphertext=2fabfb16fc114fed3616c271dbf12733184f4d2e32201ffb233a4720d451cd31e29677f21209b0009b0b1751417adb13b14852eb831d09f8061228cdce3b8dea msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=15b8fdb578ed7fadbd4f6fc87fd48cd3c786ca4ac3ce3a68708ec72147b8c9 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=9525d9e2805470da9ec648070a03e1a5e87f0c858565adbdcf7c38d3dca90e handshake=Noise_XKpsk0_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254cd9f6810800376a24aff6e6e1af0db21 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466a8a4486855810a350255ae76b501d6ff msg_2_payload= msg_2_ciphertext=7028e105675b2294d5887e5fece5ebcad0d304fc21046b7463b3bd763f84268c46023e2baf50dd6f9adac086bada593553f9324b2c733a4f06a3eeab0424f569 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=82acd07ad6c33e3e715daa31868d729a55825b1c88d55a46a9eab5984755d6 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=03d80857afae5021107843912a238783a83fa86c35a2000fa1b58b3828dd98 handshake=Noise_XKpsk1_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c10dc3cf777958d4979adbb06f3b9de3 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484668bef5c4d7ee2b435fbf3ad3aac2162fa msg_2_payload= msg_2_ciphertext=a77384941d395fe334060bb6480ade2cbcf4787451f6d2e8cf2c258a33e91ffae12717b78c58f43727101d020a47768034b2c8893276d463971268f0d3cda130 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=815e08cd47c188260e00166f020b2a990a8a7c31f2f6e5e64362bba39e0d8b msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=e13c3fd28fef752772f6a9b8c56eb26866fc1004b98f3644bbbe85829d7b48 handshake=Noise_XKpsk2_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662547848a2c529eaf0a68b9583558097b0ba msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484666f94344ffb9f6d96ce88e539b7f12aa7 msg_2_payload= msg_2_ciphertext=0c3c7a6dc99c66a026afd6caea5b4dd660846e936276107a6f114081a82408355d8e017c861668b5d83ded9d2fad8b003fb449e8a4abc3e752f974663c1b5a69 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=bbf2d5f1ea82093b94e17ba2ebaa8bed2318ba50f2449b673b41b93458c247 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=afdff82cfe53ed8c4bab4d50c197b8e23c67889a2230289e6f6fb7db7a2d56 handshake=Noise_XKpsk3_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662545489e9d87d5dbcedc653141983ec53ac msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846613383e82ec3683f2232ca1ad16f74418 msg_2_payload= msg_2_ciphertext=8b7820818afedd08897101cc1e914a29767619f3e142be2673ea7ddbe042c1fa3e9dcab07b0991c815e8158f679f13e7cdd71538cd3b1e69b2360994b768dcbb msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=9c5dd0584674d0fd555d3ba42a4c27756e954bc3aa6dc9fd0d237fbb6479c0 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=ea6edad32c0e8f948cd8b94072116377acff3cab42e2de8558f89b662dfa15 handshake=Noise_XK_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254dd159df0538d164882c09160a2ccd10fdba42242c074145b85da msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484664cf8cecb0ff80106624fb53f0e47e10871a53d4fca0e13a87e57 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=2fabfb16fc114fed3616c271dbf12733184f4d2e32201ffb233a4720d451cd3114f0f2256fce5a731ed038a1872211679d370b0a85ae6dbf66952ead8564d9f458001c1e8732de89a6c2 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=15b8fdb578ed7fadbd4f6fc87fd48cd3c786ca4ac3ce3a68708ec72147b8c9 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=9525d9e2805470da9ec648070a03e1a5e87f0c858565adbdcf7c38d3dca90e handshake=Noise_XKpsk0_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662542f8e3453a219c2f379b8ba373dfe48bf5c3202ee7119c5d3c1c4 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484669f1384f1028d68ed124f2f6e70a6f125ff5ed65a35ba6050e3c9 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=7028e105675b2294d5887e5fece5ebcad0d304fc21046b7463b3bd763f84268ca70070170e3cc469c667dbcab5091d33fd527b0687d9dbe7a2f97c52db0cac5fed733ce2236fe4adca5e msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=82acd07ad6c33e3e715daa31868d729a55825b1c88d55a46a9eab5984755d6 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=03d80857afae5021107843912a238783a83fa86c35a2000fa1b58b3828dd98 handshake=Noise_XKpsk1_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254dee2c560cb410ffe557c7183216c289cc5f28c4b9884a67e1607 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466d19c8f7fd48e7049046c83cdc13c43a33efa46793e06ff39a406 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=a77384941d395fe334060bb6480ade2cbcf4787451f6d2e8cf2c258a33e91ffa3f37dc25d204f2a58f13726a1188e2697d93f7f672b4b6c4d43b8031cba8f8cb8ba90020fac4807a0b5a msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=815e08cd47c188260e00166f020b2a990a8a7c31f2f6e5e64362bba39e0d8b msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=e13c3fd28fef752772f6a9b8c56eb26866fc1004b98f3644bbbe85829d7b48 handshake=Noise_XKpsk2_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662542cfbefa92d7f5e6f4b3b0ec725ab9f2caa61217f018017366e84 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466ded51642e5afbb65c7319672be181c2fe9d0e1679f09b04d0567 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=0c3c7a6dc99c66a026afd6caea5b4dd660846e936276107a6f114081a8240835255ad05e56c29a0f610ad13af2654759af0102ceda60fd259afc75f6e45742b54c5f6a3fccfd7eb8780f msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=bbf2d5f1ea82093b94e17ba2ebaa8bed2318ba50f2449b673b41b93458c247 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=afdff82cfe53ed8c4bab4d50c197b8e23c67889a2230289e6f6fb7db7a2d56 handshake=Noise_XKpsk3_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254d150e2ff1a6fa2da4dacf29dbeead64fd190af0015c8fb958ca2 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846666426ad661ac863b4d54d09062ee2be0fd87bf3025af79cae760 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=8b7820818afedd08897101cc1e914a29767619f3e142be2673ea7ddbe042c1fa401508f2f0a1db803daf9b9dabc72da48d62b45f1d64ba4b228fd30c887432718cae875d3e1651cdb662 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=9c5dd0584674d0fd555d3ba42a4c27756e954bc3aa6dc9fd0d237fbb6479c0 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=ea6edad32c0e8f948cd8b94072116377acff3cab42e2de8558f89b662dfa15 handshake=Noise_XK_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254f38769232d1dfdd5d2687e83d2e0722e msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466baeeae11a657b216c68c30892d7708ca msg_2_payload= msg_2_ciphertext=2fabfb16fc114fed3616c271dbf12733184f4d2e32201ffb233a4720d451cd317fa53017d00d6195b1d0d2797a44f7efccfdafd47eccfcf025779b8f44a7d231 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=15b8fdb578ed7fadbd4f6fc87fd48cd3c786ca4ac3ce3a68708ec72147b8c9 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=9525d9e2805470da9ec648070a03e1a5e87f0c858565adbdcf7c38d3dca90e handshake=Noise_XKpsk0_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662547f46575b56bf06e0df4be5276bd1a0c7 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484665065366a41253ccb091ecff34c0979bb msg_2_payload= msg_2_ciphertext=7028e105675b2294d5887e5fece5ebcad0d304fc21046b7463b3bd763f84268c719a26b97ebda8d8abe1262257c00c7ff6f6066751983529bd8749ca571c8fbf msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=82acd07ad6c33e3e715daa31868d729a55825b1c88d55a46a9eab5984755d6 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=03d80857afae5021107843912a238783a83fa86c35a2000fa1b58b3828dd98 handshake=Noise_XKpsk1_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625491a6d13954cfdca1f8554bb6699a070e msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484662b9b293403bc2d22af87254356ae6354 msg_2_payload= msg_2_ciphertext=a77384941d395fe334060bb6480ade2cbcf4787451f6d2e8cf2c258a33e91ffaa3ebf5fc392cf84011e8f30ca986e88c71f87a8b6ee1cf45cf59350de8c6c2bc msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=815e08cd47c188260e00166f020b2a990a8a7c31f2f6e5e64362bba39e0d8b msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=e13c3fd28fef752772f6a9b8c56eb26866fc1004b98f3644bbbe85829d7b48 handshake=Noise_XKpsk2_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254ef901c59fd43f24720cea36c3a803354 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484666dbb6ee57b791434d47ca6cacfc16de8 msg_2_payload= msg_2_ciphertext=0c3c7a6dc99c66a026afd6caea5b4dd660846e936276107a6f114081a8240835a162ae2b6521112c8c7e1ee5e0d21aabca690cbe1cf8983e08b5ac867a436a39 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=bbf2d5f1ea82093b94e17ba2ebaa8bed2318ba50f2449b673b41b93458c247 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=afdff82cfe53ed8c4bab4d50c197b8e23c67889a2230289e6f6fb7db7a2d56 handshake=Noise_XKpsk3_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254d75595f126007d31a32e936c9f50a722 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484666ef153dd2970c7fb3131dd89abc724c5 msg_2_payload= msg_2_ciphertext=8b7820818afedd08897101cc1e914a29767619f3e142be2673ea7ddbe042c1fa00386746b5ce8ac0e980a01f2b343db441b92b41e67266483c04995455d216e2 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=9c5dd0584674d0fd555d3ba42a4c27756e954bc3aa6dc9fd0d237fbb6479c0 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=ea6edad32c0e8f948cd8b94072116377acff3cab42e2de8558f89b662dfa15 handshake=Noise_XK_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254dd159df0538d164882c0fb3ac1bb4cc6ac4e27c464f5951e809e msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484664cf8cecb0ff80106624ffd90b3f32f5bb8299f54bf3028c19ce6 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=2fabfb16fc114fed3616c271dbf12733184f4d2e32201ffb233a4720d451cd31ffd8366c726d4ef7dced16efc4444f469d370b0a85ae6dbf669562da562cd93a0b837b24b7e9570fd611 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=15b8fdb578ed7fadbd4f6fc87fd48cd3c786ca4ac3ce3a68708ec72147b8c9 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=9525d9e2805470da9ec648070a03e1a5e87f0c858565adbdcf7c38d3dca90e handshake=Noise_XKpsk0_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662542f8e3453a219c2f379b8845259d60e5064b9b764387f19e57a73 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484669f1384f1028d68ed124fee35586dd6c739118976ef139b637969 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=7028e105675b2294d5887e5fece5ebcad0d304fc21046b7463b3bd763f84268c6c24589c7b12bd43d47552ad5b599b2efd527b0687d9dbe7a2f966185b50ce95791245b2ae475cfd4e0e msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=82acd07ad6c33e3e715daa31868d729a55825b1c88d55a46a9eab5984755d6 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=03d80857afae5021107843912a238783a83fa86c35a2000fa1b58b3828dd98 handshake=Noise_XKpsk1_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254dee2c560cb410ffe557cc9abb419d3d4e715a2e71e00a177b6e2 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466d19c8f7fd48e7049046c3725c324e1401dfb282d5cb6dd93c6b2 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=a77384941d395fe334060bb6480ade2cbcf4787451f6d2e8cf2c258a33e91ffaea6f9945a4ff4bcd5158727fa220f9487d93f7f672b4b6c4d43bd9fc3db8793f773ca7fd9200e25ace0e msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=815e08cd47c188260e00166f020b2a990a8a7c31f2f6e5e64362bba39e0d8b msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=e13c3fd28fef752772f6a9b8c56eb26866fc1004b98f3644bbbe85829d7b48 handshake=Noise_XKpsk2_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662542cfbefa92d7f5e6f4b3be913e231b431c8f7c670ce206137b712 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466ded51642e5afbb65c731ed84a8d985f37bfd26a39083898cd550 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=0c3c7a6dc99c66a026afd6caea5b4dd660846e936276107a6f114081a82408355f93a02f1599bc3ff07b5da28c8ce4c7af0102ceda60fd259afcf6b6bda42e3270e8b1eb62f1706161af msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=bbf2d5f1ea82093b94e17ba2ebaa8bed2318ba50f2449b673b41b93458c247 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=afdff82cfe53ed8c4bab4d50c197b8e23c67889a2230289e6f6fb7db7a2d56 handshake=Noise_XKpsk3_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254d150e2ff1a6fa2da4daccb89941440200125a36b9ce7441faa58 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846666426ad661ac863b4d54145127461138fe6018095b64e3f815e8 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=8b7820818afedd08897101cc1e914a29767619f3e142be2673ea7ddbe042c1fa6274c8474632d69fe1d7e8690676e85f8d62b45f1d64ba4b228f758259e5fa9b9082e4f6ff39682d48fc msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=9c5dd0584674d0fd555d3ba42a4c27756e954bc3aa6dc9fd0d237fbb6479c0 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=ea6edad32c0e8f948cd8b94072116377acff3cab42e2de8558f89b662dfa15 handshake=Noise_IK_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c9f0dff42c86abe5677abe74f6c87301577dbc1f3ffb2213827ca694a057fdbbff7f7350265fe61102c24d7d7a7e960ba8b90a679895087c7d28b1d6703f9727 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846622bf9c6171ddd4c8f682080b03504eee msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=595694f9be48f03790f699455c84578b31d14a7baedfd736d73c53f66a5657 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=621ae446b11fda3cf08e56102dac9324dee37a4e536cdc878e8b454d98bcf2 handshake=Noise_IKpsk0_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254df1f9b7f2814e2464394f35e13e46862cb009157dc0352d710c45376c6cd254409aebd0d5d8e544c64903917c911a5d9d4bb710801ef83ed8e190bd0a6090cae msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c1340c42411f7ad45a1c59bfd7d26c73 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=58a23ba181962ac5c0fafdf3c45870d1d8ba060076a80550ced748c69e6cc7 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=ef66353b5543937ee497369867d9559a0166a817be50780a7677583341cccf handshake=Noise_IKpsk1_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548aac9b7e52346a4de47756a681e5a97c720eef8b7faf4d312878c47eca4a0a014ddfe09618c12aed20e55a9e01da8a86b945c4f772011cb87a1bf9cadbd0519c msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466b8a7518e223985d3fb21a297aaeeafb7 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=01b3d709f2acd4b0d95de75506da47ad980c471f2afd3a436cdc59f5605a4a msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=d2d77f0af04d0086e77a59b4d5a4428115f60ef95ee23a56683e35a29dcb00 handshake=Noise_IKpsk2_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254d06f15f78ad0914d9715147bb5a5004b27345a838bab4aa8bc5f144afc2cf4cca972105ba526e8c92b759e028200e766f827aa12a04ecbc0bdcd9e574e007945 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484668c46d966ca4fe339f9e47fd25f68de8a msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=6013ea114b4c4884afb82bf029f72f924bd8a32c487a15a1cef4855ba234be msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=8a2e7119635e41a35b7e64e0adac5483b66b1a9827895124ea07d58440b654 handshake=Noise_IK_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c9f0dff42c86abe5677abe74f6c87301577dbc1f3ffb2213827ca694a057fdbbff7f7350265fe61102c24d7d7a7e960b7316fcb3b0687be852fd2fba8969816fbfaa8b459d0b59e8a42f msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484667f1d8bd2b9b659695f9077e7062bb0b9e7c08fd627913be183c3 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=595694f9be48f03790f699455c84578b31d14a7baedfd736d73c53f66a5657 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=621ae446b11fda3cf08e56102dac9324dee37a4e536cdc878e8b454d98bcf2 handshake=Noise_IKpsk0_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254df1f9b7f2814e2464394f35e13e46862cb009157dc0352d710c45376c6cd254409aebd0d5d8e544c64903917c911a5d908eafc7023007a5f9bcba4a414770c8f280fedba65efe10044c1 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466768fb8842b9bf487b26ed03ae92c46697145f7bd53a8fdb5b0f2 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=58a23ba181962ac5c0fafdf3c45870d1d8ba060076a80550ced748c69e6cc7 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=ef66353b5543937ee497369867d9559a0166a817be50780a7677583341cccf handshake=Noise_IKpsk1_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548aac9b7e52346a4de47756a681e5a97c720eef8b7faf4d312878c47eca4a0a014ddfe09618c12aed20e55a9e01da8a86e47b72ebc70cede5e0b107af9e843b201edc40459ed5ddfc7632 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466b5f98fed60b91df5d962379393574db5b001d76865569f45c20e msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=01b3d709f2acd4b0d95de75506da47ad980c471f2afd3a436cdc59f5605a4a msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=d2d77f0af04d0086e77a59b4d5a4428115f60ef95ee23a56683e35a29dcb00 handshake=Noise_IKpsk2_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254d06f15f78ad0914d9715147bb5a5004b27345a838bab4aa8bc5f144afc2cf4cca972105ba526e8c92b759e028200e7666a3d77b86f9aa87dcfe685e771e38b97d3c5996368c663051641 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466168e6913e78d7a2b04b2f3d5529e73e953bafe6c7ce2b1005367 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=6013ea114b4c4884afb82bf029f72f924bd8a32c487a15a1cef4855ba234be msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=8a2e7119635e41a35b7e64e0adac5483b66b1a9827895124ea07d58440b654 handshake=Noise_IK_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c9f0dff42c86abe5677abe74f6c87301577dbc1f3ffb2213827ca694a057fdbbacac81d639bfae65c7827558f90acd27f14e182372e5bee2fa04eca3d32f09a9 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466bbaba571a4d366dfe3958808b6a298f9 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=595694f9be48f03790f699455c84578b31d14a7baedfd736d73c53f66a5657 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=621ae446b11fda3cf08e56102dac9324dee37a4e536cdc878e8b454d98bcf2 handshake=Noise_IKpsk0_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254df1f9b7f2814e2464394f35e13e46862cb009157dc0352d710c45376c6cd25444c70354abe531df791866bd75aa9b66d93bd99b148497ff8dd02a120c19d03d6 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484668e13033b701c665877ce0455cb6c0ac7 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=58a23ba181962ac5c0fafdf3c45870d1d8ba060076a80550ced748c69e6cc7 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=ef66353b5543937ee497369867d9559a0166a817be50780a7677583341cccf handshake=Noise_IKpsk1_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548aac9b7e52346a4de47756a681e5a97c720eef8b7faf4d312878c47eca4a0a01eb23f043b5a6a476be780e530597c25629f0ce0f8d269e01315d8e15f7abab45 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846665ff976798fecbf095b0dd885e8ea88f msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=01b3d709f2acd4b0d95de75506da47ad980c471f2afd3a436cdc59f5605a4a msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=d2d77f0af04d0086e77a59b4d5a4428115f60ef95ee23a56683e35a29dcb00 handshake=Noise_IKpsk2_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254d06f15f78ad0914d9715147bb5a5004b27345a838bab4aa8bc5f144afc2cf4ccb88f9ea1ebd99e94b76e50af7eee0e59549f4f47de925ee65c9dee48f8990082 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484665db536cf97f15c6ece2431fc1c0057b4 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=6013ea114b4c4884afb82bf029f72f924bd8a32c487a15a1cef4855ba234be msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=8a2e7119635e41a35b7e64e0adac5483b66b1a9827895124ea07d58440b654 handshake=Noise_IK_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c9f0dff42c86abe5677abe74f6c87301577dbc1f3ffb2213827ca694a057fdbbacac81d639bfae65c7827558f90acd277316fcb3b0687be852fd7e392456bb6cbe070c749f1bd7c55fc2 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484667f1d8bd2b9b659695f90e35beaf5a5f5f1e7c83aa3194a2430cd msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=595694f9be48f03790f699455c84578b31d14a7baedfd736d73c53f66a5657 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=621ae446b11fda3cf08e56102dac9324dee37a4e536cdc878e8b454d98bcf2 handshake=Noise_IKpsk0_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254df1f9b7f2814e2464394f35e13e46862cb009157dc0352d710c45376c6cd25444c70354abe531df791866bd75aa9b66d08eafc7023007a5f9bcb8ee5cc55c0598e868acab1c02d9940cc msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466768fb8842b9bf487b26ebb07b2a3d6a12d28f27f2e833b2bf498 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=58a23ba181962ac5c0fafdf3c45870d1d8ba060076a80550ced748c69e6cc7 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=ef66353b5543937ee497369867d9559a0166a817be50780a7677583341cccf handshake=Noise_IKpsk1_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548aac9b7e52346a4de47756a681e5a97c720eef8b7faf4d312878c47eca4a0a01eb23f043b5a6a476be780e530597c256e47b72ebc70cede5e0b1d7616523787a70c730858ab01037164b msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466b5f98fed60b91df5d962e3be6a027433a7179f44c7a09ee68b93 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=01b3d709f2acd4b0d95de75506da47ad980c471f2afd3a436cdc59f5605a4a msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=d2d77f0af04d0086e77a59b4d5a4428115f60ef95ee23a56683e35a29dcb00 handshake=Noise_IKpsk2_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254d06f15f78ad0914d9715147bb5a5004b27345a838bab4aa8bc5f144afc2cf4ccb88f9ea1ebd99e94b76e50af7eee0e596a3d77b86f9aa87dcfe61d972bc6f34d0e93751d1260fa6bf0fe msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466168e6913e78d7a2b04b2b154c5149032d1c2584051bdcf04db1d msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=6013ea114b4c4884afb82bf029f72f924bd8a32c487a15a1cef4855ba234be msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=8a2e7119635e41a35b7e64e0adac5483b66b1a9827895124ea07d58440b654 handshake=Noise_XX_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c7f9c130891d2fcc2454ad9808ce708c7fde0ef21e72e985c38a6ed8cdaadcd96586759f804d4fa61b89ea5b36cb9b3eb1eab4273f15b629e3508d6f11a78c6d msg_2_payload= msg_2_ciphertext=e42e3908de4cd096b8b86320dfe9d03127451fdbfc423fd9ef86b4659fae03c86a279a2a864a1429147865a5dba40deed136252f2229fc5c4bcd2d5ec2efbfc2 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=7086fc0466ee7523680d09ff7c272e2a2817a6e2d6c4ec1c209506506e8957 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=e3beadf28ea871a3be666f43eaf457d030e538eb371ba48076a7db36a9a1bf handshake=Noise_XXpsk0_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254637a307a63f9200c59b8a1a68ec0c19c msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c0b9b0b4eee99d0667e049946fdcf25326ac013cdc4b28db9729186ee6609fb9238d6aa51a6202bf8eb11457923ff8ffc6b10385eca5da0f31f1259829d93a5f msg_2_payload= msg_2_ciphertext=612715579e991a6981e74d1e0bfd18932aa28f66fe336867c6d3174d3c4bf4af869f42fe4ac7551684c587ac550cc4c68c3548b1ba0ca04c689acb7c8be3b7fe msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=c7241ad514c2c32d238263e4d45ba84d20cbe01ff02dda02e5a77bcb058e23 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=8faddc8172ce807cf234a378a2fd7524446ea3aad4864580d126a4c3852b9d handshake=Noise_XXpsk1_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254d34be1d87db84255cd585f5b08c19fae msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484660f7b3af6bee5a32d2cbc5fc98e2a038b06f0d7bd8f729fa5fc96261bd82d8e2000d07ca3e3d445871aa11fd2b6b30949fc1c8ed49bdacb1dba32a4e7390b605b msg_2_payload= msg_2_ciphertext=329e3f756fa718b350bc245530e8eaf1656bd2453e27eac247c6ef17a9786c2740ef1b2b23ad9b104d5dd69381c51e7cc345caf8910c716648d998cfecabd13a msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=7897e21dd79636f43041a385c40e411e9545fafcc7460390a0f5bca87f43d2 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=c10882fc0a0c8abab4d609fabccaef31ab4a243b98bd69e8da2f4f4198d12a handshake=Noise_XXpsk2_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548ea420fcf251ddf13312a5336a636df2 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c1668235fca77e57f6b45e06441594cc4406092be47e85a4d0f04f5dd32d98f31452429b89d4d57066ff1dd64a90b41433e30ba4faf693d4eb8ae1a44176fe83 msg_2_payload= msg_2_ciphertext=30aea91ba89fda848b53828e1f7945fea8d996a165f077a5500c8418765d11c565611ced43dafc735dda9c270ef928e609050f44c8fbf4eae939a52a60a2a027 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=1e7459e1dc3d1df643ad73799ce1d5594ca16f7cab5e7740b0b140828fd5be msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=b394b3d1392c8477446a5f29188f626d8c994794ed94abe3fc552b5aa0ad11 handshake=Noise_XXpsk3_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625410441c3e70cb5de58ffd0e9996504e13 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466d6a3135623749084e7af54bdb3cbefc74483b5a11791e66803483ca71b7a1cb944867eb451bbf862d7d9ca5fb44711f5945f302feafd0a9e67925eaa3c1f1199 msg_2_payload= msg_2_ciphertext=27f05826a4958e7232360fc6f2d5742baa781214efa55d1adfbbe6526577bfee007f1169498002cf0af19c559cb34ebb22fbf2c5136d87142b1474343bc3ea5b msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=6964e5f2c89c4cc61086163641d1b0af9ecfb4c3596726e00ad65361db462e msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=cf239ff75b592d7dcf14cb9d91cc682b9f216c8b98871a9e53461f0cd027de handshake=Noise_XX_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c7f9c130891d2fcc2454ad9808ce708c7fde0ef21e72e985c38a6ed8cdaadcd9c0e3ed9de7ec29f5c2988dab99fc75b461f5532ce998f718c56fe4ae560e9b71afacf18e82fbda729ee6 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=e42e3908de4cd096b8b86320dfe9d03127451fdbfc423fd9ef86b4659fae03c8498dfa777a39cf59d06c8cf8230f924bf6cfb3372d0d7f9f5da0a2795066e1e7f5b7bc545578661f6731 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=7086fc0466ee7523680d09ff7c272e2a2817a6e2d6c4ec1c209506506e8957 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=e3beadf28ea871a3be666f43eaf457d030e538eb371ba48076a7db36a9a1bf handshake=Noise_XXpsk0_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254f53528fc2e5e3678841da8d3020d1ec9c3cde9525f1fa034d263 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c0b9b0b4eee99d0667e049946fdcf25326ac013cdc4b28db9729186ee6609fb9f1f42327774c03ebe566c0d4451875ca7a5cc2fc30fc4ce18187f6191c16b819f7b7e93a783733b2483c msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=612715579e991a6981e74d1e0bfd18932aa28f66fe336867c6d3174d3c4bf4af852f4aa53299efc837c5f348c327791c370a74a98c31960c68497294ff2fadbe88a06a2dc157a6e8f4b5 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=c7241ad514c2c32d238263e4d45ba84d20cbe01ff02dda02e5a77bcb058e23 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=8faddc8172ce807cf234a378a2fd7524446ea3aad4864580d126a4c3852b9d handshake=Noise_XXpsk1_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662543c0d303a380071b3f64d12c29167c26ba0e640746a6b8ba79305 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484660f7b3af6bee5a32d2cbc5fc98e2a038b06f0d7bd8f729fa5fc96261bd82d8e208f25674cb6b70a200d2773ed5d26726ef327de53771ebf95f72dbe4eb60a939da4c801ae9b397a739be3 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=329e3f756fa718b350bc245530e8eaf1656bd2453e27eac247c6ef17a9786c276b61061945ebca80b7a12f5ea2ee8a618aca4353c7b301862fe3e98463e63541b5b37e6d60834f1ac93a msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=7897e21dd79636f43041a385c40e411e9545fafcc7460390a0f5bca87f43d2 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=c10882fc0a0c8abab4d609fabccaef31ab4a243b98bd69e8da2f4f4198d12a handshake=Noise_XXpsk2_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625428c6a800c7db6b39e3450a615dd5ec514a71fef6e19fffb2ba77 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c1668235fca77e57f6b45e06441594cc4406092be47e85a4d0f04f5dd32d98f38e968429f5c0735705cb897466c6a5927df7727229d5eb23876d72e07bede789d5cbe84c97f01e06e215 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=30aea91ba89fda848b53828e1f7945fea8d996a165f077a5500c8418765d11c5db9d493f47f3c1cb8eaef381dbd62541f3f1ef96eb7fe2c084eee4325981743b32763c37cad6f075a705 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=1e7459e1dc3d1df643ad73799ce1d5594ca16f7cab5e7740b0b140828fd5be msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=b394b3d1392c8477446a5f29188f626d8c994794ed94abe3fc552b5aa0ad11 handshake=Noise_XXpsk3_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662544fd0dcd87f6b5d78fedd77bad2dad7505040b02a60540121bef1 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466d6a3135623749084e7af54bdb3cbefc74483b5a11791e66803483ca71b7a1cb9f3b1428ccdd741432a5ec46572ea0fa4fe7df0a60a03a8c732ae28e216c38bd7e79d1a1bfa105f955962 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=27f05826a4958e7232360fc6f2d5742baa781214efa55d1adfbbe6526577bfee490e79236f3622a63511108ce030215cc454a891d33df307ce816ea28bd4af41a015f265e9ff7386bfce msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=6964e5f2c89c4cc61086163641d1b0af9ecfb4c3596726e00ad65361db462e msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=cf239ff75b592d7dcf14cb9d91cc682b9f216c8b98871a9e53461f0cd027de handshake=Noise_XX_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c7f9c130891d2fcc2454ad9808ce708c7fde0ef21e72e985c38a6ed8cdaadcd95d49ccad379691a89b57368d70add1bd30d7757d21b91f1b9981ac3f6cc36f79 msg_2_payload= msg_2_ciphertext=e42e3908de4cd096b8b86320dfe9d03127451fdbfc423fd9ef86b4659fae03c8e7b0c7c5612fc71db82f4f8ab985fab34ef5d36e101b730d9ff6de037479f032 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=7086fc0466ee7523680d09ff7c272e2a2817a6e2d6c4ec1c209506506e8957 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=e3beadf28ea871a3be666f43eaf457d030e538eb371ba48076a7db36a9a1bf handshake=Noise_XXpsk0_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541835db57f7afd1d49daa50c8dc8ba362 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c0b9b0b4eee99d0667e049946fdcf25326ac013cdc4b28db9729186ee6609fb99d6f9cabe4bd5995c2bd8f0dea901e842c96b0e0d0839dba70a8308aef5f58e9 msg_2_payload= msg_2_ciphertext=612715579e991a6981e74d1e0bfd18932aa28f66fe336867c6d3174d3c4bf4af12bedb42b816abea75e6374d29d1b39eaf86a9610e4634e7d910e01c816c6095 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=c7241ad514c2c32d238263e4d45ba84d20cbe01ff02dda02e5a77bcb058e23 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=8faddc8172ce807cf234a378a2fd7524446ea3aad4864580d126a4c3852b9d handshake=Noise_XXpsk1_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254b83f0653b90ed8bb7584c0ff87006639 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484660f7b3af6bee5a32d2cbc5fc98e2a038b06f0d7bd8f729fa5fc96261bd82d8e20f4488fb816701391c8df57e872539cd159761d30a1d98f0bfa7867e955354fd5 msg_2_payload= msg_2_ciphertext=329e3f756fa718b350bc245530e8eaf1656bd2453e27eac247c6ef17a9786c27e6df7fa01c7b0ac1513c4082a90f5d44f970035277371c0148f6df35cec05a03 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=7897e21dd79636f43041a385c40e411e9545fafcc7460390a0f5bca87f43d2 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=c10882fc0a0c8abab4d609fabccaef31ab4a243b98bd69e8da2f4f4198d12a handshake=Noise_XXpsk2_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625490eb6876e3e3d7653ca69b60a1be5d08 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c1668235fca77e57f6b45e06441594cc4406092be47e85a4d0f04f5dd32d98f38b5a7e29c891e1ec1cde1853a90cdd71ca86e8c8aaa3fd5617885957703a416a msg_2_payload= msg_2_ciphertext=30aea91ba89fda848b53828e1f7945fea8d996a165f077a5500c8418765d11c59e79cee877ef08bef46befc971b96c29a19b56b05df43b6c83feca470821f6fd msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=1e7459e1dc3d1df643ad73799ce1d5594ca16f7cab5e7740b0b140828fd5be msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=b394b3d1392c8477446a5f29188f626d8c994794ed94abe3fc552b5aa0ad11 handshake=Noise_XXpsk3_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662543518fec3fe15f34315c2e73630b2c3f1 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466d6a3135623749084e7af54bdb3cbefc74483b5a11791e66803483ca71b7a1cb97aeeb7d0720410c02c8d66601baf98737746c6975b8e2024e175a8441ef186b2 msg_2_payload= msg_2_ciphertext=27f05826a4958e7232360fc6f2d5742baa781214efa55d1adfbbe6526577bfee4a8842024f9763c5020dbb90dac8e3a0fd3b44e4acf9e6e959c4f72a4549db0a msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=6964e5f2c89c4cc61086163641d1b0af9ecfb4c3596726e00ad65361db462e msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=cf239ff75b592d7dcf14cb9d91cc682b9f216c8b98871a9e53461f0cd027de handshake=Noise_XX_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c7f9c130891d2fcc2454ad9808ce708c7fde0ef21e72e985c38a6ed8cdaadcd9e07ed4c7d77e83b721e41d9bb2a8b57761f5532ce998f718c56f18083ab9e2f47c3f7f545a5eabbc4ece msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=e42e3908de4cd096b8b86320dfe9d03127451fdbfc423fd9ef86b4659fae03c897f77a2af21f5ce18cde8740fe9e5912f6cfb3372d0d7f9f5da0d9be88017bb339b951c56929f77fe9d6 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=7086fc0466ee7523680d09ff7c272e2a2817a6e2d6c4ec1c209506506e8957 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=e3beadf28ea871a3be666f43eaf457d030e538eb371ba48076a7db36a9a1bf handshake=Noise_XXpsk0_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254f53528fc2e5e3678841db24a2abbe656a347e2116aab72adcf37 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c0b9b0b4eee99d0667e049946fdcf25326ac013cdc4b28db9729186ee6609fb92e9751b1eacd771ac88dc4c7d4efb1c27a5cc2fc30fc4ce181878bc63aff8a4baf6b4ad054cbff26334a msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=612715579e991a6981e74d1e0bfd18932aa28f66fe336867c6d3174d3c4bf4afdf33b3790ad59aa73526df9169e40433370a74a98c31960c68493f3d69a2ca0c03be3bf415520e40ce31 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=c7241ad514c2c32d238263e4d45ba84d20cbe01ff02dda02e5a77bcb058e23 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=8faddc8172ce807cf234a378a2fd7524446ea3aad4864580d126a4c3852b9d handshake=Noise_XXpsk1_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662543c0d303a380071b3f64db0a10b87a34e6e9a7dd07f38de42e2db msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484660f7b3af6bee5a32d2cbc5fc98e2a038b06f0d7bd8f729fa5fc96261bd82d8e20f35ffcf131b4144444f8f4c1f2620cfaf327de53771ebf95f72dc1e5f96e3b88065ebc617fd26402c9b9 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=329e3f756fa718b350bc245530e8eaf1656bd2453e27eac247c6ef17a9786c276d69f49b2c4489657ca8d3bafa6d847b8aca4353c7b301862fe306a37fb7e182b5a52adbb6b9bb5e75f8 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=7897e21dd79636f43041a385c40e411e9545fafcc7460390a0f5bca87f43d2 msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=c10882fc0a0c8abab4d609fabccaef31ab4a243b98bd69e8da2f4f4198d12a handshake=Noise_XXpsk2_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625428c6a800c7db6b39e3456d482f8c37e883c3ff240c77407256ac msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c1668235fca77e57f6b45e06441594cc4406092be47e85a4d0f04f5dd32d98f3093e9ada779e2aa06db725fb3f6bb18d7df7727229d5eb23876d530f89eb23a25a8e657c790f0c6a3128 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=30aea91ba89fda848b53828e1f7945fea8d996a165f077a5500c8418765d11c574f126a002bc70955d52879ea92abc5cf3f1ef96eb7fe2c084eebb273c797e0f31af83f23e200defd60c msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=1e7459e1dc3d1df643ad73799ce1d5594ca16f7cab5e7740b0b140828fd5be msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=b394b3d1392c8477446a5f29188f626d8c994794ed94abe3fc552b5aa0ad11 handshake=Noise_XXpsk3_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662544fd0dcd87f6b5d78feddd20bcb8ab9ed16ac202410f730729c74 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466d6a3135623749084e7af54bdb3cbefc74483b5a11791e66803483ca71b7a1cb9415f46d643edb50ac242a475f8c3b60dfe7df0a60a03a8c732ae2747ed5de74ce5ba4eca1461b96283f4 msg_2_payload=746573745f6d73675f32 msg_2_ciphertext=27f05826a4958e7232360fc6f2d5742baa781214efa55d1adfbbe6526577bfeec049bd84112dd940b7032911a753f227c454a891d33df307ce814db7b657f732eb230e8da83fea82aa08 msg_3_payload=79656c6c6f777375626d6172696e65 msg_3_ciphertext=6964e5f2c89c4cc61086163641d1b0af9ecfb4c3596726e00ad65361db462e msg_4_payload=7375626d6172696e6579656c6c6f77 msg_4_ciphertext=cf239ff75b592d7dcf14cb9d91cc682b9f216c8b98871a9e53461f0cd027de handshake=Noise_IX_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548f40c5adb68f25624ae5b214ea767a6ec94d829d3d7b5e1ad1ba6f3e2138285f msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c9a6ba5eae47a4d838d82ae3cd62251af0f1e6561062710eca57757b8ad283b372716c241fa1daee4dd462c761e0425e0ef756d1491dcb62a578fc7be19148b9 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=d33ecf8cf6b6428cb123ddb57a17c81105eee893bed02870ba1fbe6a1fd6d8 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=768afdad2e41013ef4720530fcaa3d78e8ab569d26b0df12aaba81f7353512 handshake=Noise_IXpsk0_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625445eb1ca694ab03673651916b0017d230de3ad7bec80178587a26cf011486e05c5f9d359fbc1f76fbf7ca2c8b84d9d1964814e298cb91ecd67f0240ea0b75796c msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846687c4d59dec1d3e06688dc736d0cb9008a19970e60b830d3e57e452410646cf1be3362a206b49cc56fea54f9463949d52c84bfcc53b95c30bb748d62feca70b7f msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=c8b4e40dfbb834b84698bd810a695f53df3e2fd87cc00f58f139a90acd8721 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=0182920f0cd37284f23171456739dd8a0fa6e38eebfae65def58ce6507fcec handshake=Noise_IXpsk1_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254df0b149f68024ee0ecf15ad91c77430ce795c414352304ac1bb084a4c0f130ba06cc6c0158963bb90e57eac11fba5916dcc9df48f406180374090384031b625a msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466fe09a991daffe55c5da738860a7d81bd177afbd7afe306fd613ada65429cf6c08d457bb2eaff8385941e7bc7d790d6aa94b7fddf5a53f7945849e9d60dfb258b msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=00d2de63815b9ab20f34eceb6457673528ac7ab7335ae3dd19e1c64f02617a msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=7cb533f4e91d2b30dd83ffb04134da913889a87bb67f0fe7eacad3a1e9e3b3 handshake=Noise_IXpsk2_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254b4f026b6a4f4ff262e84c007e9ab72d1759dec524c7cc49daf31c9492c7aeb0ddb9f254bb6a8fc936e688df5bce734ebd80e1dd76f5e935bed228edfa3f57c5f msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846695096a7c980419c321b55005e4a475252a5d36b6ee249e905d52297d498190ce746238c4a665bac4b004d86dd8cea050e4b10fcceb9a533c7bdaa217b1b2506d msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=07cb1f697855511a505ef14bd8f64516c52a3d95c11e170f665f932f69dfe9 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=208dc9c1918b14a9bbcbd7ff8aac5ab2b1c0f93f6fc2067eef0f9a2226b8b9 handshake=Noise_IX_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548f40c5adb68f25624ae5b214ea767a6ec94d829d3d7b5e1ad1ba6f3e2138285f746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c9a6ba5eae47a4d838d82ae3cd62251af0f1e6561062710eca57757b8ad283b353b8d7e41e40a97fd3c64c6d7ad830398411c2332b438406f5eed2edffdbb4095be726c191c27edd8b9e msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=d33ecf8cf6b6428cb123ddb57a17c81105eee893bed02870ba1fbe6a1fd6d8 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=768afdad2e41013ef4720530fcaa3d78e8ab569d26b0df12aaba81f7353512 handshake=Noise_IXpsk0_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625445eb1ca694ab03673651916b0017d230de3ad7bec80178587a26cf011486e05c5f9d359fbc1f76fbf7ca2c8b84d9d1962bab2967e9e5759d88986ed70a527512da1d915f8c44240076a1 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846687c4d59dec1d3e06688dc736d0cb9008a19970e60b830d3e57e452410646cf1b9b0d5180cde01a3d7c7091a2b67c0f5499a102f9755ed624fafb8acf4ddc5a604b8c4964d51b7df77e70 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=c8b4e40dfbb834b84698bd810a695f53df3e2fd87cc00f58f139a90acd8721 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=0182920f0cd37284f23171456739dd8a0fa6e38eebfae65def58ce6507fcec handshake=Noise_IXpsk1_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254df0b149f68024ee0ecf15ad91c77430ce795c414352304ac1bb084a4c0f130ba06cc6c0158963bb90e57eac11fba59161bdcabdf6727d20f67112b770e7ace62894baf635ad65689a0ff msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466fe09a991daffe55c5da738860a7d81bd177afbd7afe306fd613ada65429cf6c0e9c1bf5439c447bfb9793fbfc2f70a8aa9d85baf1604ea68faf729344153cf0f8c58c344a669cae3415a msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=00d2de63815b9ab20f34eceb6457673528ac7ab7335ae3dd19e1c64f02617a msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=7cb533f4e91d2b30dd83ffb04134da913889a87bb67f0fe7eacad3a1e9e3b3 handshake=Noise_IXpsk2_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254b4f026b6a4f4ff262e84c007e9ab72d1759dec524c7cc49daf31c9492c7aeb0ddb9f254bb6a8fc936e688df5bce734ebf197e884f1d72ae2dc61ddb527bb6219b060996c76db675a7048 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846695096a7c980419c321b55005e4a475252a5d36b6ee249e905d52297d498190ce798ec02880c5a544226355351584c7bdd8227543b8f716af2e70de5ef4426f1bf14ac4cccfcbb295d51e msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=07cb1f697855511a505ef14bd8f64516c52a3d95c11e170f665f932f69dfe9 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=208dc9c1918b14a9bbcbd7ff8aac5ab2b1c0f93f6fc2067eef0f9a2226b8b9 handshake=Noise_IX_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548f40c5adb68f25624ae5b214ea767a6ec94d829d3d7b5e1ad1ba6f3e2138285f msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c9a6ba5eae47a4d838d82ae3cd62251af0f1e6561062710eca57757b8ad283b3939a848593731b3ab7151893c61d09b22dc69ee03508f3df6021d1f02a67f420 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=d33ecf8cf6b6428cb123ddb57a17c81105eee893bed02870ba1fbe6a1fd6d8 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=768afdad2e41013ef4720530fcaa3d78e8ab569d26b0df12aaba81f7353512 handshake=Noise_IXpsk0_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625445eb1ca694ab03673651916b0017d230de3ad7bec80178587a26cf011486e05c71f19b555215765ed472763000933b07049951734c1414b84c7ecdd163bdf8d0 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846687c4d59dec1d3e06688dc736d0cb9008a19970e60b830d3e57e452410646cf1bcc1b178351d0bb46e8e1cfc2e2ec2c925a3007eed6f1d2e8a910ce5bc0dd8873 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=c8b4e40dfbb834b84698bd810a695f53df3e2fd87cc00f58f139a90acd8721 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=0182920f0cd37284f23171456739dd8a0fa6e38eebfae65def58ce6507fcec handshake=Noise_IXpsk1_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254df0b149f68024ee0ecf15ad91c77430ce795c414352304ac1bb084a4c0f130ba29eef9ca8c4fccfbbf3959cf63da6a89e144ab2cb9c3dbbfcd37434f6d7a9e19 msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466fe09a991daffe55c5da738860a7d81bd177afbd7afe306fd613ada65429cf6c0e1e890e1a5ef0d9557ba19f1a7e1aea1e6a071fc644a03ff3f5e127da3f15098 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=00d2de63815b9ab20f34eceb6457673528ac7ab7335ae3dd19e1c64f02617a msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=7cb533f4e91d2b30dd83ffb04134da913889a87bb67f0fe7eacad3a1e9e3b3 handshake=Noise_IXpsk2_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254b4f026b6a4f4ff262e84c007e9ab72d1759dec524c7cc49daf31c9492c7aeb0da29c805edd125123f24ff0c3a68995581266147e7092a934d6386daad38bb46e msg_1_payload= msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846695096a7c980419c321b55005e4a475252a5d36b6ee249e905d52297d498190cea526a51e27a95def76e556a85518ad342fca05d39d1498205790f19f4a8cb060 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=07cb1f697855511a505ef14bd8f64516c52a3d95c11e170f665f932f69dfe9 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=208dc9c1918b14a9bbcbd7ff8aac5ab2b1c0f93f6fc2067eef0f9a2226b8b9 handshake=Noise_IX_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548f40c5adb68f25624ae5b214ea767a6ec94d829d3d7b5e1ad1ba6f3e2138285f746573745f6d73675f30 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c9a6ba5eae47a4d838d82ae3cd62251af0f1e6561062710eca57757b8ad283b30a21d13abc61b4563586358ef166f2248411c2332b438406f5ee901e916db484003c3f2fb91742430d01 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=d33ecf8cf6b6428cb123ddb57a17c81105eee893bed02870ba1fbe6a1fd6d8 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=768afdad2e41013ef4720530fcaa3d78e8ab569d26b0df12aaba81f7353512 handshake=Noise_IXpsk0_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625445eb1ca694ab03673651916b0017d230de3ad7bec80178587a26cf011486e05c71f19b555215765ed472763000933b072bab2967e9e5759d8898095fcf5303dd11e652a29718c9d539e2 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846687c4d59dec1d3e06688dc736d0cb9008a19970e60b830d3e57e452410646cf1b1fa414ef2cf021e372c6f36b5f22040d99a102f9755ed624fafbea2c3f10be616abb8ea5db833ee24747 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=c8b4e40dfbb834b84698bd810a695f53df3e2fd87cc00f58f139a90acd8721 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=0182920f0cd37284f23171456739dd8a0fa6e38eebfae65def58ce6507fcec handshake=Noise_IXpsk1_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254df0b149f68024ee0ecf15ad91c77430ce795c414352304ac1bb084a4c0f130ba29eef9ca8c4fccfbbf3959cf63da6a891bdcabdf6727d20f6711779ed5d37d6def025ef48873391e6ab0 msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466fe09a991daffe55c5da738860a7d81bd177afbd7afe306fd613ada65429cf6c0dd8aaade8f4a82c0b661cd30c8384de7a9d85baf1604ea68faf7a6f6436d208a84c38b3126e2aa27dc9f msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=00d2de63815b9ab20f34eceb6457673528ac7ab7335ae3dd19e1c64f02617a msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=7cb533f4e91d2b30dd83ffb04134da913889a87bb67f0fe7eacad3a1e9e3b3 handshake=Noise_IXpsk2_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254b4f026b6a4f4ff262e84c007e9ab72d1759dec524c7cc49daf31c9492c7aeb0da29c805edd125123f24ff0c3a6899558f197e884f1d72ae2dc61acbfdea65978a80d9bc549cf41a3d82a msg_1_payload=746573745f6d73675f31 msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846695096a7c980419c321b55005e4a475252a5d36b6ee249e905d52297d498190cee847fe1489e3150d1a19187f638c4d11d8227543b8f716af2e7024523702533cfe92e40f47e8a0a69157 msg_2_payload=79656c6c6f777375626d6172696e65 msg_2_ciphertext=07cb1f697855511a505ef14bd8f64516c52a3d95c11e170f665f932f69dfe9 msg_3_payload=7375626d6172696e6579656c6c6f77 msg_3_ciphertext=208dc9c1918b14a9bbcbd7ff8aac5ab2b1c0f93f6fc2067eef0f9a2226b8b9 handshake=Noise_N_25519_ChaChaPoly_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662546ba6ae849a52fad21a8cef186539f029 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=a003941c6d2ae21678d1cae7b5723e9a3ae85c4e29a451baa136ddac80778b msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=bf8afb4d3362b8931b247215132eed804ccad21b25f1441cfd9bc6d04c4f3d handshake=Noise_Npsk0_25519_ChaChaPoly_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662542df7894ef4fa3e94ca5276eab168727b msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=16d2415b0d883665ecf46e0ba404ee2044dc6b3df56b7df7c1304bcd623c0a msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=5df813ad71e1af04b9ec69398890d674cf813768405c26ca45e9cb5ec105c8 handshake=Noise_Npsk1_25519_ChaChaPoly_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625426e4002dbe75546cc56a2909b47cdabf msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=b786593ecbd2d7233981e3b00cf1bdc5b6660264160e2180126c6e8696866f msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=96e589406d121007fc36dedd74e3df90bb6616475b3d4efe8590cd9f514555 handshake=Noise_N_25519_ChaChaPoly_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254ae81c7528e1cf6662cf3c3b00e02f8bba0bdfdb1bd359c71d2a5 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=a003941c6d2ae21678d1cae7b5723e9a3ae85c4e29a451baa136ddac80778b msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=bf8afb4d3362b8931b247215132eed804ccad21b25f1441cfd9bc6d04c4f3d handshake=Noise_Npsk0_25519_ChaChaPoly_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625400b9c1c865b68c526bbb861fc8415527e725b3bbabf2f533a153 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=16d2415b0d883665ecf46e0ba404ee2044dc6b3df56b7df7c1304bcd623c0a msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=5df813ad71e1af04b9ec69398890d674cf813768405c26ca45e9cb5ec105c8 handshake=Noise_Npsk1_25519_ChaChaPoly_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c0410bca876435926147c6c772d2fd56a305cea24df5a92b0387 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=b786593ecbd2d7233981e3b00cf1bdc5b6660264160e2180126c6e8696866f msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=96e589406d121007fc36dedd74e3df90bb6616475b3d4efe8590cd9f514555 handshake=Noise_N_25519_ChaChaPoly_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c597be68f3073fb654b56ecbf3206468 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=a003941c6d2ae21678d1cae7b5723e9a3ae85c4e29a451baa136ddac80778b msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=bf8afb4d3362b8931b247215132eed804ccad21b25f1441cfd9bc6d04c4f3d handshake=Noise_Npsk0_25519_ChaChaPoly_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254f73370fe6616ec4bbeb7ccbb4243848b msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=16d2415b0d883665ecf46e0ba404ee2044dc6b3df56b7df7c1304bcd623c0a msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=5df813ad71e1af04b9ec69398890d674cf813768405c26ca45e9cb5ec105c8 handshake=Noise_Npsk1_25519_ChaChaPoly_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254ce659aaaf6e53b6e8a81af68308411bd msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=b786593ecbd2d7233981e3b00cf1bdc5b6660264160e2180126c6e8696866f msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=96e589406d121007fc36dedd74e3df90bb6616475b3d4efe8590cd9f514555 handshake=Noise_N_25519_ChaChaPoly_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254ae81c7528e1cf6662cf390a71ae79e4927b62e8f1c66496d38c2 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=a003941c6d2ae21678d1cae7b5723e9a3ae85c4e29a451baa136ddac80778b msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=bf8afb4d3362b8931b247215132eed804ccad21b25f1441cfd9bc6d04c4f3d handshake=Noise_Npsk0_25519_ChaChaPoly_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625400b9c1c865b68c526bbb514ef34c653a58e9eec7dc694ea16530 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=16d2415b0d883665ecf46e0ba404ee2044dc6b3df56b7df7c1304bcd623c0a msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=5df813ad71e1af04b9ec69398890d674cf813768405c26ca45e9cb5ec105c8 handshake=Noise_Npsk1_25519_ChaChaPoly_BLAKE2s resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c0410bca876435926147347ce6c3e96c11793463645346d91fe5 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=b786593ecbd2d7233981e3b00cf1bdc5b6660264160e2180126c6e8696866f msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=96e589406d121007fc36dedd74e3df90bb6616475b3d4efe8590cd9f514555 handshake=Noise_K_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625429ab50aa4698f977eb619f20fa5db0c5 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=a191382d64297aedea686db4812eb3415ac6a86b283fa7df9091fe8d985d11 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=006d0e38f3d94cad78e0bc2e7fc323764dd28e4e03fbbe4196bd641fa6faf5 handshake=Noise_Kpsk0_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254805170152d8a6f9ed4598a42bbfb3637 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=e5b53ff47dd6e5708f40d5172b280f8679e6a9147bd2ba4de1e9226079a711 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=5053800ab937c3b66bf646bcc4424fd90246c6e0543d79496f4ae90c466077 handshake=Noise_Kpsk1_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625483e428f0be402913dab92da7d61d36a0 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=d94826f00577ca4eeb5b4e24221c558421b4041de30a0d9549d6d5aedd618a msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=0752d5018d967b25613a660c4181bc0eaae495d838bd82b7137b756ca80903 handshake=Noise_K_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254b9404e5db0f97c582cc85908ec714e1ab58dc4d2a93b13af4017 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=a191382d64297aedea686db4812eb3415ac6a86b283fa7df9091fe8d985d11 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=006d0e38f3d94cad78e0bc2e7fc323764dd28e4e03fbbe4196bd641fa6faf5 handshake=Noise_Kpsk0_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625438985084386baffdc03450537b149c888a450033abd5481a43a3 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=e5b53ff47dd6e5708f40d5172b280f8679e6a9147bd2ba4de1e9226079a711 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=5053800ab937c3b66bf646bcc4424fd90246c6e0543d79496f4ae90c466077 handshake=Noise_Kpsk1_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c5cbbe00c4ef8b94141683ed6b916bbc89ec939994431cb3b3b8 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=d94826f00577ca4eeb5b4e24221c558421b4041de30a0d9549d6d5aedd618a msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=0752d5018d967b25613a660c4181bc0eaae495d838bd82b7137b756ca80903 handshake=Noise_K_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625403eb57d94fe18fcc9932deecd7afc348 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=a191382d64297aedea686db4812eb3415ac6a86b283fa7df9091fe8d985d11 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=006d0e38f3d94cad78e0bc2e7fc323764dd28e4e03fbbe4196bd641fa6faf5 handshake=Noise_Kpsk0_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662546873f10aa744f5ec809baade7f9bb124 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=e5b53ff47dd6e5708f40d5172b280f8679e6a9147bd2ba4de1e9226079a711 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=5053800ab937c3b66bf646bcc4424fd90246c6e0543d79496f4ae90c466077 handshake=Noise_Kpsk1_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662541ce699524536e124a049f0ac3797dd8b msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=d94826f00577ca4eeb5b4e24221c558421b4041de30a0d9549d6d5aedd618a msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=0752d5018d967b25613a660c4181bc0eaae495d838bd82b7137b756ca80903 handshake=Noise_K_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254b9404e5db0f97c582cc8df110972e1eea4a2774b24609ba244af msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=a191382d64297aedea686db4812eb3415ac6a86b283fa7df9091fe8d985d11 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=006d0e38f3d94cad78e0bc2e7fc323764dd28e4e03fbbe4196bd641fa6faf5 handshake=Noise_Kpsk0_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625438985084386baffdc034255c43ea3072077583dcfc973d58c3e3 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=e5b53ff47dd6e5708f40d5172b280f8679e6a9147bd2ba4de1e9226079a711 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=5053800ab937c3b66bf646bcc4424fd90246c6e0543d79496f4ae90c466077 handshake=Noise_Kpsk1_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c5cbbe00c4ef8b9414167a0c6551ed240bd41866f4fa78e24f01 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=d94826f00577ca4eeb5b4e24221c558421b4041de30a0d9549d6d5aedd618a msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=0752d5018d967b25613a660c4181bc0eaae495d838bd82b7137b756ca80903 handshake=Noise_X_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254e933e249a2b9389d67db3718637dd177b70511492d1f0476ab4d5fd966c29305593cce12ffb7e757e59f61a6cf8b004cff5020d551732a789d5d654a38e1ba49 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=302ae88697158440e6875b65aa5c5b0d58c3f14ac706bdd3ed593df4ad69cf msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=8da82f0086a25cb390515103ba49260c5d5471528042200d920979798ea8b8 handshake=Noise_Xpsk0_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254e740ec34d06c470dcef511761c3f5721297c428d33234ec9e185ac7e0273bbf47bb2b8db785e7662e22b409878754858abe462deb213910f24ad63e3bb1233c3 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=a74dc1186c0173a331100c9e1a2640ea95ce9ad6d3c8579ff9275679595e23 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=adf0f9718742ec49f04cab59ff0370bb070358cbdf7973d05b688cdf050ad3 handshake=Noise_Xpsk1_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625499e50a484c198a8e9f4d6088d46c7657b70036d4e7177346ad1bbfc541b4635bae691e6043118519cd750217f4a278cb4ef463ad8be55fa547a17e495d8eb506 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=c072a15ff3c5fe832398d8ea04c5a4657edb9ad855d857089bc4322d1f1b06 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=836be31bdf36237a7bdd3fd243d64403f7060dfd569abde5cc3b11e4273cd5 handshake=Noise_X_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254e933e249a2b9389d67db3718637dd177b70511492d1f0476ab4d5fd966c29305593cce12ffb7e757e59f61a6cf8b004c77e13ebf8bab668da83118e92ef7ef36200c950d49677914286b msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=302ae88697158440e6875b65aa5c5b0d58c3f14ac706bdd3ed593df4ad69cf msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=8da82f0086a25cb390515103ba49260c5d5471528042200d920979798ea8b8 handshake=Noise_Xpsk0_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254e740ec34d06c470dcef511761c3f5721297c428d33234ec9e185ac7e0273bbf47bb2b8db785e7662e22b409878754858a02d92d874953c00b104ac73405c5a4396415788611a588d4cea msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=a74dc1186c0173a331100c9e1a2640ea95ce9ad6d3c8579ff9275679595e23 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=adf0f9718742ec49f04cab59ff0370bb070358cbdf7973d05b688cdf050ad3 handshake=Noise_Xpsk1_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625499e50a484c198a8e9f4d6088d46c7657b70036d4e7177346ad1bbfc541b4635bae691e6043118519cd750217f4a278cbf9fb2f5702b2af7923f51b0bdea86b1de41e1a92e49c8db1d0d7 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=c072a15ff3c5fe832398d8ea04c5a4657edb9ad855d857089bc4322d1f1b06 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=836be31bdf36237a7bdd3fd243d64403f7060dfd569abde5cc3b11e4273cd5 handshake=Noise_X_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254e933e249a2b9389d67db3718637dd177b70511492d1f0476ab4d5fd966c29305587cfc935e18d8203d1bf8063842077af6b082f7be8dcc45df8cc97a3c73aec6 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=302ae88697158440e6875b65aa5c5b0d58c3f14ac706bdd3ed593df4ad69cf msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=8da82f0086a25cb390515103ba49260c5d5471528042200d920979798ea8b8 handshake=Noise_Xpsk0_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254e740ec34d06c470dcef511761c3f5721297c428d33234ec9e185ac7e0273bbf470d1b6e261225308b65bfbcae66da68d3ecdf4e7a3f747fe4916dd970ad935ef msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=a74dc1186c0173a331100c9e1a2640ea95ce9ad6d3c8579ff9275679595e23 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=adf0f9718742ec49f04cab59ff0370bb070358cbdf7973d05b688cdf050ad3 handshake=Noise_Xpsk1_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload= msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625499e50a484c198a8e9f4d6088d46c7657b70036d4e7177346ad1bbfc541b4635b9f5b13ed3dbfa3e43f09d1c80e6cd2d65018ebc5f7b995fc2b92d89961216c4d msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=c072a15ff3c5fe832398d8ea04c5a4657edb9ad855d857089bc4322d1f1b06 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=836be31bdf36237a7bdd3fd243d64403f7060dfd569abde5cc3b11e4273cd5 handshake=Noise_X_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254e933e249a2b9389d67db3718637dd177b70511492d1f0476ab4d5fd966c29305587cfc935e18d8203d1bf8063842077a77e13ebf8bab668da831ddabbe4f889713498154527b51f921bd msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=302ae88697158440e6875b65aa5c5b0d58c3f14ac706bdd3ed593df4ad69cf msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=8da82f0086a25cb390515103ba49260c5d5471528042200d920979798ea8b8 handshake=Noise_Xpsk0_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254e740ec34d06c470dcef511761c3f5721297c428d33234ec9e185ac7e0273bbf470d1b6e261225308b65bfbcae66da68da02d92d874953c00b1048bea5c82f7f3d4e020e34f42b266ec8a msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=a74dc1186c0173a331100c9e1a2640ea95ce9ad6d3c8579ff9275679595e23 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=adf0f9718742ec49f04cab59ff0370bb070358cbdf7973d05b688cdf050ad3 handshake=Noise_Xpsk1_25519_ChaChaPoly_BLAKE2s init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60 prologue=6e6f74736563726574 preshared_key=2176657279736563726574766572797365637265747665727973656372657421 msg_0_payload=746573745f6d73675f30 msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625499e50a484c198a8e9f4d6088d46c7657b70036d4e7177346ad1bbfc541b4635b9f5b13ed3dbfa3e43f09d1c80e6cd2d6f9fb2f5702b2af7923f59ea23e8f1e61c7ca0bdc7ce430b3e2b4 msg_1_payload=79656c6c6f777375626d6172696e65 msg_1_ciphertext=c072a15ff3c5fe832398d8ea04c5a4657edb9ad855d857089bc4322d1f1b06 msg_2_payload=7375626d6172696e6579656c6c6f77 msg_2_ciphertext=836be31bdf36237a7bdd3fd243d64403f7060dfd569abde5cc3b11e4273cd5