rspec/rules/S4790/swift/rule.adoc

33 lines
537 B
Plaintext
Raw Normal View History

include::../description.adoc[]
include::../ask-yourself.adoc[]
include::../recommended.adoc[]
== Sensitive Code Example
----
import CryptoSwift
let bytes:Array<UInt8> = [0x01, 0x02, 0x03]
let digest = input.md5() // Sensitive
----
== Compliant Solution
----
import CryptoSwift
let bytes:Array<UInt8> = [0x01, 0x02, 0x03]
2021-02-16 10:34:10 +01:00
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[]