X-Git-Url: https://code.wpia.club/?p=gigi.git;a=blobdiff_plain;f=src%2Forg%2Fcacert%2Fgigi%2FDigest.java;h=8c4644f72dc9dd38a6397634a4ab00d57b30520d;hp=bf7cfee60f8a0b2aaa50e1ad5c9d45d7148ca335;hb=fb38a9c8b9d86289213a36bd3d2afddc58ec7d3f;hpb=34f5c2460a8124de0ec40aabecd6df6c7e719ead diff --git a/src/org/cacert/gigi/Digest.java b/src/org/cacert/gigi/Digest.java index bf7cfee6..8c4644f7 100644 --- a/src/org/cacert/gigi/Digest.java +++ b/src/org/cacert/gigi/Digest.java @@ -3,7 +3,7 @@ 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."); - final String exp; + private final String exp; private Digest(String explanation) { exp = explanation;