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:
parent
c035a804b2
commit
ec7a67ad88
1 changed files with 1 additions and 1 deletions
|
|
@ -27,7 +27,7 @@
|
||||||
|
|
||||||
namespace libantelope {
|
namespace libantelope {
|
||||||
|
|
||||||
int sha256_init(struct sha256_ctx* ctx) {
|
int sha256_init(sha256_ctx_t* ctx) {
|
||||||
return SHA256_Init((SHA256_CTX*)ctx);
|
return SHA256_Init((SHA256_CTX*)ctx);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue