We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30f88af commit 5de7da1Copy full SHA for 5de7da1
deimos/openssl/hmac.d
@@ -84,9 +84,9 @@ alias hmac_ctx_st HMAC_CTX;
84
85
auto HMAC_size()(HMAC_CTX* e) { return EVP_MD_size(e.md); }
86
87
-
88
-void HMAC_CTX_init(HMAC_CTX* ctx);
89
-void HMAC_CTX_cleanup(HMAC_CTX* ctx);
+HMAC_CTX * HMAC_CTX_new();
+void HMAC_CTX_free(HMAC_CTX *ctx);
+void HMAC_CTX_reset(HMAC_CTX * ctx);
90
91
alias HMAC_CTX_cleanup HMAC_cleanup; /* deprecated */
92
0 commit comments