CertificateAuthorityConfiguration class
Contains configuration information for your private certificate authority (CA). This includes information about the class of public key algorithm and the key pair that your private CA creates when it issues a certificate. It also includes the signature algorithm that it uses when issuing certificates, and its X.500 distinguished name. You must specify this information when you call the CreateCertificateAuthority action.
Constructors
- CertificateAuthorityConfiguration({required KeyAlgorithm keyAlgorithm, required SigningAlgorithm signingAlgorithm, required ASN1Subject subject, CsrExtensions? csrExtensions})
-
CertificateAuthorityConfiguration.fromJson(Map<
String, dynamic> json) -
factory
Properties
- csrExtensions → CsrExtensions?
-
Specifies information to be added to the extension section of the
certificate signing request (CSR).
final
- hashCode → int
-
The hash code for this object.
no setterinherited
- keyAlgorithm → KeyAlgorithm
-
Type of the public key algorithm and size, in bits, of the key pair that
your CA creates when it issues a certificate. When you create a subordinate
CA, you must use a key algorithm supported by the parent CA.
final
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- signingAlgorithm → SigningAlgorithm
-
Name of the algorithm your private CA uses to sign certificate requests.
final
- subject → ASN1Subject
-
Structure that contains X.500 distinguished name information for your
private CA.
final
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