encryption - What is the safest algorithm in Kohana's auth module? -
I would like to use the crypt function and would like to use the bugfish encryption, but the current implementation of this module is using the hash function That does not offer this encryption method. So, what is the safest algorithm in Kohana's Auth module? Will SHA-512 be a good option or is it better to modify the module to use crypt and bluffish?
To answer this stack overflow question:
It is enough to say Whether the bcrypt or SHA-512 is very good and the answer is yes, the algorithm is adequately secure that no violation will be done through the error of implementation, not cryptanalysis. In other words, it seems already sensible to use some stringent implementation already. Trying to modify Kohana versus modules and potentially implementing new implementation errors.
Comments
Post a Comment