public enum CryptographicStandard extends Enum<CryptographicStandard>
Represents the available cryptographic standards for securing PDF documents.
Enum Constant and Description |
---|
Pkcs1
Public-Key Cryptography Standards (PKCS) #1
|
Pkcs7
Public-Key Cryptography Standards (PKCS) #7
|
Rfc3161
Public Key Infrastructure Time-Stamp Protocol (TSP, rfc3161).
|
Modifier and Type | Method and Description |
---|---|
static CryptographicStandard |
getByValue(int value) |
int |
getValue() |
static CryptographicStandard |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CryptographicStandard[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CryptographicStandard Pkcs1
Public-Key Cryptography Standards (PKCS) #1
public static final CryptographicStandard Pkcs7
Public-Key Cryptography Standards (PKCS) #7
public static final CryptographicStandard Rfc3161
Public Key Infrastructure Time-Stamp Protocol (TSP, rfc3161).
public static CryptographicStandard[] values()
for (CryptographicStandard c : CryptographicStandard.values()) System.out.println(c);
public static CryptographicStandard valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic int getValue()
public static CryptographicStandard getByValue(int value)
Copyright © 2025 Aspose. All Rights Reserved.