DigitalSignature
Contents
[
Hide
]DigitalSignature class
Signature in file.
class DigitalSignature;
Constructors
| Name | Description |
|---|---|
| constructor(Uint8Array, string, string, Date) | Constructor of DigitalSignature. |
| constructor(string, string, string, Date) | Constructor of DigitalSignature. |
Properties
| Property | Type | Description |
|---|---|---|
| comments | string | The purpose to signature. |
| signTime | Date | The time when the document was signed. |
| text | string | Specifies the text of actual signature in the digital signature. Default value is Empty. |
| image | Uint8Array | Specifies an image for the digital signature. Default value is null. |
| isValid | boolean | Readonly. If this digital signature is valid and the document has not been tampered with, this value will be true. |
| xAdESType | XAdESType | XAdES type. Default value is None(XAdES is off). |
constructor(Uint8Array, string, string, Date)
Constructor of DigitalSignature.
constructor(rawData: Uint8Array, password: string, comments: string, signTime: Date);
Parameters:
| Parameter | Type | Description |
|---|---|---|
| rawData | number[] | A byte array containing data from an X.509 certificate. |
| password | string | The password required to access the X.509 certificate data. |
| comments | string | The purpose to signature. |
| signTime | Date | The utc time when the document was signed. |
constructor(string, string, string, Date)
Constructor of DigitalSignature.
constructor(fileName: string, password: string, comments: string, signTime: Date);
Parameters:
| Parameter | Type | Description |
|---|---|---|
| fileName | string | The name of a certificate file. |
| password | string | The password required to access the X.509 certificate data. |
| comments | string | The purpose to signature. |
| signTime | Date | The utc time when the document was signed. |
comments
The purpose to signature.
comments : string;
signTime
The time when the document was signed.
signTime : Date;
text
Specifies the text of actual signature in the digital signature. Default value is Empty.
text : string;
image
Specifies an image for the digital signature. Default value is null.
image : Uint8Array;
isValid
Readonly. If this digital signature is valid and the document has not been tampered with, this value will be true.
isValid : boolean;
xAdESType
XAdES type. Default value is None(XAdES is off).
xAdESType : XAdESType;