rspec/rules/S4790/swift/rule.adoc

45 lines
713 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
2022-02-04 17:28:24 +01:00
[source,swift]
----
import CryptoSwift
let bytes:Array<UInt8> = [0x01, 0x02, 0x03]
2021-02-16 10:34:10 +01:00
let digest = input.sha512() // Compliant
----
include::../see-mobile.adoc[]
ifdef::env-github,rspecator-view[]
'''
== Implementation Specification
(visible only on this page)
include::../message.adoc[]
include::../highlighting.adoc[]
'''
== Comments And Links
(visible only on this page)
include::../comments-and-links.adoc[]
endif::env-github,rspecator-view[]