DigitalVerifyOptions constructor

init

Creates Digital Verification Option with default values.

def __init__(self):
    ...

init

Creates Digital Verification Option with given digital certificate file path.

def __init__(self, certificate_file_path):
    ...
Parameter Type Description
certificate_file_path str File path to digital certificate.

init

Creates Digital Verification Option with given certificate stream.

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

See Also