Skip to content
Closed
Changes from all commits
Commits
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
6 changes: 3 additions & 3 deletions src/java.base/share/classes/javax/crypto/Cipher.java
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ protected Cipher(CipherSpi cipherSpi,
}

/**
* Creates a {code Cipher} object. Called internally by {code NullCipher}.
* Creates a {@code Cipher} object. Called internally by {@code NullCipher}.
*
* @param cipherSpi the delegate
* @param transformation the transformation
Expand Down Expand Up @@ -2690,15 +2690,15 @@ public static final int getMaxAllowedKeyLength(String transformation)
}

/**
* Returns an {code AlgorithmParameterSpec} object which contains
* Returns an {@code AlgorithmParameterSpec} object which contains
* the maximum {@code Cipher} parameter value according to the
* jurisdiction policy file. If JCE unlimited strength jurisdiction
* policy files are installed or there is no maximum limit on the
* parameters for the specified transformation in the policy file,
* {@code null} will be returned.
*
* @param transformation the cipher transformation
* @return an {code AlgorithmParameterSpec} object which holds the maximum
* @return an {@code AlgorithmParameterSpec} object which holds the maximum
* value or {@code null}
* @throws NullPointerException if {@code transformation}
* is {@code null}
Expand Down