mirror of
https://github.com/mumble-voip/grumble.git
synced 2025-12-19 21:59:59 -08:00
pkg/cryptstate: unexport DecryptHistorySize.
This commit is contained in:
parent
3af010d3f5
commit
533283bd53
1 changed files with 2 additions and 2 deletions
|
|
@ -11,7 +11,7 @@ import (
|
|||
"time"
|
||||
)
|
||||
|
||||
const DecryptHistorySize = 0x100
|
||||
const decryptHistorySize = 0x100
|
||||
|
||||
type CryptoMode interface {
|
||||
NonceSize() int
|
||||
|
|
@ -39,7 +39,7 @@ type CryptState struct {
|
|||
RemoteLost uint32
|
||||
RemoteResync uint32
|
||||
|
||||
decryptHistory [DecryptHistorySize]byte
|
||||
decryptHistory [decryptHistorySize]byte
|
||||
mode CryptoMode
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue