1 7 8 15 16 package javax.crypto.spec; 17 18 import java.security.spec.AlgorithmParameterSpec; 19 20 36 public class RC2ParameterSpec implements AlgorithmParameterSpec 37 { 38 39 45 public RC2ParameterSpec(int effectiveKeyBits) { } 46 47 59 public RC2ParameterSpec(int effectiveKeyBits, byte[] iv) { } 60 61 78 public RC2ParameterSpec(int effectiveKeyBits, byte[] iv, int offset) { } 79 80 85 public int getEffectiveKeyBits() { 86 return 0; 87 } 88 89 95 public byte[] getIV() { 96 return null; 97 } 98 99 110 public boolean equals(Object obj) { 111 return false; 112 } 113 114 118 public int hashCode() { 119 return 0; 120 } 121 } 122 | Popular Tags |