public enum PdfDigitalSignatureHashAlgorithmCore extends Enum<PdfDigitalSignatureHashAlgorithmCore>
Specifies digital hash algorithm used by digital signature.
| Enum Constant and Description |
|---|
Md5
SHA-1 hash algorithm.
|
Sha1
SHA-1 hash algorithm.
|
Sha256
SHA-256 hash algorithm.
|
Sha384
SHA-384 hash algorithm.
|
Sha512
SHA-512 hash algorithm.
|
| Modifier and Type | Method and Description |
|---|---|
static PdfDigitalSignatureHashAlgorithmCore |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PdfDigitalSignatureHashAlgorithmCore[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PdfDigitalSignatureHashAlgorithmCore Sha1
SHA-1 hash algorithm.
public static final PdfDigitalSignatureHashAlgorithmCore Sha256
SHA-256 hash algorithm.
public static final PdfDigitalSignatureHashAlgorithmCore Sha384
SHA-384 hash algorithm.
public static final PdfDigitalSignatureHashAlgorithmCore Sha512
SHA-512 hash algorithm.
public static final PdfDigitalSignatureHashAlgorithmCore Md5
SHA-1 hash algorithm.
public static PdfDigitalSignatureHashAlgorithmCore[] values()
for (PdfDigitalSignatureHashAlgorithmCore c : PdfDigitalSignatureHashAlgorithmCore.values()) System.out.println(c);
public static PdfDigitalSignatureHashAlgorithmCore 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 nullCopyright (c) 2008-2025 Aspose Pty Ltd. All Rights Reserved.