Hello
I am trying to hash a password with bcrypt algorithm (try to match password with an off the shell software), but I keep getting error, it works for algorithms "SHA-1", "SHA-256" etc...<cfset hashpw = #hash(password_from_form, "SHA-1")#>, <cfset hashpw = #hash(password_from_form, "SHA-256")#>
but <cfset hashpw = #hash(password_from_form, "BCrypt")> don't work, got error : The BCrypt is not supported by the security Provider you have chosen.
Is there no bcrypt algorithm in coldfusion hash function ?
Have been working on it over a week but without luck.
btw, I am using dreamweaver 8.
thank you so much in advance.