Remove log

This commit is contained in:
Tarrgon
2026-06-30 15:07:25 -04:00
parent e1d4d1ef54
commit 24610e6521
2 changed files with 0 additions and 2 deletions
-1
View File
@@ -72,7 +72,6 @@ async function main() {
class Encrypter { class Encrypter {
static initialize(encryptionKey) { static initialize(encryptionKey) {
console.log(`Initializing encrypter with key: ${encryptionKey}`);
this.key = crypto.scryptSync(encryptionKey, 'salt', 32); this.key = crypto.scryptSync(encryptionKey, 'salt', 32);
} }
static encrypt(clearText) { static encrypt(clearText) {
-1
View File
@@ -8,7 +8,6 @@ export class Encrypter {
private static key: Buffer; private static key: Buffer;
static initialize(encryptionKey: string) { static initialize(encryptionKey: string) {
console.log(`Initializing encrypter with key: ${encryptionKey}`);
this.key = crypto.scryptSync(encryptionKey, 'salt', 32); this.key = crypto.scryptSync(encryptionKey, 'salt', 32);
} }