Searched defs:getEncoded (Results 1 - 25 of 57) sorted by relevance

123

/openjdk7/jdk/src/share/classes/java/security/
H A DKey.java51 * is returned using the {@link #getEncoded() getEncoded} method.
152 public byte[] getEncoded(); method in interface:Key
H A DAlgorithmParameters.java47 * obtained via a call to <code>getEncoded</code>.
356 public final byte[] getEncoded() throws IOException method in class:AlgorithmParameters
378 public final byte[] getEncoded(String format) throws IOException method in class:AlgorithmParameters
/openjdk7/jdk/src/share/classes/java/security/spec/
H A DEncodedKeySpec.java65 public byte[] getEncoded() { method in class:EncodedKeySpec
H A DPKCS8EncodedKeySpec.java83 public byte[] getEncoded() { method in class:PKCS8EncodedKeySpec
84 return super.getEncoded();
H A DX509EncodedKeySpec.java73 public byte[] getEncoded() { method in class:X509EncodedKeySpec
74 return super.getEncoded();
/openjdk7/jdk/test/java/security/cert/PKIXParameters/
H A DInvalidParameters.java80 public byte[] getEncoded() { return null; } method in class:InvalidParameters.TestPublicKey
/openjdk7/jdk/test/sun/security/pkcs11/Secmod/
H A DJksSetPrivateKey.java99 public byte[] getEncoded() { method in class:DummyPrivateKey
113 public byte[] getEncoded() { method in class:DummyPrivateKey2
/openjdk7/jdk/src/share/classes/javax/security/cert/
H A DCertificate.java82 byte[] thisCert = this.getEncoded();
83 byte[] otherCert = ((Certificate)other).getEncoded();
105 byte[] certData = this.getEncoded();
125 public abstract byte[] getEncoded() throws CertificateEncodingException; method in class:Certificate
/openjdk7/jdk/src/share/classes/java/security/cert/
H A DPolicyQualifierInfo.java137 public final byte[] getEncoded() { method in class:PolicyQualifierInfo
H A DX509CRLEntry.java86 byte[] thisCRLEntry = this.getEncoded();
87 byte[] otherCRLEntry = ((X509CRLEntry)other).getEncoded();
109 byte[] entryData = this.getEncoded();
126 public abstract byte[] getEncoded() throws CRLException; method in class:X509CRLEntry
H A DCertPath.java65 * {@link #getEncoded() getEncoded()} method, for instance).
252 public abstract byte[] getEncoded() method in class:CertPath
264 public abstract byte[] getEncoded(String encoding) method in class:CertPath
287 return new CertPathRep(type, getEncoded());
H A DCertificate.java147 public abstract byte[] getEncoded() method in class:Certificate
265 return new CertificateRep(type, getEncoded());
/openjdk7/jdk/src/share/classes/javax/crypto/spec/
H A DSecretKeySpec.java183 public byte[] getEncoded() { method in class:SecretKeySpec
229 byte[] thatKey = ((SecretKey)obj).getEncoded();
/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DBlockCipherParamsCore.java104 byte[] getEncoded() throws IOException { method in class:BlockCipherParamsCore
110 byte[] getEncoded(String encodingMethod) method in class:BlockCipherParamsCore
112 return getEncoded();
H A DEncryptedPrivateKeyInfo.java110 byte[] getEncoded() method in class:EncryptedPrivateKeyInfo
H A DDESKey.java78 public byte[] getEncoded() { method in class:DESKey
115 byte[] thatKey = ((SecretKey)obj).getEncoded();
144 getEncoded());
H A DDESedeKey.java80 public byte[] getEncoded() { method in class:DESedeKey
116 byte[] thatKey = ((SecretKey)obj).getEncoded();
145 getEncoded());
H A DPBEKey.java74 public byte[] getEncoded() { method in class:PBEKey
110 byte[] thatEncoded = that.getEncoded();
140 getEncoded());
/openjdk7/jdk/src/share/classes/sun/security/pkcs/
H A DEncryptedPrivateKeyInfo.java118 public byte[] getEncoded() method in class:EncryptedPrivateKeyInfo
145 byte[] thisEncrInfo = this.getEncoded();
147 = ((EncryptedPrivateKeyInfo)other).getEncoded();
/openjdk7/jdk/test/java/security/Provider/
H A DSupportsParameter.java136 public byte[] getEncoded() { return null; } method in class:SupportsParameter.MyKey
/openjdk7/jdk/test/javax/crypto/EncryptedPrivateKeyInfo/
H A DGetKeySpecException2.java101 public byte[] getEncoded() { method in class:MyPBEKey
/openjdk7/jdk/src/windows/classes/sun/security/mscapi/
H A DKey.java150 public byte[] getEncoded() method in class:Key
/openjdk7/jdk/test/com/sun/crypto/provider/Cipher/PBE/
H A DPKCS12Cipher.java110 public byte[] getEncoded() { return null; } method in class:MyPBEKey
/openjdk7/jdk/test/com/sun/crypto/provider/Mac/
H A DHmacSaltLengths.java105 public byte[] getEncoded() { return null; } method in class:MyPBEKey
/openjdk7/jdk/src/share/classes/sun/security/pkcs12/
H A DMacData.java110 // getEncoded() is called
140 // getEncoded() is called
167 public byte[] getEncoded() throws NoSuchAlgorithmException, IOException method in class:MacData

Completed in 45 milliseconds

123