Uses of Class
net.i2p.data.SigningPublicKey
-
Packages that use SigningPublicKey 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.net.i2p.router.startup The I2P startup package loads the configuration when I2P is started. -
-
Uses of SigningPublicKey in net.i2p.crypto
Methods in net.i2p.crypto that return SigningPublicKey Modifier and Type Method Description static SigningPublicKeySigUtil. fromJavaKey(DSAPublicKey pk)static SigningPublicKeySigUtil. fromJavaKey(ECPublicKey pk, SigType type)static SigningPublicKeySigUtil. fromJavaKey(RSAPublicKey pk, SigType type)static SigningPublicKeySigUtil. fromJavaKey(PublicKey pk)Use if SigType is unknown.static SigningPublicKeySigUtil. fromJavaKey(PublicKey pk, SigType type)Use if SigType is known.static SigningPublicKeySigUtil. fromJavaKey(EdDSAPublicKey pk, SigType type)static SigningPublicKeyKeyGenerator. getSigningPublicKey(SigningPrivateKey priv)Convert a SigningPrivateKey to a SigningPublicKey.Methods in net.i2p.crypto that return types with arguments of type SigningPublicKey Modifier and Type Method Description Map<SigningPublicKey,String>TrustedUpdate. getKeys()Methods in net.i2p.crypto with parameters of type SigningPublicKey Modifier and Type Method Description static DSAPublicKeySigUtil. toJavaDSAKey(SigningPublicKey pk)static ECPublicKeySigUtil. toJavaECKey(SigningPublicKey pk)static EdDSAPublicKeySigUtil. toJavaEdDSAKey(SigningPublicKey pk)static PublicKeySigUtil. toJavaKey(SigningPublicKey pk)static RSAPublicKeySigUtil. toJavaRSAKey(SigningPublicKey pk)Deprecated.unusedbooleanTrustedUpdate. verify(File signedFile, SigningPublicKey signingPublicKey)Verifies the DSA signature of a signed update file.booleanDSAEngine. verifySignature(Signature signature, byte[] signedData, int offset, int size, SigningPublicKey verifyingKey)Verify using any sig type as of 0.9.12 (DSA only prior to that)booleanDSAEngine. verifySignature(Signature signature, byte[] signedData, SigningPublicKey verifyingKey)Verify using any sig type.booleanDSAEngine. verifySignature(Signature signature, InputStream in, SigningPublicKey verifyingKey)Verify using DSA-SHA1 ONLYbooleanDSAEngine. verifySignature(Signature signature, SHA1Hash hash, SigningPublicKey verifyingKey)Verify using DSA-SHA1 ONLYbooleanDSAEngine. verifySignature(Signature signature, Hash hash, SigningPublicKey verifyingKey)Nonstandard.booleanDSAEngine. verifySignature(Signature signature, SimpleDataStructure hash, SigningPublicKey verifyingKey)Generic signature type. -
Uses of SigningPublicKey in net.i2p.data
Fields in net.i2p.data declared as SigningPublicKey Modifier and Type Field Description protected SigningPublicKeyKeysAndCert. _signingKeyMethods in net.i2p.data that return SigningPublicKey Modifier and Type Method Description static SigningPublicKeySigningPublicKey. create(byte[] data, int off)Pull from cache or return new.static SigningPublicKeySigningPublicKey. create(InputStream in)Pull from cache or return newSigningPublicKeyLeaseSet. getSigningKey()Deprecated.unusedprotected SigningPublicKeyDatabaseEntry. getSigningPublicKey()Identical to getDestination().getSigningPublicKey() in LeaseSet, and getIdentity().getSigningPublicKey() in RouterInfo.SigningPublicKeyKeysAndCert. getSigningPublicKey()SigningPublicKeySigningPrivateKey. toPublic()Converts this signing private key to its public equivalent.SigningPublicKeySigningPublicKey. toTypedKey(KeyCertificate kcert)Up-convert this from an untyped (type 0) SPK to a typed SPK based on the Key Cert given.Methods in net.i2p.data with parameters of type SigningPublicKey Modifier and Type Method Description static booleanPrivateKeyFile. checkSignature(Signature s, byte[] data, SigningPublicKey spk)voidLeaseSet. setSigningKey(SigningPublicKey key)The revocation key.voidKeysAndCert. setSigningPublicKey(SigningPublicKey key)booleanLeaseSet. verifySignature(SigningPublicKey signingKey)Deprecated.revocation unusedConstructors in net.i2p.data with parameters of type SigningPublicKey Constructor Description KeyCertificate(SigningPublicKey spk)A KeyCertificate with crypto type 0 (ElGamal) and the signature type and extra data from the given public key.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 SigningPublicKey in net.i2p.router
Methods in net.i2p.router that return SigningPublicKey Modifier and Type Method Description SigningPublicKeyKeyManager. getSigningPublicKey()Router keyMethods in net.i2p.router with parameters of type SigningPublicKey Modifier and Type Method Description voidKeyManager. setKeys(PublicKey key1, PrivateKey key2, SigningPublicKey key3, SigningPrivateKey key4)Configure the router's keys. -
Uses of SigningPublicKey in net.i2p.router.startup
Methods in net.i2p.router.startup with parameters of type SigningPublicKey Modifier and Type Method Description (package private) static CertificateCreateRouterInfoJob. createCertificate(RouterContext ctx, SigningPublicKey spk)Only called at startup via LoadRouterInfoJob and RebuildRouterInfoJob.
-