mirror of
https://github.com/arnaucube/go-blindsecp256k1.git
synced 2026-02-06 19:16:40 +01:00
Update Unblind inputs removing unnecessary m
- Update Unblind inputs removing unnecessary `m` - Add mod at Blind & BlindSign
This commit is contained in:
Binary file not shown.
@@ -12,7 +12,7 @@ function test() {
|
||||
let signerQx = "91217724741799691300838336208439702708830781279546234509900618215893368170964";
|
||||
let signerQy = "10647409378909561143830454293907272341812664755625953321604115356883317910171";
|
||||
let sBlind = "1559989683738317700055715706344460781046571016142996697444777749433194958666958401306508176561868963591508234625762518936896506645022493420447764027537091595268073646775253821735958788229615883133396107736168033688269069669796190509031136746898237132145138091815479880246793211708356184248484212425679897377";
|
||||
let unblindRes = wasmUnblind(sBlind, m, blindRes.uA, blindRes.uB, blindRes.uFx, blindRes.uFy);
|
||||
let unblindRes = wasmUnblind(sBlind, blindRes.uA, blindRes.uB, blindRes.uFx, blindRes.uFy);
|
||||
console.log("unblind", unblindRes);
|
||||
|
||||
|
||||
@@ -28,7 +28,7 @@ function test() {
|
||||
blindRes = wasmBlindv0(m, signerQx, signerQy, signerRx, signerRy);
|
||||
console.log("blindv0", blindRes);
|
||||
// sBlind would be received from the Signer
|
||||
unblindRes = wasmUnblindv0(sBlind, m, blindRes.uB, blindRes.uC, blindRes.uFx, blindRes.uFy);
|
||||
unblindRes = wasmUnblindv0(sBlind, blindRes.uB, blindRes.uC, blindRes.uFx, blindRes.uFy);
|
||||
console.log("unblindv0", unblindRes);
|
||||
|
||||
// wasmVerifyv0 method not used here because the hardcoded values would
|
||||
|
||||
Reference in New Issue
Block a user