Skip to content

Commit

Permalink
Update javadocs
Browse files Browse the repository at this point in the history
  • Loading branch information
safris committed Jul 7, 2023
1 parent a4c12be commit 8879636
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crypto/src/main/java/org/openjax/security/crypto/AES.java
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ private static byte[] concat(final byte[] a, final byte[] b, final byte[] c) {
* @param password The password to be used for encryption.
* @param salt The SALT (length must equal 8).
* @return The encrypted data.
* @throws NullPointerException If {@code data}, {@code password} or {@code salt} is null.
* @throws NullPointerException If {@code data}, {@code password}, or {@code salt} is null.
* @throws IllegalArgumentException If {@code salt.length != 8}.
*/
public abstract byte[] encrypt(byte[] data, String password, byte[] salt);
Expand Down

0 comments on commit 8879636

Please sign in to comment.