mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-04 04:27:36 +03:00
crypto/tls: make ConnectionState.ExportKeyingMaterial a method
The unexported field is hidden from reflect based marshalers, which would break otherwise. Also, make it return an error, as there are multiple reasons it might fail. Fixes #27125 Change-Id: I92adade2fe456103d2d5c0315629ca0256953764 Reviewed-on: https://go-review.googlesource.com/130535 Run-TryBot: Filippo Valsorda <filippo@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
This commit is contained in:
parent
6d965709ab
commit
0a9fc9c88a
11 changed files with 429 additions and 22 deletions
12
prf_test.go
12
prf_test.go
|
@ -70,14 +70,14 @@ func TestKeysFromPreMasterSecret(t *testing.T) {
|
|||
}
|
||||
|
||||
ekm := ekmFromMasterSecret(test.version, test.suite, masterSecret, clientRandom, serverRandom)
|
||||
contextKeyingMaterial, ok := ekm("label", []byte("context"), 32)
|
||||
if !ok {
|
||||
t.Fatalf("ekmFromMasterSecret failed")
|
||||
contextKeyingMaterial, err := ekm("label", []byte("context"), 32)
|
||||
if err != nil {
|
||||
t.Fatalf("ekmFromMasterSecret failed: %v", err)
|
||||
}
|
||||
|
||||
noContextKeyingMaterial, ok := ekm("label", nil, 32)
|
||||
if !ok {
|
||||
t.Fatalf("ekmFromMasterSecret failed")
|
||||
noContextKeyingMaterial, err := ekm("label", nil, 32)
|
||||
if err != nil {
|
||||
t.Fatalf("ekmFromMasterSecret failed: %v", err)
|
||||
}
|
||||
|
||||
if hex.EncodeToString(contextKeyingMaterial) != test.contextKeyingMaterial ||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue