go-fips/README.md

42 lines
490 B
Markdown
Raw Permalink Normal View History

2015-03-25 20:02:24 +00:00
# go-fips
2015-03-25 20:02:24 +00:00
Collect FIPS mode information about your runtime.
2015-03-25 20:02:24 +00:00
Whether the kernel was booted with FIPS mode parameters. And whether the
openssl linked can properly enable FIPS mode.
2015-03-25 20:02:24 +00:00
# Docs
https://godoc.org/github.com/vbatts/go-fips
# Setup
See http://www.openssl.org/docs/fips/UserGuide-2.0.pdf
to set up an environment where fips mode can be enabled
2015-03-25 20:02:24 +00:00
# Building
2015-03-25 19:10:15 +00:00
```
go build .
```
2015-03-25 19:10:15 +00:00
and
2015-03-25 19:10:15 +00:00
```
go build -tags fips .
```
2015-03-25 20:02:24 +00:00
# Testing
2015-03-25 19:10:15 +00:00
```
go test .
```
2015-03-25 19:10:15 +00:00
and
2015-03-25 19:10:15 +00:00
```
go test -tags fips .
```