Uses of Class
net.i2p.data.Signature

Packages that use Signature
net.i2p.client.streaming Implements a TCP-like (reliable, authenticated, in order) set of sockets for communicating over the IP-like (unreliable, unauthenticated, unordered) I2P messages. 
net.i2p.crypto   
net.i2p.data   
net.i2p.data.i2cp   
net.i2p.data.i2np   
 

Uses of Signature in net.i2p.client.streaming
 

Methods in net.i2p.client.streaming that return Signature
 Signature Packet.getOptionalSignature()
          the signature on the packet (only included if the flag for it is set)
 

Methods in net.i2p.client.streaming with parameters of type Signature
 void Packet.setOptionalSignature(Signature sig)
           
 

Uses of Signature in net.i2p.crypto
 

Methods in net.i2p.crypto that return Signature
 Signature DummyDSAEngine.sign(byte[] data, SigningPrivateKey signingKey)
           
 Signature DSAEngine.sign(byte[] data, SigningPrivateKey signingKey)
           
 Signature DSAEngine.sign(byte[] data, int offset, int length, SigningPrivateKey signingKey)
           
 

Methods in net.i2p.crypto with parameters of type Signature
 boolean DummyDSAEngine.verifySignature(Signature signature, byte[] signedData, SigningPublicKey verifyingKey)
           
 boolean DSAEngine.verifySignature(Signature signature, byte[] signedData, SigningPublicKey verifyingKey)
           
 boolean DSAEngine.verifySignature(Signature signature, byte[] signedData, int offset, int size, SigningPublicKey verifyingKey)
           
 

Uses of Signature in net.i2p.data
 

Methods in net.i2p.data that return Signature
 Signature RouterInfo.getSignature()
          Retrieve the proof that the identity stands behind the info here
 Signature LeaseSet.getSignature()
           
 

Methods in net.i2p.data with parameters of type Signature
 void RouterInfo.setSignature(Signature signature)
          Configure the proof that the entity stands behind the info here
 void LeaseSet.setSignature(Signature sig)
           
 

Uses of Signature in net.i2p.data.i2cp
 

Methods in net.i2p.data.i2cp that return Signature
 Signature SessionConfig.getSignature()
           
 

Methods in net.i2p.data.i2cp with parameters of type Signature
 void SessionConfig.setSignature(Signature sig)
           
 

Uses of Signature in net.i2p.data.i2np
 

Methods in net.i2p.data.i2np that return Signature
 Signature TunnelVerificationStructure.getAuthorizationSignature()
           
 

Methods in net.i2p.data.i2np with parameters of type Signature
 void TunnelVerificationStructure.setAuthorizationSignature(Signature sig)
           
 

Constructors in net.i2p.data.i2np with parameters of type Signature
TunnelVerificationStructure(Hash messageHash, Signature authSig)