Fix offset in obsolete crypto_sign_edwards25519sha512batch_open
This commit is contained in:
parent
9567be2df1
commit
47d8513bde
@ -107,7 +107,7 @@ int crypto_sign_edwards25519sha512batch_open(unsigned char *m,
|
||||
return -1;
|
||||
}
|
||||
*mlen_p = mlen;
|
||||
memmove(m, sm + 64, mlen);
|
||||
memmove(m, sm + 32, mlen);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user