compare password hashes between c# and coldfusion
Posted
by czuroski
on Stack Overflow
See other posts from Stack Overflow
or by czuroski
Published on 2010-04-26T14:17:08Z
Indexed on
2010/04/26
15:13 UTC
Read the original article
Hit count: 238
Hello, I have a password hash that is stored in a table and is put there by the following coldfusion script-
#Hash(EnCrypt(UCase(GetPass.username),EnCode))#
I am trying to add some outside functionality within a c# application. I would like to be able to take advantage of the data that already exists so that I can authenticate users. Does anyone know how I can replicate the above coldfusion code in c#?
Thanks for any thoughts.
© Stack Overflow or respective owner