if (key.length > 255) { throw new IllegalArgumentException("RC5 key length can be no greater than 255"); } this.key = new byte[key.length]; this.rounds = rounds; System.arraycopy(key, 0, this.key, 0, key.length);
return key;
return rounds;