Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/org/bouncycastle/crypto/tls/DigestAlgorithm.java')
-rw-r--r--src/main/java/org/bouncycastle/crypto/tls/DigestAlgorithm.java7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/main/java/org/bouncycastle/crypto/tls/DigestAlgorithm.java b/src/main/java/org/bouncycastle/crypto/tls/DigestAlgorithm.java
index 24953914..41d54009 100644
--- a/src/main/java/org/bouncycastle/crypto/tls/DigestAlgorithm.java
+++ b/src/main/java/org/bouncycastle/crypto/tls/DigestAlgorithm.java
@@ -2,13 +2,14 @@ package org.bouncycastle.crypto.tls;
/**
* RFC 2246
- *
+ * <p/>
* Note that the values here are implementation-specific and arbitrary. It is recommended not to
* depend on the particular values (e.g. serialization).
- *
+ *
* @deprecated use MACAlgorithm constants instead
*/
-public class DigestAlgorithm {
+public class DigestAlgorithm
+{
public static final int NULL = 0;
public static final int MD5 = 1;
public static final int SHA = 2;