File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
core/src/main/java/org/bouncycastle/asn1/pkcs Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 11package org .bouncycastle .asn1 .pkcs ;
22
3+ import org .bouncycastle .asn1 .ASN1BitString ;
34import org .bouncycastle .asn1 .ASN1EncodableVector ;
45import org .bouncycastle .asn1 .ASN1Object ;
56import org .bouncycastle .asn1 .ASN1Primitive ;
@@ -23,7 +24,7 @@ public class CertificationRequest
2324{
2425 protected CertificationRequestInfo reqInfo = null ;
2526 protected AlgorithmIdentifier sigAlgId = null ;
26- protected DERBitString sigBits = null ;
27+ protected ASN1BitString sigBits = null ;
2728
2829 public static CertificationRequest getInstance (Object o )
2930 {
@@ -47,7 +48,7 @@ protected CertificationRequest()
4748 public CertificationRequest (
4849 CertificationRequestInfo requestInfo ,
4950 AlgorithmIdentifier algorithm ,
50- DERBitString signature )
51+ ASN1BitString signature )
5152 {
5253 this .reqInfo = requestInfo ;
5354 this .sigAlgId = algorithm ;
@@ -75,7 +76,7 @@ public AlgorithmIdentifier getSignatureAlgorithm()
7576 return sigAlgId ;
7677 }
7778
78- public DERBitString getSignature ()
79+ public ASN1BitString getSignature ()
7980 {
8081 return sigBits ;
8182 }
You can’t perform that action at this time.
0 commit comments