Home | History | Annotate | Download | only in spec

Lines Matching refs:rounds

35  * <p> The parameters consist of a version number, a rounds count, a word
51 private int rounds;
56 * rounds and word size (in bits).
59 * @param rounds the number of rounds.
62 public RC5ParameterSpec(int version, int rounds, int wordSize) {
64 this.rounds = rounds;
70 * rounds, word size (in bits), and IV.
77 * @param rounds the number of rounds.
85 public RC5ParameterSpec(int version, int rounds, int wordSize, byte[] iv) {
86 this(version, rounds, wordSize, iv, 0);
91 * rounds, word size (in bits), and IV.
102 * @param rounds the number of rounds.
112 public RC5ParameterSpec(int version, int rounds, int wordSize,
115 this.rounds = rounds;
136 * Returns the number of rounds.
138 * @return the number of rounds.
141 return this.rounds;
166 * version numbers, number of rounds, word sizes, and IVs are equal.
184 (rounds == other.rounds) &&
200 retval += (version + rounds + wordSize);