crypto_sign_keypair does not need return value

This commit is contained in:
Christophe Diederichs 2020-09-22 14:28:20 +02:00
parent 13db305124
commit 946695361e

View File

@ -144,7 +144,6 @@ function crypto_sign_keypair (pk, sk, seeded) {
pack(pk, p)
for (i = 0; i < 32; i++) sk[i + 32] = pk[i]
return 0
}
function crypto_sign_seed_keypair (pk, sk, seed) {