Skip to content

Commit

Permalink
Fix javadoc?
Browse files Browse the repository at this point in the history
  • Loading branch information
WillChilds-Klein committed Jan 31, 2025
1 parent 5220cea commit a50657b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/com/amazon/corretto/crypto/provider/PublicUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -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.
*
* <p>See <a href="https://csrc.nist.gov/pubs/fips/204/final">FIPS 204</a>
*
* @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);
}

0 comments on commit a50657b

Please sign in to comment.