]> WPIA git - gigi.git/blobdiff - src/org/cacert/gigi/Digest.java
Move the "dbObject"s to their own package.
[gigi.git] / src / org / cacert / gigi / Digest.java
diff --git a/src/org/cacert/gigi/Digest.java b/src/org/cacert/gigi/Digest.java
deleted file mode 100644 (file)
index 8c4644f..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-package org.cacert.gigi;
-
-public enum Digest {
-    SHA256("Currently recommended, because the other algorithms" + " might break on some older versions of the GnuTLS library" + " (older than 3.x) still shipped in Debian for example."), SHA384(null), SHA512("Highest protection against hash collision attacks of the algorithms offered here.");
-
-    private final String exp;
-
-    private Digest(String explanation) {
-        exp = explanation;
-    }
-
-    public String getExp() {
-        return exp;
-    }
-
-    public static Digest getDefault() {
-        return SHA256;
-    }
-}