remove blake2b unused stuff

This commit is contained in:
Audric Ackermann 2021-07-12 17:28:23 +10:00
parent 02bc52f5ec
commit af00c31a54
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4
2 changed files with 0 additions and 33 deletions

16
main.js
View File

@ -973,22 +973,6 @@ ipc.on('get-auto-update-setting', event => {
event.returnValue = typeof configValue !== 'boolean' ? true : configValue;
});
async function blake2bDigest(event, input) {
const sodium = await getSodium();
try {
const res = sodium.crypto_generichash(32, input);
event.reply('blake2b-digest-response', null, res);
} catch (err) {
event.reply('blake2b-digest-response', err);
}
}
ipc.on('blake2b-digest', (event, input) => {
blake2bDigest(event, input);
});
ipc.on('set-auto-update-setting', (event, enabled) => {
userConfig.set('autoUpdate', !!enabled);

View File

@ -81,13 +81,6 @@ window.isBeforeVersion = (toCheck, baseVersion) => {
window.CONSTANTS = new (function() {
// Number of seconds to turn on notifications after reconnect/start of app
this.NOTIFICATION_ENABLE_TIMEOUT_SECONDS = 10;
// Minimum nodes version for LNS lookup
this.LNS_CAPABLE_NODES_VERSION = '2.0.3';
this.LNS_MAX_LENGTH = 64;
// Conforms to naming rules here
// https://loki.network/2020/03/25/loki-name-system-the-facts/
this.LNS_REGEX = `^[a-zA-Z0-9_]([a-zA-Z0-9_-]{0,${this.LNS_MAX_LENGTH - 2}}[a-zA-Z0-9_]){0,1}$`;
})();
window.versionInfo = {
@ -102,16 +95,6 @@ window.wrapDeferred = deferredToPromise;
const ipc = electron.ipcRenderer;
const localeMessages = ipc.sendSync('locale-data');
window.blake2b = input =>
new Promise((resolve, reject) => {
ipc.once('blake2b-digest-response', (_, error, res) => {
// eslint-disable-next-line no-unused-expressions
error ? reject(error) : resolve(res);
});
ipc.send('blake2b-digest', input);
});
window.updateZoomFactor = () => {
const zoomFactor = window.getSettingValue('zoom-factor-setting') || 100;
window.setZoomFactor(zoomFactor / 100);