Use correct SHA1_ functions.

Fixes #5103.
This commit is contained in:
John Preston 2018-08-27 14:34:18 +03:00
parent d98bbca353
commit 46946c7323
1 changed files with 3 additions and 3 deletions

View File

@ -388,9 +388,9 @@ template <
inline bytes::vector Sha1(Args &&...args) {
return details::Sha<kSha1Size>(
SHA_CTX(),
SHA_Init,
SHA_Update,
SHA_Final,
SHA1_Init,
SHA1_Update,
SHA1_Final,
args...);
}