@it-enterprise/digital-signature 1.3.8 → 1.3.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -83,6 +83,9 @@ export declare class KSPSettings {
83
83
  * @property <boolean> signInfoTmpl - An object or URL with sign info template (not implemented).
84
84
  * @property <number> connectionTimeout - Timeout for connections to CA servers in ms. Affects only for SW library type. By default set to 60s.
85
85
  * @property <number> ocspResponseExpireTime - The time interval during which the cryptolibrary trust for the response from the OCSP server in seconds. By default set to 0s, recomended 30s (used on the https://czo.gov.ua/verify), max value 3600s.
86
+ * @property <boolean> useSLoginPrivateKey - A boolean value that specifies whether library reads private key used for system login. Using by SignWeb libraries. By default set to false.
87
+ * @property <boolean> allowForeignCAs - A boolean value that specifies support for reading private keys without specifying a CA settings in the CAs list. Used to read foreign keys. Typically used in conjunction with setting the TSLAddress and TSPServer parameters. By default set to false.
88
+ * @property <{address: string, port: string}> TSPServer - Default TSP server settings (used if the end-user certificate does not have a TSP access point). The first TSP server from the CAs is used by default.
86
89
  */
87
90
  export declare class EndUserSettings {
88
91
  language: string;
@@ -108,6 +111,12 @@ export declare class EndUserSettings {
108
111
  signInfoTmpl?: any | string;
109
112
  connectionTimeout?: number;
110
113
  ocspResponseExpireTime?: number;
114
+ useSLoginPrivateKey?: boolean;
115
+ allowForeignCAs?: boolean;
116
+ TSPServer?: {
117
+ address: string;
118
+ port: string;
119
+ };
111
120
  }
112
121
  /**
113
122
  * Settings to configure EndUser library proxy server.