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:
Justin Cormack 2018-04-11 14:47:59 +01:00
parent 562492eaf0
commit ddda745454
No known key found for this signature in database
GPG Key ID: 609102888A2EE3F9
1 changed files with 1 additions and 1 deletions

View File

@ -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.