Searched refs:subjectPublicKey (Results 1 - 5 of 5) sorted by relevance

/libcore/luni/src/main/java/java/security/cert/
H A DPKIXCertPathValidatorResult.java35 private final PublicKey subjectPublicKey; field in class:PKIXCertPathValidatorResult
46 * @param subjectPublicKey
50 PolicyNode policyTree, PublicKey subjectPublicKey) {
53 this.subjectPublicKey = subjectPublicKey;
57 if (this.subjectPublicKey == null) {
58 throw new NullPointerException("subjectPublicKey == null");
77 return subjectPublicKey;
118 sb.append(subjectPublicKey.toString());
49 PKIXCertPathValidatorResult(TrustAnchor trustAnchor, PolicyNode policyTree, PublicKey subjectPublicKey) argument
H A DPKIXCertPathBuilderResult.java43 * @param subjectPublicKey
50 PolicyNode policyTree, PublicKey subjectPublicKey) {
51 super(trustAnchor, policyTree, subjectPublicKey);
49 PKIXCertPathBuilderResult(CertPath certPath, TrustAnchor trustAnchor, PolicyNode policyTree, PublicKey subjectPublicKey) argument
H A DX509CertSelector.java62 private byte[] subjectPublicKey; field in class:X509CertSelector
513 subjectPublicKey = (key == null) ? null : key.getEncoded();
528 subjectPublicKey = null;
532 subjectPublicKey = new byte[key.length];
533 System.arraycopy(key, 0, subjectPublicKey, 0, key.length);
1030 if (this.subjectPublicKey != null) {
1031 result.append("\n subjectPublicKey: ")
1032 .append(Array.getBytesAsString(subjectPublicKey));
1184 if (subjectPublicKey != null) {
1185 if (!Arrays.equals(subjectPublicKey,
[all...]
/libcore/luni/src/main/java/org/apache/harmony/security/x509/
H A DSubjectPublicKeyInfo.java48 * subjectPublicKey BIT STRING
55 /** the value of subjectPublicKey field of the structure */
56 private byte[] subjectPublicKey; field in class:SubjectPublicKeyInfo
64 public SubjectPublicKeyInfo(AlgorithmIdentifier algID, byte[] subjectPublicKey) { argument
65 this(algID, subjectPublicKey, 0);
68 public SubjectPublicKeyInfo(AlgorithmIdentifier algID, byte[] subjectPublicKey, int unused) { argument
69 this(algID, subjectPublicKey, 0, null);
73 byte[] subjectPublicKey, int unused,
76 this.subjectPublicKey = subjectPublicKey;
72 SubjectPublicKeyInfo(AlgorithmIdentifier algID, byte[] subjectPublicKey, int unused, byte[] encoding) argument
[all...]
/libcore/luni/src/test/java/tests/security/cert/
H A DPKIXCertPathValidatorResultTest.java284 PolicyNode policyTree, PublicKey subjectPublicKey, byte[] enc) {
285 super(trustAnchor, policyTree, subjectPublicKey);
283 MyPKIXCertPathBuilderResult(TrustAnchor trustAnchor, PolicyNode policyTree, PublicKey subjectPublicKey, byte[] enc) argument

Completed in 83 milliseconds