Skip to content

Commit

Permalink
fix: parsing GeneralNames
Browse files Browse the repository at this point in the history
  • Loading branch information
rbellens committed Dec 26, 2022
1 parent 3aefbdd commit b0e4cc0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/src/extension.dart
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ class AuthorityKeyIdentifier extends ExtensionValue {
keyId = o.contentBytes();
break;
case 1:
issuer = GeneralNames.fromAsn1(o as ASN1Sequence);
issuer = GeneralNames.fromAsn1(o);
break;
case 2:
number =
Expand Down

0 comments on commit b0e4cc0

Please sign in to comment.