Specifies the container format of a digital signature.
from nutrient_sdk import SignatureFormatValues
| Name | Value | Description |
|---|---|---|
SignatureFormat.PADES | 0 | PAdES / CAdES-detached (ETSI.CAdES.detached). This is the default and the format required for the PAdES baseline levels above B-B. |
SignatureFormat.CMS | 1 | Classic CMS (adbe.pkcs7.detached) — the traditional Adobe signature format. |
Usage Example
from nutrient_sdk import SignatureFormat
# Access enum valuesvalue = SignatureFormat.PADESprint(f"Value: {value}") # Output: Value: SignatureFormat.PADESprint(f"Integer value: {value.value}") # Output: Integer value: 0