File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
core/src/main/java/org/bouncycastle/asn1/eac Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ public class CertificateHolderAuthorization
2828 extends ASN1Object
2929{
3030 ASN1ObjectIdentifier oid ;
31- DERApplicationSpecific accessRights ;
31+ ASN1ApplicationSpecific accessRights ;
3232 public static final ASN1ObjectIdentifier id_role_EAC = EACObjectIdentifiers .bsi_de .branch ("3.1.2.1" );
3333 public static final int CVCA = 0xC0 ;
3434 public static final int DV_DOMESTIC = 0x80 ;
@@ -90,9 +90,9 @@ private void setPrivateData(ASN1InputStream cha)
9090 throw new IllegalArgumentException ("no Oid in CerticateHolderAuthorization" );
9191 }
9292 obj = cha .readObject ();
93- if (obj instanceof DERApplicationSpecific )
93+ if (obj instanceof ASN1ApplicationSpecific )
9494 {
95- this .accessRights = (DERApplicationSpecific )obj ;
95+ this .accessRights = (ASN1ApplicationSpecific )obj ;
9696 }
9797 else
9898 {
You can’t perform that action at this time.
0 commit comments