1 7 8 15 16 package javax.crypto.spec; 17 18 import java.security.spec.AlgorithmParameterSpec; 19 20 38 public class RC5ParameterSpec implements AlgorithmParameterSpec 39 { 40 41 49 public RC5ParameterSpec(int version, int rounds, int wordSize) { } 50 51 68 public RC5ParameterSpec(int version, int rounds, int wordSize, byte[] iv) 69 { } 70 71 94 public RC5ParameterSpec(int version, int rounds, int wordSize, byte[] iv, 95 int offset) 96 { } 97 98 103 public int getVersion() { 104 return 0; 105 } 106 107 112 public int getRounds() { 113 return 0; 114 } 115 116 121 public int getWordSize() { 122 return 0; 123 } 124 125 131 public byte[] getIV() { 132 return null; 133 } 134 135 146 public boolean equals(Object obj) { 147 return false; 148 } 149 150 154 public int hashCode() { 155 return 0; 156 } 157 } 158 | Popular Tags |