1
0
Fork 0
mirror of https://github.com/eosswedenorg/libantelope synced 2026-06-16 03:34:56 +02:00

src/openssl/hash.cpp: fix sha256_init() signature.

This commit is contained in:
Henrik Hautakoski 2023-05-31 10:42:12 +02:00
parent c035a804b2
commit ec7a67ad88

View file

@ -27,7 +27,7 @@
namespace libantelope {
int sha256_init(struct sha256_ctx* ctx) {
int sha256_init(sha256_ctx_t* ctx) {
return SHA256_Init((SHA256_CTX*)ctx);
}