Encrypting the password
-
Hello Everybody, In my program i have to encrypt the password and i have to store it in the SQL server database. It should by very strong. Could you please give me a hint
Best Regards, M. J. Jaya Chitra
-
Hello Everybody, In my program i have to encrypt the password and i have to store it in the SQL server database. It should by very strong. Could you please give me a hint
Best Regards, M. J. Jaya Chitra
The Cryptography namespace is full of options. MD5 is definately not a secure option, FWIW.
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )
-
The Cryptography namespace is full of options. MD5 is definately not a secure option, FWIW.
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )
Thank you Christian. What do you mean by FWIW, is it a encryption method. plz don't mistake me
Best Regards, M. J. Jaya Chitra
-
Thank you Christian. What do you mean by FWIW, is it a encryption method. plz don't mistake me
Best Regards, M. J. Jaya Chitra
For What It's Worth = FWIW Use SHA256 - that's pretty strong - we use it in my company (note I'm not saying WHICH company) Mark
-
For What It's Worth = FWIW Use SHA256 - that's pretty strong - we use it in my company (note I'm not saying WHICH company) Mark
Thank you for your kind suggesstion
Best Regards, M. J. Jaya Chitra
-
For What It's Worth = FWIW Use SHA256 - that's pretty strong - we use it in my company (note I'm not saying WHICH company) Mark
Mark Greenwood wrote:
we use it in my company (note I'm not saying WHICH company)
:laugh::laugh: Most companies use this I suspect - as it is very easy to use and very strong. Usually with a strong password as well.
-
Mark Greenwood wrote:
we use it in my company (note I'm not saying WHICH company)
:laugh::laugh: Most companies use this I suspect - as it is very easy to use and very strong. Usually with a strong password as well.
When i tried and go through the SHA256 algorithm i felt it is very difficult to implement and they have used it for encrypting the files but i have to get a password from the user and i have to encrypt the password and i have to store it in the database. Please give me your suggestions because i am new to this concept
Best Regards, M. J. Jaya Chitra