Uses of Interface
net.i2p.crypto.TagSetHandle
-
Packages that use TagSetHandle Package Description net.i2p.crypto These classes provide a number of low-level cryptographic routines.net.i2p.router.crypto Classes formerly in net.i2p.crypto but moved here as they are only used by the router.net.i2p.router.crypto.ratchet Implementation of ECIES-X25519-AEAD-Ratchet (proposal 144).net.i2p.router.networkdb.kademlia The network database, including implementation of floodfills. -
-
Uses of TagSetHandle in net.i2p.crypto
Methods in net.i2p.crypto that return TagSetHandle Modifier and Type Method Description TagSetHandleSessionKeyManager. tagsDelivered(PublicKey target, SessionKey key, Set<SessionTag> sessionTags)Take note of the fact that the given sessionTags associated with the key for encryption to the target have definitely been received at the target (aka call this method after receiving an ack to a message delivering them)Methods in net.i2p.crypto with parameters of type TagSetHandle Modifier and Type Method Description voidSessionKeyManager. failTags(PublicKey target, SessionKey key, TagSetHandle ts)voidSessionKeyManager. tagsAcked(PublicKey target, SessionKey key, TagSetHandle ts) -
Uses of TagSetHandle in net.i2p.router.crypto
Methods in net.i2p.router.crypto that return TagSetHandle Modifier and Type Method Description TagSetHandleTransientSessionKeyManager. tagsDelivered(PublicKey target, SessionKey key, Set<SessionTag> sessionTags)Take note of the fact that the given sessionTags associated with the key for encryption to the target have been sent.Methods in net.i2p.router.crypto with parameters of type TagSetHandle Modifier and Type Method Description voidTransientSessionKeyManager. failTags(PublicKey target, SessionKey key, TagSetHandle ts)Mark these tags as invalid, since the peer has failed to ack them in time.voidTransientSessionKeyManager. tagsAcked(PublicKey target, SessionKey key, TagSetHandle ts)Mark these tags as acked, start to use them (if we haven't already) If the set was previously failed, it will be added back in. -
Uses of TagSetHandle in net.i2p.router.crypto.ratchet
Classes in net.i2p.router.crypto.ratchet that implement TagSetHandle Modifier and Type Class Description (package private) classRatchetTagSetA tagset class for one direction, either inbound or outbound.(package private) classSingleTagSetInbound ES tagset with a single tag and key.Methods in net.i2p.router.crypto.ratchet that return TagSetHandle Modifier and Type Method Description TagSetHandleMuxedSKM. tagsDelivered(PublicKey target, SessionKey key, Set<SessionTag> sessionTags)ElG onlyTagSetHandleRatchetSKM. tagsDelivered(PublicKey target, SessionKey key, Set<SessionTag> sessionTags)Methods in net.i2p.router.crypto.ratchet with parameters of type TagSetHandle Modifier and Type Method Description voidMuxedSKM. failTags(PublicKey target, SessionKey key, TagSetHandle ts)ElG onlyvoidRatchetSKM. failTags(PublicKey target, SessionKey key, TagSetHandle ts)voidMuxedSKM. tagsAcked(PublicKey target, SessionKey key, TagSetHandle ts)ElG onlyvoidRatchetSKM. tagsAcked(PublicKey target, SessionKey key, TagSetHandle ts) -
Uses of TagSetHandle in net.i2p.router.networkdb.kademlia
Constructors in net.i2p.router.networkdb.kademlia with parameters of type TagSetHandle Constructor Description WrappedMessage(GarlicMessage msg, SessionKeyManager skm, PublicKey sentTo, SessionKey sentKey, TagSetHandle tsh)
-