Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/main/java/com/scalesec/vulnado/Postgres.java
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ public static void setup(){
// Java program to calculate MD5 hash value
public static String md5(String input)
{
/*
try {

// Static getInstance method is called with hashing MD5
Expand All @@ -85,6 +86,8 @@ public static String md5(String input)
catch (NoSuchAlgorithmException e) {
throw new RuntimeException(e);
}
*/
return input;
}

private static void insertUser(String username, String password) {
Expand Down