mirror of
https://github.com/NLnetLabs/unbound.git
synced 2026-02-03 20:29:28 -05:00
fix type cast.
git-svn-id: file:///svn/unbound/trunk@4287 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
parent
e396684a54
commit
6d8a924889
1 changed files with 1 additions and 1 deletions
|
|
@ -1740,7 +1740,7 @@ _verify_nettle_ed25519(sldns_buffer* buf, unsigned char* sigblock,
|
|||
}
|
||||
|
||||
res = ed25519_sha512_verify((uint8_t*)key, sldns_buffer_limit(buf),
|
||||
sldns_buffer_begin(buf), sigblock);
|
||||
sldns_buffer_begin(buf), (uint8_t*)sigblock);
|
||||
|
||||
if (!res)
|
||||
return "ED25519 signature verification failed";
|
||||
|
|
|
|||
Loading…
Reference in a new issue