Show / Hide Table of Contents

Class Certificate_publicKeyInfo

Information about the public key and the algorithm used by the public key.

Inheritance
object
Certificate_publicKeyInfo
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.WaasService.Models
Assembly: OCI.DotNetSDK.Waas.dll
Syntax
public class Certificate_publicKeyInfo

Properties

Algorithm

Declaration
[JsonProperty(PropertyName = "algorithm")]
public string Algorithm { get; set; }
Property Value
Type Description
string

The algorithm identifier and parameters for the public key.

Exponent

Declaration
[JsonProperty(PropertyName = "exponent")]
public int? Exponent { get; set; }
Property Value
Type Description
int?

The private key exponent.

KeySize

Declaration
[JsonProperty(PropertyName = "keySize")]
public int? KeySize { get; set; }
Property Value
Type Description
int?

The number of bits in a key used by a cryptographic algorithm.

In this article
Back to top