* All the algorithm errors */
| 30 | * All the algorithm errors |
| 31 | */ |
| 32 | enum class AlgorithmErrc |
| 33 | { |
| 34 | SigningErr = 1, |
| 35 | VerificationErr, |
| 36 | KeyNotFoundErr, |
| 37 | InvalidKeyErr, |
| 38 | NoneAlgorithmUsed, // Not an actual error! |
| 39 | }; |
| 40 | |
| 41 | /** |
| 42 | * Algorithm error conditions |
nothing calls this directly
no outgoing calls
no test coverage detected