Searched defs:wordSize (Results 1 - 1 of 1) sorted by relevance

/libcore/luni/src/main/java/javax/crypto/spec/
H A DRC5ParameterSpec.java31 private final int wordSize; field in class:RC5ParameterSpec
42 * @param wordSize
45 public RC5ParameterSpec(int version, int rounds, int wordSize) { argument
48 this.wordSize = wordSize;
58 * <code>2 * (wordSize / 8)</code> bytes which are copied to protect them
65 * @param wordSize
71 * * (wordSize / 8)</code>.
73 public RC5ParameterSpec(int version, int rounds, int wordSize, byte[] iv) { argument
77 if (iv.length < 2 * (wordSize /
112 RC5ParameterSpec(int version, int rounds, int wordSize, byte[] iv, int offset) argument
[all...]

Completed in 86 milliseconds