< prev index next >

jdk/src/java.base/share/classes/java/security/spec/EncodedKeySpec.java

Print this page

        

*** 72,82 **** * for information about standard algorithm names. * @throws NullPointerException if {@code encodedKey} * or {@code algorithm} is null. * @throws IllegalArgumentException if {@code algorithm} is * the empty string {@code ""} ! * @since 1.9 */ protected EncodedKeySpec(byte[] encodedKey, String algorithm) { if (algorithm == null) { throw new NullPointerException("algorithm name may not be null"); } --- 72,82 ---- * for information about standard algorithm names. * @throws NullPointerException if {@code encodedKey} * or {@code algorithm} is null. * @throws IllegalArgumentException if {@code algorithm} is * the empty string {@code ""} ! * @since 9 */ protected EncodedKeySpec(byte[] encodedKey, String algorithm) { if (algorithm == null) { throw new NullPointerException("algorithm name may not be null"); }
*** 91,101 **** /** * Returns the name of the algorithm of the encoded key. * * @return the name of the algorithm, or null if not specified ! * @since 1.9 */ public String getAlgorithm() { return algorithmName; } --- 91,101 ---- /** * Returns the name of the algorithm of the encoded key. * * @return the name of the algorithm, or null if not specified ! * @since 9 */ public String getAlgorithm() { return algorithmName; }
< prev index next >