I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit d308d7da authored by zzz's avatar zzz
Browse files

remove unnecessary zeroing code, javadoc

parent 4d340786
No related branches found
No related tags found
No related merge requests found
......@@ -11,18 +11,18 @@ package net.i2p.data;
/**
* Defines the signature as defined by the I2P data structure spec.
* A signature is a 40byte Integer verifying the authenticity of some data
* using the algorithm defined in the crypto spec.
* A signature is a 40-byte array verifying the authenticity of some data
* using the DSA-SHA1 algorithm.
*
* The signature is the 20-byte R followed by the 20-byte S,
* both are unsigned integers.
*
* @author jrandom
*/
public class Signature extends SimpleDataStructure {
public final static int SIGNATURE_BYTES = 40;
/** all zeros */
public final static byte[] FAKE_SIGNATURE = new byte[SIGNATURE_BYTES];
static {
for (int i = 0; i < SIGNATURE_BYTES; i++)
FAKE_SIGNATURE[i] = 0x00;
}
public Signature() {
super();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment