diff --git a/scripts/encrypt-data.js b/scripts/encrypt-data.js index 3d0d77d..91ae802 100644 --- a/scripts/encrypt-data.js +++ b/scripts/encrypt-data.js @@ -72,7 +72,6 @@ async function main() { class Encrypter { static initialize(encryptionKey) { - console.log(`Initializing encrypter with key: ${encryptionKey}`); this.key = crypto.scryptSync(encryptionKey, 'salt', 32); } static encrypt(clearText) { diff --git a/src/shared/Encrypter.ts b/src/shared/Encrypter.ts index 8916776..e9047fc 100644 --- a/src/shared/Encrypter.ts +++ b/src/shared/Encrypter.ts @@ -8,7 +8,6 @@ export class Encrypter { private static key: Buffer; static initialize(encryptionKey: string) { - console.log(`Initializing encrypter with key: ${encryptionKey}`); this.key = crypto.scryptSync(encryptionKey, 'salt', 32); }