HomeSort by relevance Sort by last modified time
    Searched refs:UniqueIdentity (Results 1 - 6 of 6) sorted by null

  /libcore/ojluni/src/main/java/sun/security/x509/
CertificateIssuerUniqueIdentity.java 44 private UniqueIdentity id;
60 * @param key the UniqueIdentity
62 public CertificateIssuerUniqueIdentity(UniqueIdentity id) {
69 * @param in the DerInputStream to read the UniqueIdentity from.
74 id = new UniqueIdentity(in);
80 * @param in the InputStream to read the UniqueIdentity from.
86 id = new UniqueIdentity(val);
92 * @param in the DerValue to read the UniqueIdentity from.
97 id = new UniqueIdentity(val);
125 if (!(obj instanceof UniqueIdentity)) {
    [all...]
CertificateSubjectUniqueIdentity.java 54 private UniqueIdentity id;
59 * @param key the UniqueIdentity
61 public CertificateSubjectUniqueIdentity(UniqueIdentity id) {
68 * @param in the DerInputStream to read the UniqueIdentity from.
73 id = new UniqueIdentity(in);
79 * @param in the InputStream to read the UniqueIdentity from.
85 id = new UniqueIdentity(val);
91 * @param in the DerValue to read the UniqueIdentity from.
96 id = new UniqueIdentity(val);
124 if (!(obj instanceof UniqueIdentity)) {
    [all...]
UniqueIdentity.java 34 * This class defines the UniqueIdentity class used by certificates.
39 public class UniqueIdentity {
48 public UniqueIdentity(BitArray id) {
57 public UniqueIdentity(byte[] id) {
64 * @param in the DerInputStream to read the UniqueIdentity from.
67 public UniqueIdentity(DerInputStream in) throws IOException {
79 public UniqueIdentity(DerValue derVal) throws IOException {
84 * Return the UniqueIdentity as a printable string.
87 return ("UniqueIdentity:" + id.toString() + "\n");
91 * Encode the UniqueIdentity in DER form to the stream
    [all...]
X509CertInfo.java 93 protected UniqueIdentity issuerUniqueId = null;
94 protected UniqueIdentity subjectUniqueId = null;
682 issuerUniqueId = new UniqueIdentity(tmp);
690 subjectUniqueId = new UniqueIdentity(tmp);
918 if (!(val instanceof UniqueIdentity)) {
922 issuerUniqueId = (UniqueIdentity)val;
935 if (!(val instanceof UniqueIdentity)) {
939 subjectUniqueId = (UniqueIdentity)val;
    [all...]
X509CertImpl.java     [all...]
  /libcore/
openjdk_java_files.mk     [all...]

Completed in 68 milliseconds