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

Specifies the container format of a digital signature.

from nutrient_sdk import SignatureFormat

Values

NameValueDescription
SignatureFormat.PADES0PAdES / CAdES-detached (ETSI.CAdES.detached). This is the default and the format required for the PAdES baseline levels above B-B.
SignatureFormat.CMS1Classic CMS (adbe.pkcs7.detached) — the traditional Adobe signature format.

Usage Example

from nutrient_sdk import SignatureFormat
# Access enum values
value = SignatureFormat.PADES
print(f"Value: {value}") # Output: Value: SignatureFormat.PADES
print(f"Integer value: {value.value}") # Output: Integer value: 0