commit | 90cde04460e3b3c30eb58b95778c0208ff5c429e | [log] [tgz] |
---|---|---|
author | Paul Kehrer <paul.l.kehrer@gmail.com> | Mon Sep 30 20:40:38 2013 -0500 |
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | Mon Sep 30 20:40:38 2013 -0500 |
tree | 9b5795eae271e5dc01e303b62ff59d1369036138 | |
parent | e2ac563c990b204b96d4a560153f05e95804b3e9 [diff] |
Added a EVP_CIPHER_CTX_init() call * In OpenSSL when you alloc an EVP_CIPHER_CTX you must then init it (which just zeroes the allocated memory). If you do not then it is possible for things to kerplode when passing the uninitialized context to EVP_EncryptInit_ex(). This patch fixes that.