9 lines
209 B
Go
9 lines
209 B
Go
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
|
|
)
|