Skip to content

Commit df469d5

Browse files
authored
Merge pull request #42 from EliteScientist/master
Update to openssl 1.1.0h support
2 parents 30f88af + 5de7da1 commit df469d5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

deimos/openssl/hmac.d

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,9 +84,9 @@ alias hmac_ctx_st HMAC_CTX;
8484

8585
auto HMAC_size()(HMAC_CTX* e) { return EVP_MD_size(e.md); }
8686

87-
88-
void HMAC_CTX_init(HMAC_CTX* ctx);
89-
void HMAC_CTX_cleanup(HMAC_CTX* ctx);
87+
HMAC_CTX * HMAC_CTX_new();
88+
void HMAC_CTX_free(HMAC_CTX *ctx);
89+
void HMAC_CTX_reset(HMAC_CTX * ctx);
9090

9191
alias HMAC_CTX_cleanup HMAC_cleanup; /* deprecated */
9292

0 commit comments

Comments
 (0)