/**@class java.security.interfaces.ECKey
 The interface to an elliptic curve (EC) key.

 @author Valerie Peng

 @since 1.5
*/
var ECKey = {

/**Returns the domain parameters associated
 with this key. The domain parameters are
 either explicitly specified or implicitly
 created during key generation.
@return {Object {java.security.spec.ECParameterSpec}} the associated domain parameters.
*/
getParams : function(  ) {},


};