Ruby: remove outdated test comment

This commit is contained in:
Alex Ford
2024-06-18 17:51:49 +01:00
parent d79a253c20
commit 51f3f15e42

View File

@@ -15,11 +15,11 @@ Digest::MD5.hexdigest(x) # BAD: weak hash function used for sensitive data
def get_safe_data()
return "hello"
end
def get_password()
return "changeme"
end
# FIXME
Digest::MD5.hexdigest(get_safe_data()) # OK: input is not sensitive
Digest::MD5.hexdigest(get_password()) # BAD: weak hash function used for sensitive data