Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion go/ql/src/Security/CWE-327/examples/Crypto.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ func EncryptMessageWeak(key []byte, message []byte) (dst []byte) {
}

func EncryptMessageStrong(key []byte, message []byte) (dst []byte) {
// GOOD, AES is a weak crypto algorithm
// GOOD, AES is a strong crypto algorithm
block, _ := aes.NewCipher(key)
block.Encrypt(dst, message)
return
Expand Down
Loading