From a50657bd5dc454026324dc4a1c0eb9c7d4a5ba6b Mon Sep 17 00:00:00 2001 From: Will Childs-Klein Date: Fri, 31 Jan 2025 01:23:38 -0500 Subject: [PATCH] Fix javadoc? --- src/com/amazon/corretto/crypto/provider/PublicUtils.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/com/amazon/corretto/crypto/provider/PublicUtils.java b/src/com/amazon/corretto/crypto/provider/PublicUtils.java index bf65c465..9e165aa2 100644 --- a/src/com/amazon/corretto/crypto/provider/PublicUtils.java +++ b/src/com/amazon/corretto/crypto/provider/PublicUtils.java @@ -9,10 +9,11 @@ private PublicUtils() {} // private constructor to prevent instantiation /** * Computes mu as defined on line 6 of Algorithm 7 and line 7 of Algorithm 8 in NIST FIPS 204. * + *

See FIPS 204 + * * @param pubKeyEncoded X509-encoded of the ML-DSA public key * @param message byte array of the message over which to compute mu * @return a byte[] of length 64 containing mu - * @see https://csrc.nist.gov/pubs/fips/204/final */ public static native byte[] computeMLDSAMu(byte[] pubKeyEncoded, byte[] message); }