From 9fb4f24427bfa0771fdb3e789401d19a2494ef62 Mon Sep 17 00:00:00 2001 From: Vermium Sifell Date: Sat, 11 Jun 2022 18:25:34 +0200 Subject: [PATCH] =?UTF-8?q?=E2=9A=B0=EF=B8=8F=20encryption=20Foldefolder?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/handlers/{encryption.ts => encryption/index.ts} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename src/handlers/{encryption.ts => encryption/index.ts} (84%) diff --git a/src/handlers/encryption.ts b/src/handlers/encryption/index.ts similarity index 84% rename from src/handlers/encryption.ts rename to src/handlers/encryption/index.ts index de5a7b9..8b6512c 100644 --- a/src/handlers/encryption.ts +++ b/src/handlers/encryption/index.ts @@ -1,8 +1,8 @@ import crypto from "crypto"; -import { secretKey, algorithm } from "../config/encryption"; +import { secretKey, algorithm } from "../../config/encryption"; -import { IEncryptionData } from "../interfaces/EncryptionData"; +import { IEncryptionData } from "../../interfaces/EncryptionData"; const iv = crypto.randomBytes(16);