Reformat doc and move change note

This commit is contained in:
smiddy007
2023-04-19 13:39:18 -04:00
parent 31b56bf966
commit 4f7275f064
2 changed files with 6 additions and 1 deletions

View File

@@ -1,5 +0,0 @@
---
category: minorAnalysis
---
* The Forge module in `CryptoLibraries.qll` now correctly classifies SHA-512/224,
SHA-512/256, and SHA-512/384 hashes used in message digests as NonKeyCiphers.

View File

@@ -630,7 +630,12 @@ private module Forge {
or
// require("forge").sha512.sha256.create().update('The quick brown fox jumps over the lazy dog');
this =
getAnImportNode().getMember("md").getMember(algorithmName).getAMember().getMember("create").getACall()
getAnImportNode()
.getMember("md")
.getMember(algorithmName)
.getAMember()
.getMember("create")
.getACall()
)
}