go_sshkeys/cipher/aes/aes128/consts.go
2022-04-28 05:18:25 -04:00

11 lines
211 B
Go

package aes128
import (
sshAES `r00t2.io/sshkeys/cipher/aes`
)
const (
KeySize int = 16 // in bytes; AES128 is so named for its 128-bit key, thus: 128 / 8 = 16
KdfKeySize int = KeySize + sshAES.IvSize
)