ErrAlgorithmNotImplemented is returned when encryption used is not supported.
| 18 | // ErrAlgorithmNotImplemented is returned when encryption used is not |
| 19 | // supported. |
| 20 | type ErrAlgorithmNotImplemented string |
| 21 | |
| 22 | func (e ErrAlgorithmNotImplemented) Error() string { |
| 23 | return "algorithm is not implemented: " + string(e) |