Methods Summary |
---|
public org.bouncycastle.sasn1.Asn1Set | getCertificates()
_certsCalled = true;
_nextObject = _seq.readObject();
if (_nextObject instanceof Asn1TaggedObject && ((Asn1TaggedObject)_nextObject).getTagNumber() == 0)
{
Asn1Set certs = (Asn1Set)((Asn1TaggedObject)_nextObject).getObject(BerTag.SET, false);
_nextObject = null;
return certs;
}
return null;
|
public org.bouncycastle.sasn1.Asn1Set | getCrls()
if (!_certsCalled)
{
throw new IOException("getCerts() has not been called.");
}
_crlsCalled = true;
if (_nextObject == null)
{
_nextObject = _seq.readObject();
}
if (_nextObject instanceof Asn1TaggedObject && ((Asn1TaggedObject)_nextObject).getTagNumber() == 1)
{
Asn1Set crls = (Asn1Set)((Asn1TaggedObject)_nextObject).getObject(BerTag.SET, false);
_nextObject = null;
return crls;
}
return null;
|
public org.bouncycastle.sasn1.Asn1Set | getDigestAlgorithms()
return (Asn1Set)_seq.readObject();
|
public ContentInfoParser | getEncapContentInfo()
return new ContentInfoParser((Asn1Sequence)_seq.readObject());
|
public org.bouncycastle.sasn1.Asn1Set | getSignerInfos()
if (!_certsCalled || !_crlsCalled)
{
throw new IOException("getCerts() and/or getCrls() has not been called.");
}
if (_nextObject == null)
{
_nextObject = _seq.readObject();
}
return (Asn1Set)_nextObject;
|
public org.bouncycastle.sasn1.Asn1Integer | getVersion()
return _version;
|