Searched defs:derVal (Results 1 - 12 of 12) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/security/pkcs/
H A DPKCS10Attribute.java68 * @param derVal the der encoded attribute.
71 public PKCS10Attribute(DerValue derVal) throws IOException { argument
72 PKCS9Attribute attr = new PKCS9Attribute(derVal);
H A DPKCS9Attribute.java481 public PKCS9Attribute(DerValue derVal) throws IOException { argument
483 DerInputStream derIn = new DerInputStream(derVal.toByteArray());
/openjdk7/jdk/src/share/classes/sun/security/x509/
H A DSerialNumber.java43 private void construct(DerValue derVal) throws IOException { argument
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);
H A DUniqueIdentity.java68 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 { argument
80 id = derVal.getUnalignedBitString(true);
H A DGeneralNames.java52 * @param derVal the DerValue to construct the GeneralNames from.
55 public GeneralNames(DerValue derVal) throws IOException { argument
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();
H A DCertificateValidity.java71 private void construct(DerValue derVal) throws IOException { argument
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...]
H A DCertificateVersion.java75 private void construct(DerValue derVal) throws IOException { argument
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
[all...]
H A DExtension.java75 public Extension(DerValue derVal) throws IOException { argument
77 DerInputStream in = derVal.toDerInputStream();
H A DReasonFlags.java152 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 { argument
163 this.bitString = derVal.getUnalignedBitString(true).toBooleanArray();
H A DX509CRLEntryImpl.java130 * @param derVal the DER value containing the revoked certificate.
448 private void parse(DerValue derVal) argument
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
[all...]
H A DX509CertInfo.java164 * @param derVal the der value containing the encoded cert.
167 public X509CertInfo(DerValue derVal) throws CertificateParsingException { argument
169 parse(derVal);
H A DX509CertImpl.java312 * @param derVal the der value containing the encoded cert.
315 public X509CertImpl(DerValue derVal) throws CertificateException { argument
317 parse(derVal);

Completed in 555 milliseconds