package aes128 import ( `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 + aes.IvSize )