go_chacha20poly1305_openssh/consts.go

9 lines
209 B
Go
Raw Normal View History

2022-06-05 06:52:27 -04:00
package cc20p1305ssh
const (
// KeySize is 32, but OpenSSH generates two separate keys.
KeySize int = 32
// NonceSize is literally the only reason I need to do this. The only reason.
NonceSize int = 16
)