package aes256 import ( `r00t2.io/sshkeys/cipher/aes` ) const ( KeySize int = 32 // in bytes; AES256 is so named for its 256-bit key, thus: 256 / 8 = 32 KdfKeySize int = KeySize + aes.IvSize )