Text file src/cmd/go/testdata/mod/example.com_importcrypto_v1.0.0.txt
1 example.com/importcrypto contains a package that imports crypto/sha256 2 It's used by the script test case mod_get_fips140_issue73649 3 4 -- .info -- 5 {"Version":"v1.0.0"} 6 -- .mod -- 7 module example.com/importcrypto 8 9 go 1.27 10 -- go.mod -- 11 module example.com/importcrypto 12 13 go 1.27 14 -- importcypto.go -- 15 package p 16 17 import _ "crypto/sha256" 18 19 func main() {} 20