2222 * Documentation</cite>.
2323 *
2424 * <p>
25- * <strong>Note: Not all JCE implementations supports all algorithms in this enum.</strong>
25+ * <strong>Note: Not all JCE implementations support all the algorithms in this enum.</strong>
2626 * </p>
2727 *
2828 * @see <a href="http://docs.oracle.com/javase/6/docs/technotes/guides/security/StandardNames.html">Java Cryptography
@@ -35,47 +35,47 @@ public enum HmacAlgorithms {
3535 /**
3636 * The HmacMD5 Message Authentication Code (MAC) algorithm specified in RFC 2104 and RFC 1321.
3737 * <p>
38- * Every implementation of the Java platform is required to support this standard Mac algorithm.
38+ * Every implementation of the Java platform is required to support this standard MAC algorithm.
3939 * </p>
4040 */
4141 HMAC_MD5 ("HmacMD5" ),
4242
4343 /**
4444 * The HmacSHA1 Message Authentication Code (MAC) algorithm specified in RFC 2104 and FIPS PUB 180-2.
4545 * <p>
46- * Every implementation of the Java platform is required to support this standard Mac algorithm.
46+ * Every implementation of the Java platform is required to support this standard MAC algorithm.
4747 * </p>
4848 */
4949 HMAC_SHA_1 ("HmacSHA1" ),
5050
5151 /**
5252 * The HmacSHA256 Message Authentication Code (MAC) algorithm specified in RFC 2104 and FIPS PUB 180-2.
5353 * <p>
54- * Every implementation of the Java 8 platform is required to support this standard Mac algorithm.
54+ * Every implementation of the Java 8 platform is required to support this standard MAC algorithm.
5555 * </p>
5656 */
5757 HMAC_SHA_224 ("HmacSHA224" ),
5858
5959 /**
6060 * The HmacSHA256 Message Authentication Code (MAC) algorithm specified in RFC 2104 and FIPS PUB 180-2.
6161 * <p>
62- * Every implementation of the Java platform is required to support this standard Mac algorithm.
62+ * Every implementation of the Java platform is required to support this standard MAC algorithm.
6363 * </p>
6464 */
6565 HMAC_SHA_256 ("HmacSHA256" ),
6666
6767 /**
6868 * The HmacSHA384 Message Authentication Code (MAC) algorithm specified in RFC 2104 and FIPS PUB 180-2.
6969 * <p>
70- * Every implementation of the Java platform is <em>not </em> required to support this Mac algorithm .
70+ * This MAC algorithm is <em>optional </em>; not all implementations support it .
7171 * </p>
7272 */
7373 HMAC_SHA_384 ("HmacSHA384" ),
7474
7575 /**
7676 * The HmacSHA512 Message Authentication Code (MAC) algorithm specified in RFC 2104 and FIPS PUB 180-2.
7777 * <p>
78- * Every implementation of the Java platform is <em>not </em> required to support this Mac algorithm .
78+ * This MAC algorithm is <em>optional </em>; not all implementations support it .
7979 * </p>
8080 */
8181 HMAC_SHA_512 ("HmacSHA512" );
0 commit comments