/**@class javax.crypto.spec.RC5ParameterSpec
 implements java.security.spec.AlgorithmParameterSpec

@extends java.lang.Object

 This class specifies the parameters used with the
 <a href="http://www.ietf.org/rfc/rfc2040.txt"><i>RC5</i></a>
 algorithm.

 <p> The parameters consist of a version number, a rounds count, a word
 size, and optionally an initialization vector (IV) (only in feedback mode).

 <p> This class can be used to initialize a <code>Cipher</code> object that
 implements the <i>RC5</i> algorithm as supplied by
 <a href="http://www.rsasecurity.com">RSA Security Inc.</a>,
 or any parties authorized by RSA Security.

 @author Jan Luehe

 @since 1.4
*/
var RC5ParameterSpec = {

/**Returns the version.
@return {Number} the version.
*/
getVersion : function(  ) {},

/**Returns the number of rounds.
@return {Number} the number of rounds.
*/
getRounds : function(  ) {},

/**Returns the word size in bits.
@return {Number} the word size in bits.
*/
getWordSize : function(  ) {},

/**Returns the IV or null if this parameter set does not contain an IV.
@return {Number} the IV or null if this parameter set does not contain an IV.
 Returns a new array each time this method is called.
*/
getIV : function(  ) {},

/**Tests for equality between the specified object and this
 object. Two RC5ParameterSpec objects are considered equal if their
 version numbers, number of rounds, word sizes, and IVs are equal.
 (Two IV references are considered equal if both are <tt>null</tt>.)
@param {Object {Object}} obj the object to test for equality with this object.
@return {Boolean} true if the objects are considered equal, false if
 <code>obj</code> is null or otherwise.
*/
equals : function(  ) {},

/**Calculates a hash code value for the object.
 Objects that are equal will also have the same hashcode.
*/
hashCode : function(  ) {},


};