From 8461da57fb5beb3a2344cca645312687481194b6 Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Sun, 9 Jul 2023 02:19:15 +0100 Subject: [PATCH] update warning --- auth/simple-auth-server/src/utils.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/auth/simple-auth-server/src/utils.rs b/auth/simple-auth-server/src/utils.rs index 86809ee3..d2bc9758 100644 --- a/auth/simple-auth-server/src/utils.rs +++ b/auth/simple-auth-server/src/utils.rs @@ -8,7 +8,7 @@ pub static SECRET_KEY: Lazy = const SALT: &[u8] = b"supersecuresalt"; -// WARNING THIS IS ONLY FOR DEMO PLEASE DO MORE RESEARCH FOR PRODUCTION USE +// PLEASE NOTE THIS IS ONLY FOR DEMO PLEASE DO MORE RESEARCH FOR PRODUCTION USE pub fn hash_password(password: &str) -> Result { let config = Config { secret: SECRET_KEY.as_bytes(),