()
| 40 | type ErrIncorrectKeyLength int |
| 41 | |
| 42 | func (e ErrIncorrectKeyLength) Error() string { |
| 43 | return fmt.Sprintf("expected key to be %d bytes", int(e)) |
| 44 | } |
| 45 | |
| 46 | // ErrIncorrectKeyType is returned when the key is not the correct type |
| 47 | type ErrIncorrectKeyType string |
nothing calls this directly
no outgoing calls
no test coverage detected