From 6add722a2534a55b86411533296053faa4d94892 Mon Sep 17 00:00:00 2001 From: mathiasdm Date: Sun, 8 Aug 2010 10:01:35 +0000 Subject: [PATCH] Javadoc fix - thanks, duck! --- core/java/src/net/i2p/crypto/ElGamalEngine.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/java/src/net/i2p/crypto/ElGamalEngine.java b/core/java/src/net/i2p/crypto/ElGamalEngine.java index fe34012f2..93a017656 100644 --- a/core/java/src/net/i2p/crypto/ElGamalEngine.java +++ b/core/java/src/net/i2p/crypto/ElGamalEngine.java @@ -45,7 +45,7 @@ import net.i2p.util.RandomSource; /** * Wrapper for ElGamal encryption/signature schemes. * - * Does all of Elgamal now for data sizes of 223 bytes and less. The data to be + * Does all of Elgamal now for data sizes of 222 bytes and less. The data to be * encrypted is first prepended with a random nonzero byte, then the 32 bytes * making up the SHA256 of the data, then the data itself. The random byte and * the SHA256 hash is stripped on decrypt so the original data is returned.