ColdFusion - cfusion_encrypt() and cfusion_decrypt() - C# alternative

后端 未结 4 1360
梦谈多话
梦谈多话 2020-12-12 05:28

I have a database with user passwords that are encrypted via cfusion_encrypt(). I need to do a login alternative for the ColdFusion code in C#. Is there any easy way how to

4条回答
  •  执笔经年
    2020-12-12 06:20

    This may not answer your question, but the best bet from what I can tell would be to code up a Coldfusion loop to:

    1. cfusion_decrypt() the passwords
    2. hash the passwords in a C# friendly format

    I'm not aware of any C# native equivalents to cfusion_decrypt and cfusion_encrypt, but hopefully the folks here might be able to point you towards one.

提交回复
热议问题