You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// 3 checksum generated with the SHA256 hashing algorithm.
665
665
if(sourceFile.checksumType==1)
666
666
{
667
-
_hashAlgorithm=System.Security.Cryptography.MD5.Create();// lgtm [cs/weak-crypto] The PDB specifies the checksum algorithm. This is not controlled by TraceEvent.
667
+
// CodeQL [SM02196] The checksum algorithm is specified by the built artifact. This is not controlled by TraceEvent.
668
+
// CodeQL [SM03938] The checksum algorithm is specified by the built artifact. This is not controlled by TraceEvent.
669
+
// CodeQL [SM03939] The checksum algorithm is specified by the built artifact. This is not controlled by TraceEvent.
_hashAlgorithm=System.Security.Cryptography.SHA1.Create();// lgtm [cs/weak-crypto] The PDB specifies the checksum algorithm. This is not controlled by TraceEvent.
674
+
// CodeQL [SM02196] The checksum algorithm is specified by the built artifact. This is not controlled by TraceEvent.
675
+
// CodeQL [SM03938] The checksum algorithm is specified by the built artifact. This is not controlled by TraceEvent.
676
+
// CodeQL [SM03939] The checksum algorithm is specified by the built artifact. This is not controlled by TraceEvent.
_hashAlgorithm=System.Security.Cryptography.MD5.Create();// lgtm [cs/weak-crypto] The checksum algorithm is specified by the injected source. This is not controlled by TraceEvent.
734
+
// CodeQL [SM02196] The checksum algorithm is specified by the built artifact. This is not controlled by TraceEvent.
735
+
// CodeQL [SM03938] The checksum algorithm is specified by the built artifact. This is not controlled by TraceEvent.
736
+
// CodeQL [SM03939] The checksum algorithm is specified by the built artifact. This is not controlled by TraceEvent.
_hashAlgorithm=System.Security.Cryptography.SHA1.Create();// lgtm [cs/weak-crypto] The checksum algorithm is specified by the injected source. This is not controlled by TraceEvent.
741
+
// CodeQL [SM02196] The checksum algorithm is specified by the built artifact. This is not controlled by TraceEvent.
742
+
// CodeQL [SM03938] The checksum algorithm is specified by the built artifact. This is not controlled by TraceEvent.
743
+
// CodeQL [SM03939] The checksum algorithm is specified by the built artifact. This is not controlled by TraceEvent.
_hashAlgorithm=System.Security.Cryptography.SHA1.Create();// lgtm [cs/weak-crypto] The PDB specifies the checksum algorithm. This is not controlled by TraceEvent.
122
+
// CodeQL [SM02196] The PDB specifies the checksum algorithm. This is not controlled by TraceEvent.
123
+
// CodeQL [SM03938] The PDB specifies the checksum algorithm. This is not controlled by TraceEvent.
124
+
// CodeQL [SM03939] The PDB specifies the checksum algorithm. This is not controlled by TraceEvent.
0 commit comments