Package net.i2p.crypto.elgamal
Class KeyFactory
- java.lang.Object
-
- java.security.KeyFactorySpi
-
- net.i2p.crypto.elgamal.KeyFactory
-
public final class KeyFactory extends KeyFactorySpi
Modified from eddsa- Since:
- 0.9.25
-
-
Constructor Summary
Constructors Constructor Description KeyFactory()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected PrivateKeyengineGeneratePrivate(KeySpec keySpec)Supports PKCS8EncodedKeySpecprotected PublicKeyengineGeneratePublic(KeySpec keySpec)Supports X509EncodedKeySpecprotected <T extends KeySpec>
TengineGetKeySpec(Key key, Class<T> keySpec)protected KeyengineTranslateKey(Key key)
-
-
-
Method Detail
-
engineGeneratePrivate
protected PrivateKey engineGeneratePrivate(KeySpec keySpec) throws InvalidKeySpecException
Supports PKCS8EncodedKeySpec- Specified by:
engineGeneratePrivatein classKeyFactorySpi- Throws:
InvalidKeySpecException
-
engineGeneratePublic
protected PublicKey engineGeneratePublic(KeySpec keySpec) throws InvalidKeySpecException
Supports X509EncodedKeySpec- Specified by:
engineGeneratePublicin classKeyFactorySpi- Throws:
InvalidKeySpecException
-
engineGetKeySpec
protected <T extends KeySpec> T engineGetKeySpec(Key key, Class<T> keySpec) throws InvalidKeySpecException
- Specified by:
engineGetKeySpecin classKeyFactorySpi- Throws:
InvalidKeySpecException
-
engineTranslateKey
protected Key engineTranslateKey(Key key) throws InvalidKeyException
- Specified by:
engineTranslateKeyin classKeyFactorySpi- Throws:
InvalidKeyException
-
-