From 87abc1d6b467f081f9f410bb6681c060625076f4 Mon Sep 17 00:00:00 2001 From: mathiasdm Date: Sat, 31 Jul 2010 12:49:38 +0000 Subject: [PATCH] CryptoConstants update from draft to RFC. --- core/java/src/net/i2p/crypto/CryptoConstants.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/java/src/net/i2p/crypto/CryptoConstants.java b/core/java/src/net/i2p/crypto/CryptoConstants.java index 965039074..4728de8de 100644 --- a/core/java/src/net/i2p/crypto/CryptoConstants.java +++ b/core/java/src/net/i2p/crypto/CryptoConstants.java @@ -34,8 +34,8 @@ import java.math.BigInteger; import net.i2p.util.NativeBigInteger; /** - * Primes for ElGamal and DSA from - * http://www.ietf.org/proceedings/03mar/I-D/draft-ietf-ipsec-ike-modp-groups-05.txt + * Prime for ElGamal from http://tools.ietf.org/html/rfc3526 + * Primes for DSA: unknown. */ public class CryptoConstants { public static final BigInteger dsap = new NativeBigInteger( @@ -63,4 +63,4 @@ public class CryptoConstants { + "DE2BCBF6955817183995497CEA956AE515D2261898FA0510" + "15728E5A8AACAA68FFFFFFFFFFFFFFFF", 16); public static final BigInteger elgg = new NativeBigInteger("2"); -} \ No newline at end of file +}