Team LiB
Previous Section Next Section

KeyStore.SecretKeyEntryjava.security

Java 5.0

This KeyStore.Entry implementation represents a secret key. getSecretKey( ) returns the key as a javax.crypto.SecretKey.

public static final class KeyStore.SecretKeyEntry implements KeyStore.Entry {
// Public Constructors
     public SecretKeyEntry(javax.crypto.SecretKey secretKey);  
// Public Instance Methods
     public javax.crypto.SecretKey getSecretKey( );  
// Public Methods Overriding Object
     public String toString( );  
}

    Team LiB
    Previous Section Next Section