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

  /libcore/ojluni/src/main/java/sun/security/x509/
SerialNumber.java 43 private void construct(DerValue derVal) throws IOException {
44 serialNum = derVal.getBigInteger();
45 if (derVal.data.available() != 0) {
75 DerValue derVal = in.getDerValue();
76 construct(derVal);
96 DerValue derVal = new DerValue(in);
97 construct(derVal);
CertificateVersion.java 75 private void construct(DerValue derVal) throws IOException {
76 if (derVal.isConstructed() && derVal.isContextSpecific()) {
77 derVal = derVal.data.getDerValue();
78 version = derVal.getInteger();
79 if (derVal.data.available() != 0) {
118 DerValue derVal = in.getDerValue();
120 construct(derVal);
131 DerValue derVal = new DerValue(in)
    [all...]
GeneralNames.java 52 * @param derVal the DerValue to construct the GeneralNames from.
55 public GeneralNames(DerValue derVal) throws IOException {
57 if (derVal.tag != DerValue.tag_Sequence) {
60 if (derVal.data.available() == 0) {
65 while (derVal.data.available() != 0) {
66 DerValue encName = derVal.data.getDerValue();
UniqueIdentity.java 68 DerValue derVal = in.getDerValue();
69 id = derVal.getUnalignedBitString(true);
75 * @param derVal the DerValue decoded from the stream.
79 public UniqueIdentity(DerValue derVal) throws IOException {
80 id = derVal.getUnalignedBitString(true);
CertificateValidity.java 71 private void construct(DerValue derVal) throws IOException {
72 if (derVal.tag != DerValue.tag_Sequence) {
77 if (derVal.data.available() == 0)
80 DerInputStream derIn = new DerInputStream(derVal.toByteArray());
86 notBefore = derVal.data.getUTCTime();
88 notBefore = derVal.data.getGeneralizedTime();
94 notAfter = derVal.data.getUTCTime();
96 notAfter = derVal.data.getGeneralizedTime();
127 DerValue derVal = in.getDerValue();
128 construct(derVal);
    [all...]
ReasonFlags.java 152 DerValue derVal = in.getDerValue();
153 this.bitString = derVal.getUnalignedBitString(true).toBooleanArray();
159 * @param derVal the DerValue decoded from the stream.
162 public ReasonFlags(DerValue derVal) throws IOException {
163 this.bitString = derVal.getUnalignedBitString(true).toBooleanArray();
X509CRLEntryImpl.java 130 * @param derVal the DER value containing the revoked certificate.
448 private void parse(DerValue derVal)
451 if (derVal.tag != DerValue.tag_Sequence) {
455 if (derVal.data.available() == 0)
458 revokedCert = derVal.toByteArray();
460 DerInputStream in = derVal.toDerInputStream();
465 int nextByte = derVal.data.peekByte();
467 this.revocationDate = derVal.data.getUTCTime();
469 this.revocationDate = derVal.data.getGeneralizedTime();
473 if (derVal.data.available() == 0
    [all...]
CertificateIssuerName.java 92 DerValue derVal = new DerValue(in);
93 dnName = new X500Name(derVal);
CertificateSubjectName.java 92 DerValue derVal = new DerValue(in);
93 dnName = new X500Name(derVal);
Extension.java 75 public Extension(DerValue derVal) throws IOException {
77 DerInputStream in = derVal.toDerInputStream();
X509CertInfo.java 162 * @param derVal the der value containing the encoded cert.
165 public X509CertInfo(DerValue derVal) throws CertificateParsingException {
167 parse(derVal);
    [all...]
X509CertImpl.java 305 * @param derVal the der value containing the encoded cert.
308 public X509CertImpl(DerValue derVal) throws CertificateException {
310 parse(derVal);
322 * @param derVal the der value containing the encoded cert.
325 public X509CertImpl(DerValue derVal, byte[] encoded)
328 parse(derVal, encoded);
    [all...]
X500Name.java 793 DerValue derVal = new DerValue(DerValue.tag_Sequence,
795 derBytes = derVal.toByteArray();
    [all...]
  /libcore/ojluni/src/main/java/sun/security/provider/certpath/
OCSPResponse.java 692 DerValue derVal = tmp.getDerValue();
693 short tag = (byte)(derVal.tag & 0x1f);
696 revocationTime = derVal.data.getGeneralizedTime();
697 if (derVal.data.available() != 0) {
698 DerValue dv = derVal.data.getDerValue();
737 derVal = tmp.getDerValue();
738 tag = (byte)(derVal.tag & 0x1f);
741 nextUpdate = derVal.data.getGeneralizedTime();
746 derVal = tmp.getDerValue();
747 tag = (byte)(derVal.tag & 0x1f)
    [all...]
  /libcore/ojluni/src/main/java/sun/security/pkcs/
PKCS9Attribute.java 481 public PKCS9Attribute(DerValue derVal) throws IOException {
483 DerInputStream derIn = new DerInputStream(derVal.toByteArray());

Completed in 2769 milliseconds