Searched refs:EncryptedPrivateKeyInfo (Results 1 - 3 of 3) sorted by relevance

/libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
H A DEncryptedPrivateKeyInfoTest.java44 import javax.crypto.EncryptedPrivateKeyInfo;
57 * Test for EncryptedPrivateKeyInfo class.
206 EncryptedPrivateKeyInfo epki;
208 epki = new EncryptedPrivateKeyInfo(algName[i][0], g.ct());
210 epki = new EncryptedPrivateKeyInfo(g.ap(), g.ct());
227 * Test #1 for <code>EncryptedPrivateKeyInfo(byte[])</code> constructor
229 * Assertion: creates <code>EncryptedPrivateKeyInfo</code> instance <br>
237 new EncryptedPrivateKeyInfo(EncryptedPrivateKeyInfoData
242 * Test #2 for <code>EncryptedPrivateKeyInfo(byte[])</code> constructor
254 new EncryptedPrivateKeyInfo(nul
[all...]
/libcore/ojluni/src/main/java/javax/crypto/
H A DEncryptedPrivateKeyInfo.java37 * This class implements the <code>EncryptedPrivateKeyInfo</code> type
42 * EncryptedPrivateKeyInfo ::= SEQUENCE {
58 public class EncryptedPrivateKeyInfo { class
70 * Constructs (i.e., parses) an <code>EncryptedPrivateKeyInfo</code> from
77 public EncryptedPrivateKeyInfo(byte[] encoded) method in class:EncryptedPrivateKeyInfo
107 * Constructs an <code>EncryptedPrivateKeyInfo</code> from the
113 * e.g. EncryptedPrivateKeyInfo(AlgorithmParameters, byte[]),
131 public EncryptedPrivateKeyInfo(String algName, byte[] encryptedData) method in class:EncryptedPrivateKeyInfo
154 * Constructs an <code>EncryptedPrivateKeyInfo</code> from the
161 * <code>EncryptedPrivateKeyInfo</cod
172 public EncryptedPrivateKeyInfo(AlgorithmParameters algParams, method in class:EncryptedPrivateKeyInfo
[all...]
/libcore/luni/src/test/java/libcore/java/security/
H A DProviderTest.java56 import javax.crypto.EncryptedPrivateKeyInfo;
763 EncryptedPrivateKeyInfo epki1 = new EncryptedPrivateKeyInfo("OID.1.2.840.113549.1.1.5",
779 new EncryptedPrivateKeyInfo("nonexistent", new byte[1]);
784 EncryptedPrivateKeyInfo epki2 = new EncryptedPrivateKeyInfo("OID.1.2.840.113549.1.1.5", new byte[1]);
803 EncryptedPrivateKeyInfo epki2 = new EncryptedPrivateKeyInfo("OID.1.2.9999.9999.9999", new byte[1]);

Completed in 73 milliseconds