1 7 8 15 16 package javax.crypto.spec; 17 18 import java.security.spec.KeySpec; 19 20 55 public class PBEKeySpec implements KeySpec 56 { 57 58 67 public PBEKeySpec(char[] password) { } 68 69 88 public PBEKeySpec(char[] password, byte[] salt, int iterationCount, int 89 keyLength) 90 { } 91 92 108 public PBEKeySpec(char[] password, byte[] salt, int iterationCount) { } 109 110 114 public final void clearPassword() { } 115 116 127 public final char[] getPassword() { 128 return null; 129 } 130 131 140 public final byte[] getSalt() { 141 return null; 142 } 143 144 149 public final int getIterationCount() { 150 return 0; 151 } 152 153 162 public final int getKeyLength() { 163 return 0; 164 } 165 } 166 | Popular Tags |