home *** CD-ROM | disk | FTP | other *** search
/ S283 Planetary Science &n…he Search for Life DVD 2 / DVD-ROM.iso / install / jre1_3 / lib / rt.jar / java / security / spec / EncodedKeySpec.class (.txt) < prev    next >
Encoding:
Java Class File  |  1979-12-31  |  386 b   |  16 lines

  1. package java.security.spec;
  2.  
  3. public abstract class EncodedKeySpec implements KeySpec {
  4.    private byte[] encodedKey;
  5.  
  6.    public EncodedKeySpec(byte[] var1) {
  7.       this.encodedKey = (byte[])var1.clone();
  8.    }
  9.  
  10.    public byte[] getEncoded() {
  11.       return (byte[])this.encodedKey.clone();
  12.    }
  13.  
  14.    public abstract String getFormat();
  15. }
  16.