Name

DESKeySpec

Synopsis

This class is a transparent representation of a DES key. The key is eight bytes long.

javax.crypto.spec.DESKeySpec

Figure 17-16. javax.crypto.spec.DESKeySpec

public class DESKeySpec implements java.security.spec.KeySpec {
// Public Constructors
     public DESKeySpec(byte[ ] key) throws java.security.InvalidKeyException;  
     public DESKeySpec(byte[ ] key, int offset) throws java.security.InvalidKeyException;  
// Public Constants
     public static final int DES_KEY_LEN;                                =8
                  // Public Class Methods
     public static boolean isParityAdjusted(byte[ ] key, int offset) 
        throws java.security.InvalidKeyException;  
     public static boolean isWeak(byte[ ] key, int offset) 
        throws java.security.InvalidKeyException;  
// Public Instance Methods
     public byte[ ] getKey( );  
}

Get Java in a Nutshell, 5th Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.