Skip to content

Commit

Permalink
as - cA and pathLenConstraint to X509CertificateDataExtensions
Browse files Browse the repository at this point in the history
  • Loading branch information
arj-singh committed Nov 13, 2023
1 parent ced7860 commit b54bee0
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
8 changes: 8 additions & 0 deletions lib/src/model/x509/X509CertificateDataExtensions.dart
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,12 @@ class X509CertificateDataExtensions {
/// The key usage extension
List<KeyUsage>? keyUsage;

/// The cA field of the basic constraints extension
bool? cA;

/// The pathLenConstraint field of the basic constraints extension
int? pathLenConstraint;

/// The base64 encoded VMC logo
VmcData? vmc;

Expand All @@ -29,6 +35,8 @@ class X509CertificateDataExtensions {
this.subjectAlternativNames,
this.extKeyUsage,
this.keyUsage,
this.cA,
this.pathLenConstraint,
this.vmc,
this.cRLDistributionPoints,
});
Expand Down
4 changes: 4 additions & 0 deletions lib/src/model/x509/X509CertificateDataExtensions.g.dart

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit b54bee0

Please sign in to comment.