Uses of Class
net.i2p.crypto.EncType
-
Packages that use EncType Package Description net.i2p.crypto These classes provide a number of low-level cryptographic routines.net.i2p.data These classes define the common data structures used by the various I2P protocols.net.i2p.router The I2P router application handles the I2P network communication. -
-
Uses of EncType in net.i2p.crypto
Methods in net.i2p.crypto that return EncType Modifier and Type Method Description static EncTypeEncType. getByCode(int code)static EncTypeEncType. parseEncType(String stype)Convenience for user appsstatic EncTypeEncType. valueOf(String name)Returns the enum constant of this type with the specified name.static EncType[]EncType. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in net.i2p.crypto with parameters of type EncType Modifier and Type Method Description KeyPairKeyGenerator. generatePKIKeys(EncType type)Supports EncTypes -
Uses of EncType in net.i2p.data
Methods in net.i2p.data that return EncType Modifier and Type Method Description EncTypeKeyCertificate. getEncType()EncTypeKeysAndCert. getEncType()EncTypePrivateKey. getType()EncTypePublicKey. getType()Method parameters in net.i2p.data with type arguments of type EncType Modifier and Type Method Description PublicKeyEncryptedLeaseSet. getEncryptionKey(Set<EncType> supported)If more than one key, return the first supported one.PublicKeyLeaseSet. getEncryptionKey(Set<EncType> supported)If more than one key, return the first supported one.PublicKeyLeaseSet2. getEncryptionKey(Set<EncType> supported)If more than one key, return the first supported one.Constructors in net.i2p.data with parameters of type EncType Constructor Description KeyCertificate(SigType type, EncType etype)A KeyCertificate with crypto type and the signature type as specified.PrivateKey(EncType type)PrivateKey(EncType type, byte[] data)PrivateKey(EncType type, byte[] data, PublicKey pubKey)PublicKey(EncType type)PublicKey(EncType type, byte[] data) -
Uses of EncType in net.i2p.router
Fields in net.i2p.router with type parameters of type EncType Modifier and Type Field Description static Set<EncType>LeaseSetKeys. SET_ELGUnmodifiable, ElGamal onlyMethods in net.i2p.router that return types with arguments of type EncType Modifier and Type Method Description Set<EncType>LeaseSetKeys. getSupportedEncryption()What types of encryption are supported?Methods in net.i2p.router with parameters of type EncType Modifier and Type Method Description PrivateKeyLeaseSetKeys. getDecryptionKey(EncType type)Decryption key which can open up garlic messages encrypted to the LeaseSet's public key.booleanLeaseSetKeys. isSupported(EncType type)Do we support this type of encryption?
-