| 46 | } |
| 47 | |
| 48 | static void free_crypt_context(EVP_CIPHER_CTX* ctx) |
| 49 | { |
| 50 | /* Clean up */ |
| 51 | if (ctx) |
| 52 | EVP_CIPHER_CTX_free(ctx); |
| 53 | } |
| 54 | |
| 55 | shared_ptr<EVP_CIPHER_CTX> get_crypt_context(int ivlen, int mode) |
| 56 | { |
nothing calls this directly
no outgoing calls
no test coverage detected