fix: preshared key fingerprinter test

updated fingerprinter test to test with PreSharedKey extension
This commit is contained in:
Gaukas Wang 2023-03-03 12:31:36 -07:00
parent a72e17e699
commit 36c4f244a9
No known key found for this signature in database
GPG key ID: 9E2F8986D76F8B5D
2 changed files with 4 additions and 5 deletions

View file

@ -200,7 +200,8 @@ func (chs *ClientHelloSpec) ReadTLSExtensions(b []byte, keepPSK, allowBluntMimic
}
if extension == extensionPreSharedKey && !keepPSK {
continue // skip PSK, this will result in fingerprint change!!!!
return fmt.Errorf("PSK extension is not allowed unless keepPSK is set")
// continue // skip PSK, this will result in fingerprint change!!!!
}
extWriter := ExtensionIDToExtension(extension)

View file

@ -514,10 +514,8 @@ func TestUTLSFingerprintClientHelloKeepPSK(t *testing.T) {
}
for _, ext := range generatedSpec.Extensions {
if genericExtension, ok := (ext).(*GenericExtension); ok {
if genericExtension.Id == extensionPreSharedKey {
return
}
if _, ok := (ext).(*PreSharedKeyExtension); ok {
return
}
}
t.Errorf("generated ClientHelloSpec with KeepPSK does not include preshared key extension")