View Javadoc
1   /*
2    * Licensed to the Apache Software Foundation (ASF) under one or more
3    * contributor license agreements.  See the NOTICE file distributed with
4    * this work for additional information regarding copyright ownership.
5    * The ASF licenses this file to You under the Apache License, Version 2.0
6    * (the "License"); you may not use this file except in compliance with
7    * the License.  You may obtain a copy of the License at
8    *
9    *      http://www.apache.org/licenses/LICENSE-2.0
10   *
11   * Unless required by applicable law or agreed to in writing, software
12   * distributed under the License is distributed on an "AS IS" BASIS,
13   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14   * See the License for the specific language governing permissions and
15   * limitations under the License.
16   */
17  package org.apache.commons.codec.digest;
18  
19  import static org.junit.jupiter.api.Assertions.assertArrayEquals;
20  import static org.junit.jupiter.api.Assertions.assertEquals;
21  import static org.junit.jupiter.api.Assertions.assertFalse;
22  import static org.junit.jupiter.api.Assertions.assertNotNull;
23  import static org.junit.jupiter.api.Assertions.assertThrows;
24  import static org.junit.jupiter.api.Assumptions.assumeTrue;
25  
26  import java.io.ByteArrayInputStream;
27  import java.io.IOException;
28  import java.security.NoSuchAlgorithmException;
29  import java.util.ArrayList;
30  import java.util.Arrays;
31  import java.util.List;
32  import java.util.stream.Stream;
33  
34  import javax.crypto.Mac;
35  
36  import org.apache.commons.lang3.JavaVersion;
37  import org.apache.commons.lang3.SystemUtils;
38  import org.junit.jupiter.api.AfterEach;
39  import org.junit.jupiter.api.BeforeEach;
40  import org.junit.jupiter.params.ParameterizedTest;
41  import org.junit.jupiter.params.provider.Arguments;
42  import org.junit.jupiter.params.provider.MethodSource;
43  
44  /**
45   * Tests {@link HmacAlgorithms}.
46   */
47  public class HmacAlgorithmsTest {
48  
49      static final String STANDARD_KEY_STRING = "key";
50  
51      static final byte[] STANDARD_KEY_BYTES = STANDARD_KEY_STRING.getBytes();
52  
53      static final byte[] STANDARD_MD5_RESULT_BYTES = { -128, 7, 7, 19, 70, 62, 119, 73, -71, 12, 45, -62, 73, 17, -30, 117 };
54  
55      static final String STANDARD_MD5_RESULT_STRING = "80070713463e7749b90c2dc24911e275";
56  
57      static final String STANDARD_PHRASE_STRING = "The quick brown fox jumps over the lazy dog";
58  
59      static final byte[] STANDARD_PHRASE_BYTES = STANDARD_PHRASE_STRING.getBytes();
60  
61      static final byte[] STANDARD_SHA1_RESULT_BYTES = { -34, 124, -101, -123, -72, -73, -118, -90, -68, -118, 122, 54, -9, 10, -112, 112, 28, -99, -76, -39 };
62  
63      static final String STANDARD_SHA1_RESULT_STRING = "de7c9b85b8b78aa6bc8a7a36f70a90701c9db4d9";
64  
65      static final byte[] STANDARD_SHA224_RESULT_BYTES = { -120, -1, -117, 84, 103, 93, 57, -72, -9, 35, 34, -26, 95, -7, 69, -59, 45, -106, 55, -103, -120, -83,
66              -94, 86, 57, 116, 126, 105 };
67  
68      static final String STANDARD_SHA224_RESULT_STRING = "88ff8b54675d39b8f72322e65ff945c52d96379988ada25639747e69";
69  
70      static final byte[] STANDARD_SHA256_RESULT_BYTES = { -9, -68, -125, -12, 48, 83, -124, 36, -79, 50, -104, -26, -86, 111, -79, 67, -17, 77, 89, -95, 73, 70,
71              23, 89, -105, 71, -99, -68, 45, 26, 60, -40 };
72  
73      static final String STANDARD_SHA256_RESULT_STRING = "f7bc83f430538424b13298e6aa6fb143ef4d59a14946175997479dbc2d1a3cd8";
74  
75      static final byte[] STANDARD_SHA384_RESULT_BYTES = { -41, -12, 114, 126, 44, 11, 57, -82, 15, 30, 64, -52, -106, -10, 2, 66, -43, -73, -128, 24, 65, -50,
76              -90, -4, 89, 44, 93, 62, 26, -27, 7, 0, 88, 42, -106, -49, 53, -31, -27, 84, -103, 95, -28, -32, 51, -127, -62, 55 };
77  
78      static final String STANDARD_SHA384_RESULT_STRING = "D7F4727E2C0B39AE0F1E40CC96F60242D5B7801841CEA6FC592C5D3E1AE50700582A96CF35E1E554995FE4E03381C237"
79              .toLowerCase();
80  
81      static final byte[] STANDARD_SHA512_RESULT_BYTES = { -76, 42, -16, -112, 87, -70, -63, -30, -44, 23, 8, -28, -118, -112, 46, 9, -75, -1, 127, 18, -85, 66,
82              -118, 79, -24, 102, 83, -57, 61, -46, 72, -5, -126, -7, 72, -91, 73, -9, -73, -111, -91, -76, 25, 21, -18, 77, 30, -61, -109, 83, 87, -28, -30, 49,
83              114, 80, -48, 55, 42, -6, 46, -66, -21, 58 };
84  
85      static final String STANDARD_SHA512_RESULT_STRING = "B42AF09057BAC1E2D41708E48A902E09B5FF7F12AB428A4FE86653C73DD248FB82F948A549F7B791A5B41915EE4D1EC3935357E4E2317250D0372AFA2EBEEB3A"
86              .toLowerCase();
87  
88      private static final byte[] EMPTY_BYTE_ARRAY = {};
89  
90      // TODO HMAC_SHA_224
91      public static Stream<Arguments> data() {
92          List<Arguments> list = Arrays.asList(
93          // @formatter:off
94                  Arguments.of(HmacAlgorithms.HMAC_MD5, STANDARD_MD5_RESULT_BYTES, STANDARD_MD5_RESULT_STRING),
95                  Arguments.of(HmacAlgorithms.HMAC_SHA_1, STANDARD_SHA1_RESULT_BYTES, STANDARD_SHA1_RESULT_STRING),
96                  Arguments.of(HmacAlgorithms.HMAC_SHA_256, STANDARD_SHA256_RESULT_BYTES, STANDARD_SHA256_RESULT_STRING),
97                  Arguments.of(HmacAlgorithms.HMAC_SHA_384, STANDARD_SHA384_RESULT_BYTES, STANDARD_SHA384_RESULT_STRING),
98                  Arguments.of(HmacAlgorithms.HMAC_SHA_512, STANDARD_SHA512_RESULT_BYTES, STANDARD_SHA512_RESULT_STRING));
99          // @formatter:on
100         if (SystemUtils.isJavaVersionAtLeast(JavaVersion.JAVA_1_8)) {
101             list = new ArrayList<>(list);
102             list.add(Arguments.of(HmacAlgorithms.HMAC_SHA_224, STANDARD_SHA224_RESULT_BYTES, STANDARD_SHA224_RESULT_STRING));
103         }
104         return list.stream();
105     }
106 
107     private DigestUtilsTest digestUtilsTest;
108 
109     @BeforeEach
110     public void setUp() throws Exception {
111         digestUtilsTest = new DigestUtilsTest();
112         digestUtilsTest.setUp();
113     }
114 
115     @AfterEach
116     public void tearDown() throws Exception {
117         digestUtilsTest.tearDown();
118         digestUtilsTest = null;
119     }
120 
121     @ParameterizedTest
122     @MethodSource("data")
123     public void testAlgorithm(final HmacAlgorithms hmacAlgorithm, final byte[] standardResultBytes, final String standardResultString)
124             throws NoSuchAlgorithmException {
125         assumeTrue(HmacUtils.isAvailable(hmacAlgorithm));
126         final String algorithm = hmacAlgorithm.getName();
127         assertNotNull(algorithm);
128         assertFalse(algorithm.isEmpty());
129         assumeTrue(HmacUtils.isAvailable(hmacAlgorithm));
130         Mac.getInstance(algorithm);
131     }
132 
133     @ParameterizedTest
134     @MethodSource("data")
135     public void testGetHmacEmptyKey(final HmacAlgorithms hmacAlgorithm, final byte[] standardResultBytes, final String standardResultString) {
136         assumeTrue(HmacUtils.isAvailable(hmacAlgorithm));
137         assertThrows(IllegalArgumentException.class, () -> HmacUtils.getInitializedMac(hmacAlgorithm, EMPTY_BYTE_ARRAY));
138     }
139 
140     @ParameterizedTest
141     @MethodSource("data")
142     public void testGetHmacNullKey(final HmacAlgorithms hmacAlgorithm, final byte[] standardResultBytes, final String standardResultString) {
143         assumeTrue(HmacUtils.isAvailable(hmacAlgorithm));
144         assertThrows(IllegalArgumentException.class, () -> HmacUtils.getInitializedMac(hmacAlgorithm, null));
145     }
146 
147     @ParameterizedTest
148     @MethodSource("data")
149     public void testHmacFailByteArray(final HmacAlgorithms hmacAlgorithm, final byte[] standardResultBytes, final String standardResultString) {
150         assumeTrue(HmacUtils.isAvailable(hmacAlgorithm));
151         assertThrows(IllegalArgumentException.class, () -> new HmacUtils(hmacAlgorithm, (byte[]) null).hmac(STANDARD_PHRASE_BYTES));
152     }
153 
154     @ParameterizedTest
155     @MethodSource("data")
156     public void testHmacFailInputStream(final HmacAlgorithms hmacAlgorithm, final byte[] standardResultBytes, final String standardResultString) {
157         assumeTrue(HmacUtils.isAvailable(hmacAlgorithm));
158         assertThrows(IllegalArgumentException.class, () -> new HmacUtils(hmacAlgorithm, (byte[]) null).hmac(new ByteArrayInputStream(STANDARD_PHRASE_BYTES)));
159     }
160 
161     @ParameterizedTest
162     @MethodSource("data")
163     public void testHmacFailString(final HmacAlgorithms hmacAlgorithm, final byte[] standardResultBytes, final String standardResultString) {
164         assumeTrue(HmacUtils.isAvailable(hmacAlgorithm));
165         assertThrows(IllegalArgumentException.class, () -> new HmacUtils(hmacAlgorithm, (String) null).hmac(STANDARD_PHRASE_STRING));
166     }
167 
168     @ParameterizedTest
169     @MethodSource("data")
170     public void testHmacHexFailByteArray(final HmacAlgorithms hmacAlgorithm, final byte[] standardResultBytes, final String standardResultString) {
171         assumeTrue(HmacUtils.isAvailable(hmacAlgorithm));
172         assertThrows(IllegalArgumentException.class, () -> new HmacUtils(hmacAlgorithm, (byte[]) null).hmac(STANDARD_PHRASE_BYTES));
173     }
174 
175     @ParameterizedTest
176     @MethodSource("data")
177     public void testHmacHexFailInputStream(final HmacAlgorithms hmacAlgorithm, final byte[] standardResultBytes, final String standardResultString) {
178         assumeTrue(HmacUtils.isAvailable(hmacAlgorithm));
179         assertThrows(IllegalArgumentException.class, () -> new HmacUtils(hmacAlgorithm, (byte[]) null).hmac(new ByteArrayInputStream(STANDARD_PHRASE_BYTES)));
180     }
181 
182     @ParameterizedTest
183     @MethodSource("data")
184     public void testHmacHexFailString(final HmacAlgorithms hmacAlgorithm, final byte[] standardResultBytes, final String standardResultString) {
185         assumeTrue(HmacUtils.isAvailable(hmacAlgorithm));
186         assertThrows(IllegalArgumentException.class, () -> new HmacUtils(hmacAlgorithm, (String) null).hmac(STANDARD_PHRASE_STRING));
187     }
188 
189     @ParameterizedTest
190     @MethodSource("data")
191     public void testInitializedMac(final HmacAlgorithms hmacAlgorithm, final byte[] standardResultBytes, final String standardResultString) {
192         assumeTrue(HmacUtils.isAvailable(hmacAlgorithm));
193         final Mac mac = HmacUtils.getInitializedMac(hmacAlgorithm, STANDARD_KEY_BYTES);
194         final Mac mac2 = HmacUtils.getInitializedMac(hmacAlgorithm.getName(), STANDARD_KEY_BYTES);
195         assertArrayEquals(standardResultBytes, HmacUtils.updateHmac(mac, STANDARD_PHRASE_STRING).doFinal());
196         assertArrayEquals(standardResultBytes, HmacUtils.updateHmac(mac2, STANDARD_PHRASE_STRING).doFinal());
197     }
198 
199     @ParameterizedTest
200     @MethodSource("data")
201     public void testMacByteArray(final HmacAlgorithms hmacAlgorithm, final byte[] standardResultBytes, final String standardResultString) {
202         assumeTrue(HmacUtils.isAvailable(hmacAlgorithm));
203         assertArrayEquals(standardResultBytes, new HmacUtils(hmacAlgorithm, STANDARD_KEY_BYTES).hmac(STANDARD_PHRASE_BYTES));
204     }
205 
206     @ParameterizedTest
207     @MethodSource("data")
208     public void testMacHexByteArray(final HmacAlgorithms hmacAlgorithm, final byte[] standardResultBytes, final String standardResultString) {
209         assumeTrue(HmacUtils.isAvailable(hmacAlgorithm));
210         assertEquals(standardResultString, new HmacUtils(hmacAlgorithm, STANDARD_KEY_BYTES).hmacHex(STANDARD_PHRASE_BYTES));
211     }
212 
213     @ParameterizedTest
214     @MethodSource("data")
215     public void testMacHexInputStream(final HmacAlgorithms hmacAlgorithm, final byte[] standardResultBytes, final String standardResultString)
216             throws IOException {
217         assumeTrue(HmacUtils.isAvailable(hmacAlgorithm));
218         assertEquals(standardResultString, new HmacUtils(hmacAlgorithm, STANDARD_KEY_BYTES).hmacHex(new ByteArrayInputStream(STANDARD_PHRASE_BYTES)));
219     }
220 
221     @ParameterizedTest
222     @MethodSource("data")
223     public void testMacHexString(final HmacAlgorithms hmacAlgorithm, final byte[] standardResultBytes, final String standardResultString) {
224         assumeTrue(HmacUtils.isAvailable(hmacAlgorithm));
225         assertEquals(standardResultString, new HmacUtils(hmacAlgorithm, STANDARD_KEY_BYTES).hmacHex(STANDARD_PHRASE_STRING));
226     }
227 
228     @ParameterizedTest
229     @MethodSource("data")
230     public void testMacInputStream(final HmacAlgorithms hmacAlgorithm, final byte[] standardResultBytes, final String standardResultString) throws IOException {
231         assumeTrue(HmacUtils.isAvailable(hmacAlgorithm));
232         assertArrayEquals(standardResultBytes, new HmacUtils(hmacAlgorithm, STANDARD_KEY_BYTES).hmac(new ByteArrayInputStream(STANDARD_PHRASE_BYTES)));
233     }
234 
235     @ParameterizedTest
236     @MethodSource("data")
237     public void testMacString(final HmacAlgorithms hmacAlgorithm, final byte[] standardResultBytes, final String standardResultString) {
238         assumeTrue(HmacUtils.isAvailable(hmacAlgorithm));
239         assertArrayEquals(standardResultBytes, new HmacUtils(hmacAlgorithm, STANDARD_KEY_BYTES).hmac(STANDARD_PHRASE_STRING));
240     }
241 
242 }