Page 1 of 1

How can I use the old password encription algorithm (old MD5)?

Posted: Tue Jan 11, 2022 5:28 am
by miasoft
I am using a shared database for desktop app and WebApp(nuBuilder).
I would not like to change the password encryption algorithm.
Security requirements are not too much for me.

Re: How can I use the old password encription algorithm (old MD5)?

Posted: Tue Jan 11, 2022 6:17 am
by kev1n
Hi,

There's now an option to use only MD5.

In nuconfig.php, set

Code: Select all

$nuUseMd5PasswordHash = true; 	//-- If set to true, MD5 is used to hash passwords, otherwise password_hash(), which is recommended.


The latest version from Github is required.