-
Notifications
You must be signed in to change notification settings - Fork 136
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
save work, refactor and solved some comments
- Loading branch information
1 parent
fd293b2
commit cbd20dd
Showing
6 changed files
with
1,447 additions
and
813 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#[derive(Clone)] | ||
#[allow(dead_code)] | ||
pub enum MdsMethod { | ||
/// Use standard matrix multiplication. | ||
MatrixMultiplication, | ||
/// Use Number Theoretic Transform for multiplication. | ||
Ntt, | ||
/// Use Karatsuba algorithm for multiplication. | ||
Karatsuba, | ||
} |
Oops, something went wrong.