Good day. There is a very cool thing in php for hashing and checking passwords. In particular, the functions password_hash () and password_verify (). I need the same thing for CLI C ++. I know for C # there is CryptSharp, where it is implemented. But libraries from C # are not suitable for C ++. Are there any analogues for C ++?
- Is implementing an own function based on primitives from openSSL not an option? - Vladimir Martyanov
- oneIf it is for C #, then using in C ++ / CLI should not be a problem, it’s still the same .Net. - αλεχολυτ
|