Uses of Class
net.i2p.data.PrivateKey
Package
Description
Interfaces and factories for
the base I2P SDK used to develop applications that communicate
through I2P.
Implements the base I2P SDK for developing applications that communicate
through I2P.
These classes provide a number of low-level cryptographic routines.
DH for X25519.
These classes define the common data structures used by the various
I2P protocols.
The Invisible Internet Client Protocol (I2CP) allows applications simplified access to
the I2P network without requiring them to deal with the issues involved with the
Invisible Internet Network Protocol (I2NP).
This package defines the low-level messages sent between routers,
called the Invisible Internet Network Protocol (I2NP).
The I2P router application handles the I2P network communication.
Classes formerly in net.i2p.crypto but moved here as they are only used by the router.
Implementation of ECIES-X25519-AEAD-Ratchet (proposal 144).
Creates and parses garlic messages.
The I2P startup package loads the configuration when I2P is started.
Tunnel creation, tunnel build message handling.
-
Uses of PrivateKey in net.i2p.client
Modifier and TypeMethodDescriptionI2PSession.getDecryptionKey()
Retrieve the decryption PrivateKey associated with the Destination -
Uses of PrivateKey in net.i2p.client.impl
Modifier and TypeMethodDescriptionI2PSessionImpl.getDecryptionKey()
Retrieve the decryption PrivateKeyModifier and TypeMethodDescriptionvoid
I2CPMessageProducer.createLeaseSet
(I2PSessionImpl session, LeaseSet leaseSet, SigningPrivateKey signingPriv, List<PrivateKey> privs) In response to a RequestLeaseSet Message from the router, send a CreateLeaseset Message back to the router. -
Uses of PrivateKey in net.i2p.crypto
Modifier and TypeMethodDescriptionbyte[]
ElGamalEngine.decrypt
(byte[] encrypted, PrivateKey privateKey) Decrypt the datastatic PublicKey
KeyGenerator.getPublicKey
(PrivateKey priv) Convert a PrivateKey to its corresponding PublicKey. -
Uses of PrivateKey in net.i2p.crypto.x25519
Modifier and TypeMethodDescriptionstatic SessionKey
X25519DH.dh
(PrivateKey priv, PublicKey pub) DH -
Uses of PrivateKey in net.i2p.data
Modifier and TypeMethodDescriptionBlindData.getAuthPrivKey()
PrivateKeyFile.getPrivKey()
Private key may be random data or all zeros for Destinations as of 0.9.57Modifier and TypeMethodDescriptionvoid
EncryptedLeaseSet.setClientPrivateKey
(PrivateKey privKey) Must be set before verify for per-client auth.boolean
EncryptedLeaseSet.verifySignature
(PrivateKey clientKey) Decrypt if possible, and verify inner sig also.ModifierConstructorDescriptionBlindData
(I2PAppContext ctx, Destination dest, SigType blindType, String secret, int authType, PrivateKey authKey) BlindData
(I2PAppContext ctx, SigningPublicKey spk, SigType blindType, String secret, int authType, PrivateKey authKey) PrivateKeyFile
(File file, Destination dest, PrivateKey pk, SigningPrivateKey spk) PrivateKeyFile
(File file, PublicKey pubkey, SigningPublicKey spubkey, Certificate cert, PrivateKey pk, SigningPrivateKey spk) PrivateKeyFile
(File file, PublicKey pubkey, SigningPublicKey spubkey, Certificate cert, PrivateKey pk, SigningPrivateKey spk, byte[] padding) -
Uses of PrivateKey in net.i2p.data.i2cp
Modifier and TypeMethodDescriptionBlindingInfoMessage.getPrivateKey()
CreateLeaseSetMessage.getPrivateKey()
Modifier and TypeMethodDescriptionCreateLeaseSet2Message.getPrivateKeys()
This returns all the keys.Modifier and TypeMethodDescriptionvoid
CreateLeaseSet2Message.addPrivateKey
(PrivateKey key) Add a private key.void
CreateLeaseSetMessage.setPrivateKey
(PrivateKey privateKey) ModifierConstructorDescriptionBlindingInfoMessage
(String h, SessionId id, int expiration, int authType, SigType blindType, PrivateKey privKey, String secret) Deprecated.unimplemented on router sideBlindingInfoMessage
(Destination d, SessionId id, int expiration, int authType, SigType blindType, PrivateKey privKey, String secret) BlindingInfoMessage
(Hash h, SessionId id, int expiration, int authType, SigType blindType, PrivateKey privKey, String secret) Deprecated.unimplemented on router sideBlindingInfoMessage
(SigningPublicKey s, SessionId id, int expiration, int authType, SigType blindType, PrivateKey privKey, String secret) -
Uses of PrivateKey in net.i2p.data.i2np
ModifierConstructorDescriptionBuildRequestRecord
(RouterContext ctx, PrivateKey ourKey, EncryptedBuildRecord encryptedRecord) Decrypt the data from the specified record, writing the decrypted record into this instance's data buffer Caller MUST check that first 16 bytes of our hash matches first 16 bytes of encryptedRecord before calling this. -
Uses of PrivateKey in net.i2p.router
Modifier and TypeMethodDescriptionLeaseSetKeys.getDecryptionKey()
Decryption key which can open up garlic messages encrypted to the LeaseSet's public key.LeaseSetKeys.getDecryptionKey
(EncType type) Decryption key which can open up garlic messages encrypted to the LeaseSet's public key.KeyManager.getPrivateKey()
Router keyModifier and TypeMethodDescriptionvoid
KeyManager.registerKeys
(Destination dest, SigningPrivateKey leaseRevocationPrivateKey, PrivateKey endpointDecryptionKey) Client with a single keyvoid
KeyManager.setKeys
(PublicKey key1, PrivateKey key2, SigningPublicKey key3, SigningPrivateKey key4) Configure the router's keys.Modifier and TypeMethodDescriptionvoid
KeyManager.registerKeys
(Destination dest, SigningPrivateKey leaseRevocationPrivateKey, List<PrivateKey> endpointDecryptionKeys) Client with multiple keysModifierConstructorDescriptionLeaseSetKeys
(Destination dest, SigningPrivateKey revocationKey, PrivateKey decryptionKey) Client with a single keyModifierConstructorDescriptionLeaseSetKeys
(Destination dest, SigningPrivateKey revocationKey, List<PrivateKey> decryptionKeys) Client with multiple keys -
Uses of PrivateKey in net.i2p.router.crypto
Modifier and TypeMethodDescriptionbyte[]
ElGamalAESEngine.decrypt
(byte[] data, PrivateKey targetPrivateKey) Deprecated.specify the key manager!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.byte[]
ElGamalAESEngine.decryptFast
(byte[] data, PrivateKey targetPrivateKey, SessionKeyManager keyManager) Tags only.byte[]
ElGamalAESEngine.decryptSlow
(byte[] data, PrivateKey targetPrivateKey, SessionKeyManager keyManager) Full ElG only. -
Uses of PrivateKey in net.i2p.router.crypto.ratchet
Modifier and TypeMethodDescription(package private) static final PrivateKey
ECIESAEADEngine.doDH
(PrivateKey privkey, PublicKey pubkey) Modifier and TypeMethodDescriptionECIESAEADEngine.decrypt
(byte[] data, PrivateKey elgKey, PrivateKey ecKey, MuxedSKM keyManager) Try to decrypt the message with one or both of the given private keysECIESAEADEngine.decrypt
(byte[] data, PrivateKey targetPrivateKey, RatchetSKM keyManager) Decrypt the message using the given private key and using tags from the specified key manager.MuxedEngine.decrypt
(byte[] data, PrivateKey elgKey, PrivateKey ecKey, MuxedSKM keyManager) Decrypt the message with the given private keys(package private) CloveSet
ECIESAEADEngine.decryptFast
(byte[] data, PrivateKey targetPrivateKey, RatchetSKM keyManager) NSR/ES only.(package private) CloveSet
ECIESAEADEngine.decryptSlow
(byte[] data, PrivateKey targetPrivateKey, RatchetSKM keyManager) NS only.(package private) static final PrivateKey
ECIESAEADEngine.doDH
(PrivateKey privkey, PublicKey pubkey) byte[]
ECIESAEADEngine.encrypt
(CloveSet cloves, PublicKey target, Destination to, PrivateKey priv, RatchetSKM keyManager, ReplyCallback callback) Encrypt the data to the target using the given key and deliver the specified tags No new session key This is the one called from GarlicMessageBuilder and is the primary entry point.ModifierConstructorDescriptionElg2KeyPair
(PublicKey publicKey, PrivateKey privateKey, byte[] enc) -
Uses of PrivateKey in net.i2p.router.message
Modifier and TypeMethodDescription(package private) CloveSet
GarlicMessageParser.getGarlicCloves
(GarlicMessage message, PrivateKey encryptionKey, SessionKeyManager skm) Supports both ELGAMAL_2048 and ECIES_X25519.(package private) CloveSet
GarlicMessageParser.getGarlicCloves
(GarlicMessage message, PrivateKey elgKey, PrivateKey ecKey, SessionKeyManager skm) Supports both ELGAMAL_2048 and ECIES_X25519. -
Uses of PrivateKey in net.i2p.router.startup
-
Uses of PrivateKey in net.i2p.router.tunnel.pool
Modifier and TypeMethodDescriptionBuildMessageProcessor.decrypt
(TunnelBuildMessage msg, Hash ourHash, PrivateKey privKey) Decrypt the record targetting us, encrypting all of the other records with the included reply key and IV.