KickJava   Java API By Example, From Geeks To Geeks.

Java > Java SE, EE, ME > javacard > security > KeyPair

javacard.security
Class KeyPair

java.lang.Object
  |
  +--javacard.security.KeyPair
See Also:
PublicKey, PrivateKey

public static final byte ALG_DSA
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static final byte ALG_EC_F2M
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static final byte ALG_EC_FP
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static final byte ALG_RSA
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static final byte ALG_RSA_CRT
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public final void genKeyPair()
                      throws CryptoException
See Also:
DSAKey, ECKey, RSAPublicKey, Cipher, Signature, APDU
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public PrivateKey getPrivate()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public PublicKey getPublic()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public KeyPair(byte algorithm,
               short keyLength)
        throws CryptoException
See Also:
KeyEncryption, Cipher, Signature, KeyBuilder, ALG_RSA
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public KeyPair(PublicKey publicKey,
               PrivateKey privateKey)
        throws CryptoException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  

Popular Tags