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

8298387: Implement JEP 497: Quantum-Resistant Module-Lattice-Based Digital Signature Algorithm #21364

Closed
wants to merge 43 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
458f848
the fix
wangweij Sep 24, 2024
ba68b30
renames
wangweij Sep 25, 2024
4a97423
ensure key is intact after being used
wangweij Sep 25, 2024
5dd08ef
add support for private class RawKeySpec
wangweij Sep 26, 2024
1516c96
more test, more RAW support, fix a bug on cleaning up getRawBytes output
wangweij Sep 27, 2024
c11e4ef
Merge branch 'master' into 8340327
wangweij Oct 3, 2024
1b9c113
ML_DSA and ML_DSA_Provider functionality
blperez01 Oct 4, 2024
5b44912
Updated hintBitUnpack to reflect FIPS 204. Moved key/sig decoding to …
blperez01 Oct 8, 2024
127acca
renamed internal keyGen/sign/verify functions to be same as spec
blperez01 Oct 8, 2024
44a33f1
remove PR21167 changes
wangweij Oct 11, 2024
216bfa3
Merge branch 'master' into ml-dsa-final
wangweij Oct 11, 2024
626bafc
compare bytes as unsigned
wangweij Oct 12, 2024
cc23110
ML-DSA for jarsigner
wangweij Oct 14, 2024
2dc5484
pack in-place and unpack with an offset
wangweij Oct 15, 2024
2cde091
Revert "ML-DSA for jarsigner"
wangweij Oct 21, 2024
957b9a2
move entries to different sections
wangweij Oct 21, 2024
0ecef8b
Added several commends and made stylistic changes to make code more r…
blperez01 Oct 23, 2024
569b0ae
Added comments to constants
blperez01 Oct 25, 2024
b4817a1
Moved allocations outside main siggen loop, several other small optim…
blperez01 Oct 29, 2024
52af109
Removed functionality related to intrinsics that will be part of a di…
blperez01 Oct 31, 2024
76e76c9
Added optimizations to makeHint and removed an NTT from sigggen
blperez01 Oct 31, 2024
78ee2e3
Removed redundant allocations in several functions
blperez01 Oct 31, 2024
da17dd7
Added benchmark
mcpowers Oct 31, 2024
2a7636b
FIPS 204 final
wangweij Nov 5, 2024
b0a116f
ACVP tests
wangweij Nov 5, 2024
bb5c20d
Added key size checks in ML_DSA_Provider
blperez01 Nov 5, 2024
41999d7
Refactored key checks
blperez01 Nov 6, 2024
65cf97b
signature validation
wangweij Nov 6, 2024
551a5e0
NIST OIDs
wangweij Nov 7, 2024
71d7664
no need to break into sections
wangweij Nov 7, 2024
13353a7
checking already implemented
wangweij Nov 7, 2024
edd7205
cleanup and reformat ML_DSA_Provider
wangweij Nov 7, 2024
ae929d6
trailing spaces
wangweij Nov 8, 2024
864f131
missing copyright on benchmark
mcpowers Nov 8, 2024
9ac1960
no classpath exception in test copyright header
wangweij Nov 8, 2024
c89921b
Merge branch 'master' into ml-dsa-final
wangweij Nov 8, 2024
da6e5a4
Merge branch 'openjdk:master' into ml-dsa-final
blperez01 Nov 13, 2024
2b7d58c
Renamed ML_DSA_Provider to ML_DSA_Impls, reponded to several comments
blperez01 Nov 14, 2024
12cfcf6
Updated copyrite, changed classes in ML_DSA_Impls to sealed
blperez01 Nov 14, 2024
31e6089
Removed unnecessary initialization in generateA
blperez01 Nov 21, 2024
45df71a
Shortened lines and removed trailing whitespace
blperez01 Nov 21, 2024
dbf0a0f
minor stylistic edit
blperez01 Nov 21, 2024
f742b6f
Merge branch 'master' into ml-dsa-final
blperez01 Nov 22, 2024
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
810 changes: 810 additions & 0 deletions test/micro/org/openjdk/bench/java/security/MLDSA.java

Large diffs are not rendered by default.


Unchanged files with check annotations Beta

private final int MASK_SEED_LEN = 64;
private static final int D_MASK = (1 << ML_DSA_D) - 1;
private final int T0_COEFF_SIZE = 13;

Check failure on line 50 in src/java.base/share/classes/sun/security/provider/ML_DSA.java

openjdk / jcheck-openjdk/jdk-21364

Whitespace error

Column 0: trailing whitespace Column 1: trailing whitespace Column 2: trailing whitespace Column 3: trailing whitespace
private static final int MONT_R_BITS = 32;
private static final long MONT_R = 4294967296L; // 1 << MONT_R_BITS
private static final int MONT_Q = 8380417;