From 47fe1f83fc3c6263015df9249d5e213a3446531f Mon Sep 17 00:00:00 2001 From: avinashcodelabs Date: Mon, 3 Nov 2025 23:43:41 +0530 Subject: [PATCH] Comment updated --- auth/src/services/password.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/auth/src/services/password.ts b/auth/src/services/password.ts index d649290..c1bb8af 100644 --- a/auth/src/services/password.ts +++ b/auth/src/services/password.ts @@ -1,6 +1,6 @@ import { scryptSync, randomBytes } from "node:crypto"; -// Todo => promisify scryptSync +// Todo => promisify scryptSync or check if promise version of module available in latest node version class Password { static toHash(password: string) { const salt = randomBytes(16).toString("hex");