/**@class javax.crypto.spec.PBEParameterSpec implements java.security.spec.AlgorithmParameterSpec @extends java.lang.Object This class specifies the set of parameters used with password-based encryption (PBE), as defined in the <a href="http://www.ietf.org/rfc/rfc2898.txt">PKCS #5</a> standard. @author Jan Luehe @since 1.4 */ var PBEParameterSpec = { /**Returns the salt. @return {Number} the salt. Returns a new array each time this method is called. */ getSalt : function( ) {}, /**Returns the iteration count. @return {Number} the iteration count */ getIterationCount : function( ) {}, /**Returns the cipher algorithm parameter specification. @return {Object {java.security.spec.AlgorithmParameterSpec}} the parameter specification, or null if none was set. @since 1.8 */ getParameterSpec : function( ) {}, };