2021-08-05 22:12:54 +00:00
|
|
|
# safeStorage
|
|
|
|
|
|
|
|
> Allows access to simple encryption and decryption of strings for storage on the local machine.
|
|
|
|
|
|
|
|
Process: [Main](../glossary.md#main-process)
|
|
|
|
|
|
|
|
This module protects data stored on disk from being accessed by other applications or users with full disk access.
|
|
|
|
|
|
|
|
Note that on Mac, access to the system Keychain is required and
|
|
|
|
these calls can block the current thread to collect user input.
|
|
|
|
The same is true for Linux, if a password management tool is available.
|
|
|
|
|
|
|
|
## Methods
|
|
|
|
|
|
|
|
The `safeStorage` module has the following methods:
|
|
|
|
|
|
|
|
### `safeStorage.isEncryptionAvailable()`
|
|
|
|
|
2021-11-16 04:13:18 +00:00
|
|
|
Returns `boolean` - Whether encryption is available.
|
2021-08-05 22:12:54 +00:00
|
|
|
|
2022-05-09 13:38:53 +00:00
|
|
|
On Linux, returns true if the app has emitted the `ready` event and the secret key is available.
|
|
|
|
On MacOS, returns true if Keychain is available.
|
2022-04-12 19:47:15 +00:00
|
|
|
On Windows, returns true once the app has emitted the `ready` event.
|
2021-08-05 22:12:54 +00:00
|
|
|
|
|
|
|
### `safeStorage.encryptString(plainText)`
|
|
|
|
|
2021-11-16 04:13:18 +00:00
|
|
|
* `plainText` string
|
2021-08-05 22:12:54 +00:00
|
|
|
|
|
|
|
Returns `Buffer` - An array of bytes representing the encrypted string.
|
|
|
|
|
|
|
|
This function will throw an error if encryption fails.
|
|
|
|
|
|
|
|
### `safeStorage.decryptString(encrypted)`
|
|
|
|
|
|
|
|
* `encrypted` Buffer
|
|
|
|
|
2021-11-16 04:13:18 +00:00
|
|
|
Returns `string` - the decrypted string. Decrypts the encrypted buffer
|
2021-08-05 22:12:54 +00:00
|
|
|
obtained with `safeStorage.encryptString` back into a string.
|
|
|
|
|
|
|
|
This function will throw an error if decryption fails.
|