| 42 | } |
| 43 | |
| 44 | Aes_ctr_encryptor::~Aes_ctr_encryptor () |
| 45 | { |
| 46 | explicit_memset(pad, '\0', BLOCK_LEN); |
| 47 | } |
| 48 | |
| 49 | void Aes_ctr_encryptor::process (const unsigned char* in, unsigned char* out, size_t len) |
| 50 | { |
nothing calls this directly
no test coverage detected