Home | History | Annotate | Download | only in cert

Lines Matching defs:subjectPublicKey

66  * subjectKeyIdentifier and/or the subjectPublicKey criteria.
105 private PublicKey subjectPublicKey;
514 * Sets the subjectPublicKey criterion. The
516 * key. If {@code null}, no subjectPublicKey check will be done.
523 subjectPublicKey = null;
526 subjectPublicKey = key;
532 * Sets the subjectPublicKey criterion. The {@code X509Certificate}
534 * no subjectPublicKey check will be done.
545 * subjectPublicKey BIT STRING }
566 subjectPublicKey = null;
570 subjectPublicKey = X509Key.parse(new DerValue(subjectPublicKeyBytes));
1520 * Returns the subjectPublicKey criterion. The
1522 * public key. If {@code null}, no subjectPublicKey check will be done.
1528 return subjectPublicKey;
1861 if (subjectPublicKey != null) {
1863 subjectPublicKey.toString() + "\n");