-
-
Notifications
You must be signed in to change notification settings - Fork 8.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
Showing
3 changed files
with
47 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
33 changes: 33 additions & 0 deletions
33
test/src/test/java/hudson/security/HMACConfidentialKeyFIPSTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
package hudson.security; | ||
|
||
import static org.hamcrest.MatcherAssert.assertThat; | ||
import static org.hamcrest.Matchers.matchesPattern; | ||
import static org.junit.Assert.assertEquals; | ||
import static org.junit.Assert.assertThrows; | ||
|
||
import jenkins.security.HMACConfidentialKey; | ||
import org.junit.ClassRule; | ||
import org.junit.Test; | ||
import org.junit.rules.TestRule; | ||
import org.jvnet.hudson.test.FlagRule; | ||
|
||
public class HMACConfidentialKeyFIPSTest { | ||
@ClassRule | ||
// do not use the FIPS140 class here as that initializes the field before we set the property! | ||
public static TestRule flagRule = FlagRule.systemProperty("jenkins.security.FIPS140.COMPLIANCE", "true"); | ||
|
||
@Test | ||
public void testTruncatedMacOnFips() { | ||
HMACConfidentialKey key1 = new HMACConfidentialKey("test", 16); | ||
IllegalArgumentException iae = assertThrows(IllegalArgumentException.class, () -> key1.mac("Hello World")); | ||
assertEquals("Supplied length can't be less than 32 on FIPS mode", iae.getMessage()); | ||
} | ||
|
||
@Test | ||
public void testCompleteMacOnFips() { | ||
HMACConfidentialKey key1 = new HMACConfidentialKey("test", 32); | ||
String str = key1.mac("Hello World"); | ||
String pattern = "[0-9A-Fa-f]{64}"; | ||
assertThat(str, matchesPattern(pattern)); | ||
} | ||
} |