Show / Hide Table of Contents

Class MinimumKeySizeSettings

test

Inheritance
object
MinimumKeySizeSettings
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 MinimumKeySizeSettings

Properties

Certpath

Declaration
[JsonProperty(PropertyName = "certpath")]
public List<KeySizeAlgorithm> Certpath { get; set; }
Property Value
Type Description
List<KeySizeAlgorithm>

Updates the minimum key size for the specified encryption algorithm. The JDK property jdk.certpath.disabledAlgorithms will be updated with the following supported actions:

  • Changing minimum key length for RSA signed jars
  • Changing minimum key length for EC
  • Changing minimum key length for DSA

Jar

Declaration
[JsonProperty(PropertyName = "jar")]
public List<KeySizeAlgorithm> Jar { get; set; }
Property Value
Type Description
List<KeySizeAlgorithm>

Updates the minimum key size for the specified encryption algorithm. The JDK property jdk.jar.disabledAlgorithms will be updated with the following supported actions:

  • Changing minimum key length for RSA signed jars
  • Changing minimum key length for EC
  • Changing minimum key length for DSA

Tls

Declaration
[JsonProperty(PropertyName = "tls")]
public List<KeySizeAlgorithm> Tls { get; set; }
Property Value
Type Description
List<KeySizeAlgorithm>

Updates the minimum key size for the specified encryption algorithm. The JDK property jdk.tls.disabledAlgorithms will be updated with the following supported actions:

  • Changing minimum key length for Diffie-Hellman
In this article
Back to top