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

  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
Certificate.java 42 * tbsCertificate TBSCertificate,
50 // the value of tbsCertificate field of the structure
51 private final TBSCertificate tbsCertificate;
61 * @param tbsCertificate: TBSCertificate
65 public Certificate(TBSCertificate tbsCertificate,
68 this.tbsCertificate = tbsCertificate
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/provider/cert/
X509CertImpl.java 51 import org.apache.harmony.security.x509.TBSCertificate;
75 private final TBSCertificate tbsCert;
82 private byte[] tbsCertificate;
110 // cache the values of TBSCertificate and Extensions
124 // cache the values of TBSCertificate and Extensions
289 if (tbsCertificate == null) {
290 // retrieve the encoded form of the TBSCertificate structure
291 tbsCertificate = tbsCert.getEncoded();
293 byte[] result = new byte[tbsCertificate.length];
294 System.arraycopy(tbsCertificate, 0, result, 0, tbsCertificate.length)
    [all...]

Completed in 367 milliseconds