go_sshkeys/cipher/errs.go

10 lines
141 B
Go

package cipher
import (
`errors`
)
var (
ErrBadKeyLen error = errors.New("the specified key does not match the Cipher.BlockSize size")
)