/**@class java.security.spec.X509EncodedKeySpec
@extends java.security.spec.EncodedKeySpec

 This class represents the ASN.1 encoding of a public key,
 encoded according to the ASN.1 type {@code SubjectPublicKeyInfo}.
 The {@code SubjectPublicKeyInfo} syntax is defined in the X.509
 standard as follows:

 <pre>
 SubjectPublicKeyInfo ::= SEQUENCE {
   algorithm AlgorithmIdentifier,
   subjectPublicKey BIT STRING }
 </pre>

 @author Jan Luehe


 @see java.security.Key
 @see java.security.KeyFactory
 @see KeySpec
 @see EncodedKeySpec
 @see PKCS8EncodedKeySpec

 @since 1.2
*/
var X509EncodedKeySpec = {

/**Returns the key bytes, encoded according to the X.509 standard.
@return {Number} the X.509 encoding of the key. Returns a new array
 each time this method is called.
*/
getEncoded : function(  ) {},

/**Returns the name of the encoding format associated with this
 key specification.
@return {String} the string {@code "X.509"}.
*/
getFormat : function(  ) {},


};