Skip to content

Commit

Permalink
feat(crypto): switch from secp256k1 to ed25519 curve
Browse files Browse the repository at this point in the history
Changes the CURVE_APP_LOAD_PARAMS in the Makefile to use ed25519 instead of secp256k1 for cryptographic operations.
  • Loading branch information
keiff3r committed Nov 27, 2024
1 parent 58d48c7 commit c975263
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ ICON_FLEX = icons/app_concordium_40px.gif
# Possibles curves are: secp256k1, secp256r1, ed25519 and bls12381g1
# If your app needs it, you can specify multiple curves by using:
# `CURVE_APP_LOAD_PARAMS = <curve1> <curve2>`
CURVE_APP_LOAD_PARAMS = secp256k1
CURVE_APP_LOAD_PARAMS = ed25519

# Application allowed derivation paths.
# You should request a specific path for your app.
Expand Down

0 comments on commit c975263

Please sign in to comment.