
software.amazon.cryptography.materialproviders.model.PaddingScheme Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws-cryptographic-material-providers Show documentation
Show all versions of aws-cryptographic-material-providers Show documentation
The AWS Cryptographic Material Providers Library for Java
// 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