Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
pilcrowonpaper committed Sep 21, 2024
1 parent 7a4f938 commit 6c7c480
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/cryptography/ecdsa.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ In SEC 1, which defines ECDSA, public keys can either be uncompressed or compres
0x04 || x || y
```

Compressed keys are the x value with a leading `0x02` if x is even or `0x03` byte if odd. The y value can be calculated from x and the curve.
Compressed keys are the x value with a leading `0x02` byte if x is even or `0x03` byte if x is odd. The y value can be derived from x and the curve.

```
0x02 || x
Expand Down

0 comments on commit 6c7c480

Please sign in to comment.