include::../description.adoc[] include::../ask-yourself.adoc[] include::../recommended.adoc[] == Sensitive Code Example ---- import CryptoSwift let bytes:Array = [0x01, 0x02, 0x03] let digest = input.md5() // Sensitive ---- == Compliant Solution ---- import CryptoSwift let bytes:Array = [0x01, 0x02, 0x03] let digest = input.sha512() // Compliant ---- include::../see.adoc[] ifdef::rspecator-view[] == Comments And Links (visible only on this page) include::../comments-and-links.adoc[] endif::rspecator-view[]