d78f37ec8f
Co-authored-by: Milan Burda <miburda@microsoft.com>
13 lines
457 B
JavaScript
13 lines
457 B
JavaScript
const { app, safeStorage, ipcMain } = require('electron');
|
|
const { promises: fs } = require('node:fs');
|
|
const path = require('node:path');
|
|
|
|
const pathToEncryptedString = path.resolve(__dirname, '..', 'encrypted.txt');
|
|
const readFile = fs.readFile;
|
|
|
|
app.whenReady().then(async () => {
|
|
const encryptedString = await readFile(pathToEncryptedString);
|
|
const decrypted = safeStorage.decryptString(encryptedString);
|
|
console.log(decrypted);
|
|
app.quit();
|
|
});
|