Show / Hide Table of Contents

Class KeySizeAlgorithm

The algorithm object with name and key size properties.

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

Properties

KeySize

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

Key size for the encryption algorithm. Allowed values: 256 for EC, 2048 for DH/DSA/RSA

Name

Declaration
[JsonProperty(PropertyName = "name")]
[JsonConverter(typeof(ResponseEnumConverter))]
public Algorithms? Name { get; set; }
Property Value
Type Description
Algorithms?

The algorithm name.

In this article
Back to top