mirror of
https://github.com/apernet/hysteria.git
synced 2025-04-06 14:07:39 +03:00
feat: add padding to requests & responses
This commit is contained in:
parent
9f54aade8f
commit
ebb9b3217e
5 changed files with 374 additions and 305 deletions
26
core/internal/protocol/padding.go
Normal file
26
core/internal/protocol/padding.go
Normal file
|
@ -0,0 +1,26 @@
|
|||
package protocol
|
||||
|
||||
import (
|
||||
"math/rand"
|
||||
"strings"
|
||||
)
|
||||
|
||||
// padding specifies a half-open range [Min, Max).
|
||||
type padding struct {
|
||||
Min int
|
||||
Max int
|
||||
}
|
||||
|
||||
func (p padding) String() string {
|
||||
n := p.Min + rand.Intn(p.Max-p.Min)
|
||||
return strings.Repeat("a", n) // No need to randomize since everything is encrypted anyway
|
||||
}
|
||||
|
||||
var (
|
||||
authRequestPadding = padding{Min: 256, Max: 2048}
|
||||
authResponsePadding = padding{Min: 256, Max: 2048}
|
||||
tcpRequestPadding = padding{Min: 64, Max: 512}
|
||||
tcpResponsePadding = padding{Min: 128, Max: 1024}
|
||||
udpRequestPadding = padding{Min: 64, Max: 512}
|
||||
udpResponsePadding = padding{Min: 128, Max: 1024}
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue