IPWorks Encrypt 2020 Python Edition

Questions / Feedback?

signature_hash_algorithm Property

The signature hash algorithm used during signing.

Syntax

def get_signature_hash_algorithm() -> str: ...
def set_signature_hash_algorithm(value: str) -> None: ...

signature_hash_algorithm = property(get_signature_hash_algorithm, set_signature_hash_algorithm)

Default Value

"SHA256"

Remarks

This property specifies the signature hash algorithm used when sign is called.

When sign is called the input data is first hashed with the algorithm specified by this property to produce a message digest. The computed digest is then digitally signed with the certificates specified in certificates.

The value specified here may be the name of the algorithm or the corresponding OID. Possible values are:

  • "SHA-256" (default)
  • "SHA-384"
  • "SHA-512"
  • "SHA-224"
  • "SHA1"
  • "MD5"

Copyright (c) 2022 /n software inc. - All rights reserved.
IPWorks Encrypt 2020 Python Edition - Version 20.0 [Build 8155]