Java 类org.bouncycastle.asn1.ASN1BitString 实例源码

项目:dss    文件:CRLParser.java   
private ASN1BitString rebuildASN1BitString(byte[] array) throws IOException {
    return (ASN1BitString) rebuildASN1Primitive(BERTags.BIT_STRING, array);
}