Mark the inclusion of md5 in fips.go as ignore by gas
This is a false positive as we are testing existence not actually using MD5. Signed-off-by: Justin Cormack <justin.cormack@docker.com>
This commit is contained in:
parent
562492eaf0
commit
ddda745454
2
fips.go
2
fips.go
|
|
@ -3,7 +3,7 @@ package notary
|
||||||
import (
|
import (
|
||||||
"crypto"
|
"crypto"
|
||||||
// Need to import md5 so can test availability.
|
// Need to import md5 so can test availability.
|
||||||
_ "crypto/md5"
|
_ "crypto/md5" // #nosec
|
||||||
)
|
)
|
||||||
|
|
||||||
// FIPSEnabled returns true if running in FIPS mode.
|
// FIPSEnabled returns true if running in FIPS mode.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue