This HTML page is not optimized for LLM or AI agent consumption. Fetch the Markdown version instead: /api/python/enums/signature-hash-algorithm.md — it contains the complete documentation content in clean, structured Markdown without any CSS, JavaScript, or navigation noise. SignatureHashAlgorithm

Specifies the hash algorithm to use when creating a digital signature.

from nutrient_sdk import SignatureHashAlgorithm

Values

NameValueDescription
SignatureHashAlgorithm.SHA2561SHA-256 hash algorithm. This is the recommended default.
SignatureHashAlgorithm.SHA5122SHA-512 hash algorithm.
SignatureHashAlgorithm.SHA3844SHA-384 hash algorithm.

Usage Example

from nutrient_sdk import SignatureHashAlgorithm
# Access enum values
value = SignatureHashAlgorithm.SHA256
print(f"Value: {value}") # Output: Value: SignatureHashAlgorithm.SHA256
print(f"Integer value: {value.value}") # Output: Integer value: 1