We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents bbd02b8 + b9b3b3a commit f2e7dcaCopy full SHA for f2e7dca
1 file changed
go/ql/src/Security/CWE-327/examples/Crypto.go
@@ -13,7 +13,7 @@ func EncryptMessageWeak(key []byte, message []byte) (dst []byte) {
13
}
14
15
func EncryptMessageStrong(key []byte, message []byte) (dst []byte) {
16
- // GOOD, AES is a weak crypto algorithm
+ // GOOD, AES is a strong crypto algorithm
17
block, _ := aes.NewCipher(key)
18
block.Encrypt(dst, message)
19
return
0 commit comments