Skip to content

Commit f207e14

Browse files
committed
English
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/codec/trunk@1744115 13f79535-47bb-0310-9956-ffa450edef68
1 parent 3fdd24c commit f207e14

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

src/main/java/org/apache/commons/codec/digest/HmacAlgorithms.java

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
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

Comments
 (0)