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.
2 parents 30f88af + 5de7da1 commit df469d5Copy full SHA for df469d5
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