Searched refs:effectiveKeyBits (Results 1 - 2 of 2) sorted by relevance

/dalvik/libcore/crypto/src/main/java/javax/crypto/spec/
H A DRC2ParameterSpec.java31 private final int effectiveKeyBits; field in class:RC2ParameterSpec
38 * @param effectiveKeyBits
41 public RC2ParameterSpec(int effectiveKeyBits) { argument
42 this.effectiveKeyBits = effectiveKeyBits;
53 * @param effectiveKeyBits
60 public RC2ParameterSpec(int effectiveKeyBits, byte[] iv) { argument
67 this.effectiveKeyBits = effectiveKeyBits;
80 * @param effectiveKeyBits
90 RC2ParameterSpec(int effectiveKeyBits, byte[] iv, int offset) argument
[all...]
/dalvik/libcore/crypto/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/spec/
H A DRC2ParameterSpecTest.java46 * RC2ParameterSpec(int effectiveKeyBits, byte[] iv) method testing.
58 int effectiveKeyBits = 10;
62 new RC2ParameterSpec(effectiveKeyBits, null);
69 new RC2ParameterSpec(effectiveKeyBits, new byte[] {1, 2, 3, 4, 5});
75 RC2ParameterSpec ps = new RC2ParameterSpec(effectiveKeyBits, iv);
83 * RC2ParameterSpec(int effectiveKeyBits, byte[] iv, int offset) method
95 int effectiveKeyBits = 10;
100 new RC2ParameterSpec(effectiveKeyBits, null, offset);
107 new RC2ParameterSpec(effectiveKeyBits, iv, 4);
113 RC2ParameterSpec ps = new RC2ParameterSpec(effectiveKeyBits, i
[all...]

Completed in 52 milliseconds