DigitalSignOptions constructor

init

Initializes a new instance of the DigitalSignOptions class with default values.

def __init__(self):
    ...

init

Initializes a new instance of the DigitalSignOptions class with certificate file.

def __init__(self, certificate_file_path):
    ...
Parameter Type Description
certificate_file_path str Digital certificate file path

init

Initializes a new instance of the DigitalSignOptions class with certificate stream.

def __init__(self, certificate_stream):
    ...
Parameter Type Description
certificate_stream io.RawIOBase Digital Certificate stream

init

Initializes a new instance of the DigitalSignOptions class with certificate file and image file.

def __init__(self, certificate_file_path, image_file_path):
    ...
Parameter Type Description
certificate_file_path str Digital certificate file path
image_file_path str Signature Appearance image file path

init

Initializes a new instance of the DigitalSignOptions class with certificate file and image stream.

def __init__(self, certificate_file_path, appearence_image_stream):
    ...
Parameter Type Description
certificate_file_path str Digital certificate file path
appearence_image_stream io.RawIOBase Signature Appearance image stream

init

Initializes a new instance of the DigitalSignOptions class with certificate stream and image file.

def __init__(self, certificate_stream, image_file_path):
    ...
Parameter Type Description
certificate_stream io.RawIOBase Digital Certificate stream
image_file_path str Signature Appearance image file path

init

Initializes a new instance of the DigitalSignOptions class with certificate stream and image stream.

def __init__(self, certificate_stream, appearence_image_stream):
    ...
Parameter Type Description
certificate_stream io.RawIOBase Digital Certificate stream
appearence_image_stream io.RawIOBase Signature Appearance image stream

See Also