| 43 | #include <vector> |
| 44 | |
| 45 | Key_file::Entry::Entry () |
| 46 | { |
| 47 | version = 0; |
| 48 | explicit_memset(aes_key, 0, AES_KEY_LEN); |
| 49 | explicit_memset(hmac_key, 0, HMAC_KEY_LEN); |
| 50 | } |
| 51 | |
| 52 | void Key_file::Entry::load (std::istream& in) |
| 53 | { |
nothing calls this directly
no test coverage detected