Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Optimize ML-DSA Implementation #232

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Primitive/Asymmetric/Signature/ML_DSA/ML_DSA.cry
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
module Primitive::Asymmetric::Signature::ML_DSA::ML_DSA where

import interface Primitive::Asymmetric::Signature::ML_DSA::Parameters as P
import Primitive::Asymmetric::Signature::ML_DSA::Specification { interface P }
import Primitive::Asymmetric::Signature::ML_DSA::OptimizedSpecification { interface P }

/**
* Generate a public-private key pair.
Expand Down Expand Up @@ -98,7 +98,7 @@ Verify pk M sigma ctx

// We expose the internal functions for testing purposes only.
submodule TestAPI where
import Primitive::Asymmetric::Signature::ML_DSA::Specification { interface P } as Spec
import Primitive::Asymmetric::Signature::ML_DSA::OptimizedSpecification { interface P } as Spec

KeyGen_internal = Spec::KeyGen_internal
Sign_internal = Spec::Sign_internal
Expand Down
Loading