1 7 8 15 16 package javax.crypto.spec; 17 18 import java.math.BigInteger; 19 import java.security.spec.AlgorithmParameterSpec; 20 21 32 public class PBEParameterSpec implements AlgorithmParameterSpec 33 { 34 35 44 public PBEParameterSpec(byte[] salt, int iterationCount) { } 45 46 52 public byte[] getSalt() { 53 return null; 54 } 55 56 61 public int getIterationCount() { 62 return 0; 63 } 64 } 65 | Popular Tags |