go-fips/README.md

35 lines
346 B
Markdown
Raw Normal View History

## go-fips
Proof-Of-Concept for using golang and building a FIPS enabled application.
## Setup
See http://www.openssl.org/docs/fips/UserGuide-2.0.pdf
to set up an environment where fips mode can be enabled
## 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 .
```
## 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 .
```