From 829af21c49788cabd73a8d812bc16d5f91739036 Mon Sep 17 00:00:00 2001 From: zzz Date: Mon, 28 May 2012 18:04:11 +0000 Subject: [PATCH] javadoc fix --- core/java/src/net/i2p/data/SigningPrivateKey.java | 2 +- core/java/src/net/i2p/data/SigningPublicKey.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/java/src/net/i2p/data/SigningPrivateKey.java b/core/java/src/net/i2p/data/SigningPrivateKey.java index 446e911dd..4d804d080 100644 --- a/core/java/src/net/i2p/data/SigningPrivateKey.java +++ b/core/java/src/net/i2p/data/SigningPrivateKey.java @@ -13,7 +13,7 @@ import net.i2p.crypto.KeyGenerator; /** * Defines the SigningPrivateKey as defined by the I2P data structure spec. - * A private key is 256byte Integer. The private key represents only the + * A signing private key is 20 byte Integer. The private key represents only the * exponent, not the primes, which are constant and defined in the crypto spec. * This key varies from the PrivateKey in its usage (signing, not decrypting) * diff --git a/core/java/src/net/i2p/data/SigningPublicKey.java b/core/java/src/net/i2p/data/SigningPublicKey.java index 2145e9526..5839cf7e8 100644 --- a/core/java/src/net/i2p/data/SigningPublicKey.java +++ b/core/java/src/net/i2p/data/SigningPublicKey.java @@ -14,7 +14,7 @@ import java.io.IOException; /** * Defines the SigningPublicKey as defined by the I2P data structure spec. - * A public key is 256byte Integer. The public key represents only the + * A signing public key is 128 byte Integer. The public key represents only the * exponent, not the primes, which are constant and defined in the crypto spec. * This key varies from the PrivateKey in its usage (verifying signatures, not encrypting) *