Skip to content

Commit

Permalink
Fix: N is the order of the generator, not the curve
Browse files Browse the repository at this point in the history
  • Loading branch information
emlun committed Apr 3, 2024
1 parent 9e8fd04 commit 5b9f367
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions draft-bradleylundberg-cfrg-arkg.md
Original file line number Diff line number Diff line change
Expand Up @@ -502,8 +502,8 @@ Then the `BL` parameter of ARKG may be instantiated as follows:
- Elliptic curve scalar values are encoded to and from octet strings
using the procedures defined in sections 2.3.7 and 2.3.8 of [SEC 1][sec1].

- `N` is the order of `crv`.
- `G` is the generator of `crv`.
- `N` is the order of `G`.

~~~pseudocode
BL-Generate-Keypair() -> (pk, sk)
Expand Down Expand Up @@ -547,8 +547,8 @@ Then the `KEM` parameter of ARKG may be instantiated as follows:
- `ECDH(pk, sk)` represents the compact output of ECDH [RFC6090]
using public key (curve point) `pk` and secret key (exponent) `sk`.

- `N` is the order of `crv`.
- `G` is the generator of `crv`.
- `N` is the order of `G`.

~~~pseudocode
KEM-Generate-Keypair() -> (pk, sk)
Expand Down

0 comments on commit 5b9f367

Please sign in to comment.