Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
pilcrowonpaper committed Sep 21, 2024
1 parent 6c7c480 commit eff9944
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 @@ -49,7 +49,7 @@ ECDSA public keys are represented as a pair of positive integers, (x, y).

### SEC1

In SEC 1, which defines ECDSA, public keys can either be uncompressed or compressed. Uncompressed keys are the concatenation of x and y, with a leading `0x04` byte. The values are encoded as big-endian bytes with a size equivalent to the curve size. For example, P-256 is 256 bits or 32 bytes in size.
In [SEC 1](https://www.secg.org/sec1-v2.pdf), public keys can either be encoded in an uncompressed or compressed form. Uncompressed keys are the concatenation of x and y, with a leading `0x04` byte. The values are encoded as big-endian bytes with a size equivalent to the curve size. For example, P-256 is 256 bits or 32 bytes in size.

```
0x04 || x || y
Expand Down

0 comments on commit eff9944

Please sign in to comment.