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
* Bump Go version to 1.25.1
* Update CHANGELOG entry
* Bump the version of golangci-lint
* Remove references to the ms_tls13kdf build tag
* Download go module dependencies before GODEBUG=fips140=only is set
* Exclude X25519 curve types when testing in FIPS-140 mode
* Stricter check
* Add missing license header
* Exclude X25519 curve types when testing in FIPS-140-only mode
* Use stricter check
* Update NOTICE files
* Remove IsFIPS140Only helper function
* Set GODEBUG=tlsmlkem=0 for FIPS140-only unit tests
* Remove replace directive from go.mod
* Try not pre-downloading dependencies
Copy file name to clipboardExpand all lines: magefile.go
+17-13Lines changed: 17 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -326,7 +326,7 @@ var (
326
326
tags=append(tags, "snapshot")
327
327
}
328
328
ifisFIPS() {
329
-
tags=append(tags, "requirefips", "ms_tls13kdf")
329
+
tags=append(tags, "requirefips")
330
330
}
331
331
returnstrings.Join(tags, ",")
332
332
})
@@ -486,7 +486,7 @@ func (Check) Notice() {
486
486
// DetectFIPSCryptoImports will do a best effort attempt to ensure that the imports list for FIPS compatible artifacts does not contain any external crypto libraries.
487
487
// Specifically it will fail if the modules list contains an entry with: "crypto", "gokrb5", or "pbkdf2"
0 commit comments