Uses of Class
com.dstc.security.keymanage.PKCS8Exception

Packages that use PKCS8Exception
com.dstc.security.keymanage This package defines private key protection classes. 
 

Uses of PKCS8Exception in com.dstc.security.keymanage
 

Methods in com.dstc.security.keymanage that throw PKCS8Exception
 void PKCS8EncryptedPrivateKey.encrypt(char[] password)
           Encrypt the PKCS8EncryptedPrivateKey object using the given password.
 void PKCS8EncryptedPrivateKey.encrypt(PBEKeySpec keySpec)
           Encrypt the PKCS8EncryptedPrivateKey object using the PBEKeySpec object.
 void PKCS8EncryptedPrivateKey.decrypt(char[] password)
           Decrypt the PKCS8EncryptedPrivateKey object using the given password.
 void PKCS8EncryptedPrivateKey.decrypt(PBEKeySpec keySpec)
           Decrypt the PKCS8EncryptedPrivateKey object using the PBEKeySpec object.
 byte[] PKCS8EncryptedPrivateKey.getEncoded()
           Returns the DER encoding of this PKCS8EncryptedPrivateKey object.
 PrivateKey PKCS8EncryptedPrivateKey.getPrivateKey()
           Returns the PrivateKey associated with this object.
 

Constructors in com.dstc.security.keymanage that throw PKCS8Exception
PKCS8EncryptedPrivateKey.PKCS8EncryptedPrivateKey(InputStream is)
           Construct a PKCS8EncryptedPrivateKey object from an InputStream .
PKCS8EncryptedPrivateKey.PKCS8EncryptedPrivateKey(byte[] encoded)
           Construct a PKCS8EncryptedPrivateKey object from a byte array.