()
| 20 | type ErrAlgorithmNotImplemented string |
| 21 | |
| 22 | func (e ErrAlgorithmNotImplemented) Error() string { |
| 23 | return "algorithm is not implemented: " + string(e) |
| 24 | } |
| 25 | |
| 26 | // ErrCannotFindRequiredElement is returned by Decrypt when a required |
| 27 | // element cannot be found. |
nothing calls this directly
no outgoing calls
no test coverage detected