mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-04 20:47:36 +03:00
fix: don't shuf psk (#180)
- Shuffle Function will no longer shuffle PSK. - Shuffle Function optimized. - Fixed a bug in `FakePresharedKeyExtension` causing program to panic. - Added `HelloChrome_100_PSK` and `HelloChrome_112_PSK_Shuf`. Both are beta fingerprints, use at your own risk.
This commit is contained in:
parent
8dc35bef36
commit
c785bd3a1e
3 changed files with 123 additions and 45 deletions
|
@ -1859,8 +1859,11 @@ type FakePreSharedKeyExtension struct {
|
|||
}
|
||||
|
||||
func (e *FakePreSharedKeyExtension) writeToUConn(uc *UConn) error {
|
||||
if uc.config.ClientSessionCache == nil {
|
||||
return nil // don't write the extension if there is no session cache
|
||||
}
|
||||
if session, ok := uc.config.ClientSessionCache.Get(clientSessionCacheKey(uc.conn.RemoteAddr(), uc.config)); !ok || session == nil {
|
||||
return nil // don't write the extension if there is no session
|
||||
return nil // don't write the extension if there is no session cache available for this session
|
||||
}
|
||||
uc.HandshakeState.Hello.PskIdentities = e.PskIdentities
|
||||
uc.HandshakeState.Hello.PskBinders = e.PskBinders
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue