Module io.github.mmm.crypto
Class AsymmetricKeyPairEc<PR extends ECPrivateKey,PU extends ECPublicKey>
- java.lang.Object
-
- io.github.mmm.crypto.asymmetric.key.AbstractAsymmetricKeyPair<PR,PU>
-
- io.github.mmm.crypto.asymmetric.key.ec.AsymmetricKeyPairEc<PR,PU>
-
- Type Parameters:
PR
- type ofprivate key
.PU
- type ofpublic key
.
- All Implemented Interfaces:
AsymmetricKeyPair<PR,PU>
,KeySet
- Direct Known Subclasses:
AsymmetricKeyPairEcBc
,AsymmetricKeyPairEcJce
public class AsymmetricKeyPairEc<PR extends ECPrivateKey,PU extends ECPublicKey> extends AbstractAsymmetricKeyPair<PR,PU>
- Since:
- 1.0.0
- Author:
- Joerg Hohwiller (hohwille at users.sourceforge.net)
-
-
Field Summary
Fields Modifier and Type Field Description static String
ALGORITHM_EC
static String
FORMAT_UNCOMORESSED
Format for compact binary representation.-
Fields inherited from class io.github.mmm.crypto.asymmetric.key.AbstractAsymmetricKeyPair
privateKey, publicKey
-
-
Constructor Summary
Constructors Constructor Description AsymmetricKeyPairEc(PR privateKey, PU publicKey)
The constructor.
-
Method Summary
-
Methods inherited from class io.github.mmm.crypto.asymmetric.key.AbstractAsymmetricKeyPair
equals, getKeyPair, getPrivateKey, getPublicKey, hashCode
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface io.github.mmm.crypto.asymmetric.key.AsymmetricKeyPair
getKeys
-
-
-
-
Field Detail
-
ALGORITHM_EC
public static final String ALGORITHM_EC
- See Also:
- Constant Field Values
-
FORMAT_UNCOMORESSED
public static final String FORMAT_UNCOMORESSED
Format for compact binary representation.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
AsymmetricKeyPairEc
public AsymmetricKeyPairEc(PR privateKey, PU publicKey)
The constructor.- Parameters:
privateKey
- theprivate key
.publicKey
- thepublic key
.
-
-