mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-03 20:17:36 +03:00
feat: utlsFakeCustomExtension in ALPS
- Introducing `utlsFakeCustomExtension` to enable implementation for custom extensions to be exchanged via ALPS. - currently it doesn't do anything. Co-Authored-By: Blake Byrnes <115056+blakebyrnes@users.noreply.github.com>
This commit is contained in:
parent
f69c124214
commit
776b61fa20
2 changed files with 8 additions and 0 deletions
|
@ -30,6 +30,7 @@ const (
|
|||
utlsExtensionExtendedMasterSecret uint16 = 23 // https://tools.ietf.org/html/rfc7627
|
||||
utlsExtensionCompressCertificate uint16 = 27 // https://datatracker.ietf.org/doc/html/rfc8879#section-7.1
|
||||
utlsExtensionApplicationSettings uint16 = 17513 // not IANA assigned
|
||||
utlsFakeExtensionCustom uint16 = 1234 // not IANA assigned, for ALPS
|
||||
|
||||
// extensions with 'fake' prefix break connection, if server echoes them back
|
||||
fakeExtensionTokenBinding uint16 = 24
|
||||
|
|
|
@ -71,6 +71,7 @@ type utlsClientEncryptedExtensionsMsg struct {
|
|||
raw []byte
|
||||
applicationSettings []byte
|
||||
hasApplicationSettings bool
|
||||
customExtension []byte
|
||||
}
|
||||
|
||||
func (m *utlsClientEncryptedExtensionsMsg) marshal() (x []byte) {
|
||||
|
@ -88,6 +89,12 @@ func (m *utlsClientEncryptedExtensionsMsg) marshal() (x []byte) {
|
|||
msg.AddBytes(m.applicationSettings)
|
||||
})
|
||||
}
|
||||
if len(m.customExtension) > 0 {
|
||||
extensions.AddUint16(utlsFakeExtensionCustom)
|
||||
extensions.AddUint16LengthPrefixed(func(msg *cryptobyte.Builder) {
|
||||
msg.AddBytes(m.customExtension)
|
||||
})
|
||||
}
|
||||
})
|
||||
})
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue