Pkix Public Key Args
data class PkixPublicKeyArgs(val publicKeyPem: Output<String>? = null, val signatureAlgorithm: Output<PkixPublicKeySignatureAlgorithm>? = null) : ConvertibleToJava<PkixPublicKeyArgs>
A public key in the PkixPublicKey format (see https://tools.ietf.org/html/rfc5280#section-4.1.2.7 for details). Public keys of this type are typically textually encoded using the PEM format.
Constructors
Link copied to clipboard
constructor(publicKeyPem: Output<String>? = null, signatureAlgorithm: Output<PkixPublicKeySignatureAlgorithm>? = null)
Properties
Link copied to clipboard
A PEM-encoded public key, as described in https://tools.ietf.org/html/rfc7468#section-13
Link copied to clipboard
The signature algorithm used to verify a message against a signature using this key. These signature algorithm must match the structure and any object identifiers encoded in public_key_pem
(i.e. this algorithm must match that of the public key).