include::../description.adoc[] include::../ask-yourself.adoc[] include::../recommended.adoc[] == Sensitive Code Example ---- $hash = md5($data); // Sensitive $hash = sha1($data); // Sensitive ---- == Compliant Solution ---- // for a password $hash = password_hash($password, PASSWORD_BCRYPT); // Compliant // other context $hash = hash("sha512", $data); ---- include::../see.adoc[] ifdef::rspecator-view[] == Comments And Links (visible only on this page) include::comments-and-links.adoc[] endif::rspecator-view[]