eu.europa.esig.dss.crl.CRLBinary Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dss-crl-parser Show documentation
Show all versions of dss-crl-parser Show documentation
DSS CRL Parser API contains an interface which allows to validate a CRL and extract revocation data.
package eu.europa.esig.dss.crl;
import eu.europa.esig.dss.model.identifier.EncapsulatedRevocationTokenIdentifier;
public class CRLBinary extends EncapsulatedRevocationTokenIdentifier {
private static final long serialVersionUID = 3365111934665055383L;
public CRLBinary(byte[] binaries) {
super(binaries);
}
}