OpenSSL: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 3: | Line 3: | ||
Moving from 1.0.2 to 1.1.0, the following functions have changed: | Moving from 1.0.2 to 1.1.0, the following functions have changed: | ||
* <code>EVP_MD_CTX_create</code> becomes | * <code>EVP_MD_CTX_create</code> becomes <code>EVP_MD_CTX_new</code>. | ||
* <code>EVP_MD_CTX_destroy</code> becomes | * <code>EVP_MD_CTX_destroy</code> becomes <code>EVP_MD_CTX_free</code>. | ||
[[Category:Programming]] | [[Category:Programming]] | ||
Latest revision as of 15:59, 22 July 2018
Gotchas
Moving from 1.0.2 to 1.1.0, the following functions have changed:
EVP_MD_CTX_createbecomesEVP_MD_CTX_new.EVP_MD_CTX_destroybecomesEVP_MD_CTX_free.