Uses of Class
javax0.license3j.crypto.LicenseKeyPair
-
Packages that use LicenseKeyPair Package Description javax0.license3j.crypto javax0.license3j.io -
-
Uses of LicenseKeyPair in javax0.license3j.crypto
Methods in javax0.license3j.crypto that return LicenseKeyPair Modifier and Type Method Description static LicenseKeyPair
LicenseKeyPair.Create. from(byte[] privateEncoded, byte[] publicEncoded)
Create a newLicenseKeyPair
from the public and the private key pairs.static LicenseKeyPair
LicenseKeyPair.Create. from(byte[] encoded, int type)
Create a newLicenseKeyPair
that contains only one of the keys, either the private or the public.static LicenseKeyPair
LicenseKeyPair.Create. from(java.lang.String cipher, int size)
Create a new key pair using the algorithm and the size for the key.static LicenseKeyPair
LicenseKeyPair.Create. from(java.security.KeyPair keyPair, java.lang.String cipher)
Create a new key pair.static LicenseKeyPair
LicenseKeyPair.Create. from(java.security.PublicKey publicKey, java.security.PrivateKey privateKey, java.lang.String cipher)
Create a new key pair. -
Uses of LicenseKeyPair in javax0.license3j.io
Methods in javax0.license3j.io that return LicenseKeyPair Modifier and Type Method Description LicenseKeyPair
KeyPairReader. readPrivate()
LicenseKeyPair
KeyPairReader. readPrivate(IOFormat format)
LicenseKeyPair
KeyPairReader. readPublic()
LicenseKeyPair
KeyPairReader. readPublic(IOFormat format)
Methods in javax0.license3j.io with parameters of type LicenseKeyPair Modifier and Type Method Description void
KeyPairWriter. write(LicenseKeyPair pair, IOFormat format)
Write the key pair into the output files.
-