mirror of
https://github.com/serai-dex/serai.git
synced 2024-10-30 08:57:36 +00:00
e0ce6e5c12
Doesn't fully utilize ec's hash2curve module as k256 Scalar doesn't have FromOkm for some reason. The previously present bigint reduction is preserved. Updates ff/group to 0.12. Premised on https://github.com/cfrg/draft-irtf-cfrg-frost/pull/205 being merged, as while this Ed25519 is vector compliant, it's technically not spec compliant due to that conflict.
17 lines
305 B
TOML
17 lines
305 B
TOML
[package]
|
|
name = "dalek-ff-group"
|
|
version = "0.1.0"
|
|
description = "ff/group bindings around curve25519-dalek"
|
|
license = "MIT"
|
|
authors = ["Luke Parker <lukeparker5132@gmail.com>"]
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
rand_core = "0.6"
|
|
digest = "0.10"
|
|
|
|
subtle = "2.4"
|
|
|
|
group = "0.12"
|
|
|
|
curve25519-dalek = "3.2"
|