| 41 | void init_crypto (); |
| 42 | |
| 43 | struct Crypto_error { |
| 44 | std::string where; |
| 45 | std::string message; |
| 46 | |
| 47 | Crypto_error (const std::string& w, const std::string& m) : where(w), message(m) { } |
| 48 | }; |
| 49 | |
| 50 | class Aes_ecb_encryptor { |
| 51 | public: |
no outgoing calls
no test coverage detected