keyAlgorithm property

String? keyAlgorithm
getter/setter pair

Key algorithm to use when generating the key pair.

This key pair will be used to create the certificate. If not specified, this will default to ECDSA_P256.

Optional. Possible string values are:

  • "KEY_ALGORITHM_UNSPECIFIED" : Unspecified key algorithm. Defaults to ECDSA_P256.
  • "RSA_2048" : Specifies RSA with a 2048-bit modulus.
  • "RSA_3072" : Specifies RSA with a 3072-bit modulus.
  • "RSA_4096" : Specifies RSA with a 4096-bit modulus.
  • "ECDSA_P256" : Specifies ECDSA with curve P256.
  • "ECDSA_P384" : Specifies ECDSA with curve P384.

Implementation

core.String? keyAlgorithm;