README.md: useful info and docs

This commit is contained in:
Vincent Batts 2015-03-25 16:02:24 -04:00
parent c6b4ecc9c1
commit f8fe4eb769
1 changed files with 12 additions and 5 deletions

View File

@ -1,14 +1,21 @@
## go-fips
# go-fips
Proof-Of-Concept for using golang and building a FIPS enabled application.
Collect FIPS mode information about your runtime.
Whether the kernel was booted with FIPS mode parameters. And whether the
openssl linked can properly enable FIPS mode.
## Setup
# 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
## Building
# Building
```
go build .
@ -20,7 +27,7 @@ and
go build -tags fips .
```
## Testing
# Testing
```
go test .