Skip to content

Commit 34666e7

Browse files
author
Svetlin Nakov
committed
Updates crypto-libraries-for-developers/javascript-crypto-libraries.md
Auto commit by GitBook Editor
1 parent 81fe7ac commit 34666e7

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

crypto-libraries-for-developers/javascript-crypto-libraries.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ console.log("Public key (compressed):",
3131
pubKey.encodeCompressed("hex"));
3232
```
3333

34-
Run the above code example: [https://repl.it/@nakov/ECDSA-in-JS.](https://repl.it/@nakov/secp256k1-curve-in-JS)
34+
Run the above code example: https://repl.it/@nakov/ECDSA-in-JS.
3535

3636
ECDSA in JavaScript: Sign Message
3737

@@ -46,7 +46,7 @@ console.log(`Msg hash: ${msgHash}`);
4646
console.log("Signature:", signature);
4747
```
4848

49-
Run the above code example: [https://repl.it/@nakov/ECDSA-sign-verify-in-JS.](https://repl.it/@nakov/ECDSA-sign-verify-in-JS[.]%28https://repl.it/@nakov/secp256k1-curve-in-JS)
49+
Run the above code example: https://repl.it/@nakov/ECDSA-sign-verify-in-JS.
5050

5151
Complete example: [https://gist.github.com/nakov/1dcbe26988e18f7a4d013b65d8803ffc](https://gist.github.com/nakov/1dcbe26988e18f7a4d013b65d8803ffc).
5252

@@ -65,7 +65,7 @@ let validSig = ec.verify(
6565
console.log("Signature valid?", validSig);
6666
```
6767

68-
Run the above code example: [https://repl.it/@nakov/ECDSA-sign-verify-in-JS.](https://repl.it/@nakov/ECDSA-sign-verify-in-JS[.]%28https://repl.it/@nakov/secp256k1-curve-in-JS)
68+
Run the above code example: https://repl.it/@nakov/ECDSA-sign-verify-in-JS.
6969

7070
Complete example: [https://gist.github.com/nakov/1dcbe26988e18f7a4d013b65d8803ffc](https://gist.github.com/nakov/1dcbe26988e18f7a4d013b65d8803ffc)
7171

0 commit comments

Comments
 (0)