X509CertificateData class

Model that represents the data of a x509Certificate

Annotations
  • @JsonSerializable(includeIfNull: false, explicitToJson: true)

Constructors

X509CertificateData({required int version, required BigInt serialNumber, required String signatureAlgorithm, required Map<String, String?> issuer, required X509CertificateValidity validity, required Map<String, String?> subject, required TbsCertificate? tbsCertificate, String? signatureAlgorithmReadableName, String? sha1Thumbprint, String? sha256Thumbprint, String? md5Thumbprint, required X509CertificatePublicKeyData publicKeyData, required List<String>? subjectAlternativNames, String? plain, List<ExtendedKeyUsage>? extKeyUsage, X509CertificateDataExtensions? extensions, String? tbsCertificateSeqAsString, required String? signature})
X509CertificateData.fromJson(Map<String, dynamic> json)
factory

Properties

extensions X509CertificateDataExtensions?
The certificate extensions
getter/setter pair
extKeyUsage List<ExtendedKeyUsage>?
The extended key usage extension
getter/setter pair
hashCode int
The hash code for this object.
no setterinherited
issuer Map<String, String?>
The issuer data of the certificate
getter/setter pair
md5Thumbprint String?
The md5 thumbprint for the certificate
getter/setter pair
plain String?
The plain certificate pem string, that was used to decode.
getter/setter pair
publicKeyData X509CertificatePublicKeyData
The public key data from the certificate
getter/setter pair
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
serialNumber BigInt
The serialNumber of the certificate
getter/setter pair
sha1Thumbprint String?
The sha1 thumbprint for the certificate
getter/setter pair
sha256Thumbprint String?
The sha256 thumbprint for the certificate
getter/setter pair
signature String?
The signature
getter/setter pair
signatureAlgorithm String
The signatureAlgorithm of the certificate
getter/setter pair
signatureAlgorithmReadableName String?
The readable name of the signatureAlgorithm of the certificate
getter/setter pair
subject Map<String, String?>
The subject data of the certificate
getter/setter pair
subjectAlternativNames List<String>?
The subject alternative names
getter/setter pair
tbsCertificate TbsCertificate?
The tbsCertificate data
getter/setter pair
tbsCertificateSeqAsString String?
The tbsCertificateSeq as base64 string
getter/setter pair
validity X509CertificateValidity
The validity of the certificate
getter/setter pair
version int
The version of the certificate
getter/setter pair

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, dynamic>
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited