go_sshkeys/cipher/errs.go

10 lines
141 B
Go
Raw Normal View History

2022-04-28 05:40:27 -04:00
package cipher
import (
`errors`
)
var (
ErrBadKeyLen error = errors.New("the specified key does not match the Cipher.BlockSize size")
)