#2 - Added test to test the cypto library

This commit is contained in:
Isaac Parenteau
2019-09-30 15:40:29 -05:00
parent 91f9f5a71e
commit f717d42ea8
8 changed files with 426 additions and 12 deletions

16
pom.xml
View File

@ -54,6 +54,14 @@
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
<dependency>
<groupId>commons-io</groupId>
@ -61,6 +69,14 @@
<version>2.6</version>
</dependency>
<!-- https://mvnrepository.com/artifact/commons-codec/commons-codec -->
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.13</version>
</dependency>
<!-- https://mvnrepository.com/artifact/com.google.guava/guava -->
<dependency>
<groupId>com.google.guava</groupId>