Uses of Class
net.i2p.crypto.SessionKeyManager

Packages that use SessionKeyManager
net.i2p   
net.i2p.crypto   
net.i2p.router   
net.i2p.router.client   
net.i2p.router.message   
net.i2p.router.networkdb.kademlia   
 

Uses of SessionKeyManager in net.i2p
 

Methods in net.i2p that return SessionKeyManager
 SessionKeyManager I2PAppContext.sessionKeyManager()
          The session key manager which coordinates the sessionKey / sessionTag data.
 

Uses of SessionKeyManager in net.i2p.crypto
 

Subclasses of SessionKeyManager in net.i2p.crypto
 class TransientSessionKeyManager
          Implement the session key management, but keep everything in memory (don't write to disk).
 

Methods in net.i2p.crypto with parameters of type SessionKeyManager
 byte[] ElGamalAESEngine.decrypt(byte[] data, PrivateKey targetPrivateKey, SessionKeyManager keyManager)
          Decrypt the message using the given private key and using tags from the specified key manager.
 

Uses of SessionKeyManager in net.i2p.router
 

Methods in net.i2p.router that return SessionKeyManager
 SessionKeyManager DummyClientManagerFacade.getClientSessionKeyManager(Hash _dest)
           
abstract  SessionKeyManager ClientManagerFacade.getClientSessionKeyManager(Hash dest)
           
 

Uses of SessionKeyManager in net.i2p.router.client
 

Methods in net.i2p.router.client that return SessionKeyManager
 SessionKeyManager ClientManager.getClientSessionKeyManager(Hash dest)
          Return the client's SessionKeyManager Use this instead of the RouterContext.sessionKeyManager() to prevent correlation attacks across destinations
 SessionKeyManager ClientManagerFacadeImpl.getClientSessionKeyManager(Hash dest)
          Return the client's current manager or null if not connected
 SessionKeyManager ClientConnectionRunner.getSessionKeyManager()
          current client's sessionkeymanager
 

Uses of SessionKeyManager in net.i2p.router.message
 

Methods in net.i2p.router.message with parameters of type SessionKeyManager
static GarlicMessage GarlicMessageBuilder.buildMessage(RouterContext ctx, GarlicConfig config, SessionKey wrappedKey, java.util.Set<SessionTag> wrappedTags, int numTagsToDeliver, int lowTagsThreshold, boolean forceElGamal, SessionKeyManager skm)
          called by netdb
static GarlicMessage GarlicMessageBuilder.buildMessage(RouterContext ctx, GarlicConfig config, SessionKey wrappedKey, java.util.Set<SessionTag> wrappedTags, SessionKeyManager skm)
          called by OCMJH
 CloveSet GarlicMessageParser.getGarlicCloves(GarlicMessage message, PrivateKey encryptionKey, SessionKeyManager skm)
           
 

Uses of SessionKeyManager in net.i2p.router.networkdb.kademlia
 

Constructors in net.i2p.router.networkdb.kademlia with parameters of type SessionKeyManager
MessageWrapper.WrappedMessage(GarlicMessage msg, SessionKeyManager skm, PublicKey sentTo, SessionKey sentKey, TagSetHandle tsh)