Skip to content

Commit 3ba3c5a

Browse files
committed
CrytpoInitialise
0 parents  commit 3ba3c5a

File tree

9 files changed

+69
-0
lines changed

9 files changed

+69
-0
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
.idea/*.iml
2+
.idea/workspace.xml

.idea/compiler.xml

+13
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/encodings.xml

+4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

+14
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

java-crypto-utils.iml

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<module type="JAVA_MODULE" version="4" />

pom.xml

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
7+
<groupId>co.tunjos.crypto</groupId>
8+
<artifactId>java-crypto-utils</artifactId>
9+
<version>1.0-SNAPSHOT</version>
10+
11+
12+
</project>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
package co.tunjos.crypto.crypto;
2+
3+
public class CryptoUtils {
4+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
package co.tunjos.crypto.hash;
2+
3+
public class HashUtils {
4+
private static HashUtils ourInstance = new HashUtils();
5+
6+
public static HashUtils getInstance() {
7+
return ourInstance;
8+
}
9+
10+
private HashUtils() {
11+
}
12+
}

0 commit comments

Comments
 (0)