All Downloads are FREE. Search and download functionalities are using the official Maven repository.

software.amazon.cryptography.materialproviders.model.PaddingScheme Maven / Gradle / Ivy

There is a newer version: 1.9.0
Show newest version
// Copyright Amazon.com Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
// Do not modify this file. This file is machine generated, and any changes to it will be overwritten.
package software.amazon.cryptography.materialproviders.model;

public enum PaddingScheme {
  PKCS1("PKCS1"),

  OAEP_SHA1_MGF1("OAEP_SHA1_MGF1"),

  OAEP_SHA256_MGF1("OAEP_SHA256_MGF1"),

  OAEP_SHA384_MGF1("OAEP_SHA384_MGF1"),

  OAEP_SHA512_MGF1("OAEP_SHA512_MGF1");

  private final String value;

  private PaddingScheme(String value) {
    this.value = value;
  }

  public String toString() {
    return String.valueOf(value);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy