2011-01-29 17:05:25 +00:00
|
|
|
Preliminary status and build information for FIPS module v2.0
|
|
|
|
|
2011-08-16 11:25:56 +00:00
|
|
|
NB: if you are cross compiling you now need to use the latest "incore" script
|
2011-08-16 12:45:26 +00:00
|
|
|
this can be found at util/incore in the tarballs.
|
2011-05-10 10:59:25 +00:00
|
|
|
|
2011-04-24 11:38:22 +00:00
|
|
|
If you have any object files from a previous build do:
|
|
|
|
|
|
|
|
make clean
|
|
|
|
|
2011-01-29 17:05:25 +00:00
|
|
|
To build the module do:
|
|
|
|
|
2011-10-12 18:48:01 +00:00
|
|
|
./config fipscanisteronly
|
2011-01-29 17:05:25 +00:00
|
|
|
make
|
|
|
|
|
|
|
|
Build should complete without errors.
|
|
|
|
|
|
|
|
Run test suite:
|
|
|
|
|
|
|
|
test/fips_test_suite
|
|
|
|
|
|
|
|
again should complete without errors.
|
|
|
|
|
2011-02-01 17:14:07 +00:00
|
|
|
Run test vectors:
|
|
|
|
|
|
|
|
1. Download an appropriate set of testvectors from www.openssl.org/docs/fips
|
2011-10-12 18:48:01 +00:00
|
|
|
only the fips-2.0 testvector files are usable for complete tests.
|
2011-02-01 17:14:07 +00:00
|
|
|
|
|
|
|
2. Extract the files to a suitable directory.
|
|
|
|
|
|
|
|
3. Run the test vector perl script, for example:
|
|
|
|
|
|
|
|
cd fips
|
2011-10-12 18:48:01 +00:00
|
|
|
perl fipsalgtest.pl --dir=/wherever/stuff/was/extracted
|
2011-02-01 17:14:07 +00:00
|
|
|
|
|
|
|
4. It should say "passed all tests" at the end. Report full details of any
|
|
|
|
failures.
|
|
|
|
|
2011-10-12 18:48:01 +00:00
|
|
|
If you wish to use the older 1.2.x testvectors (for example those from 2007)
|
|
|
|
you need the command line switch --disable-v2 to fipsalgtest.pl
|
|
|
|
|
2011-02-23 16:06:50 +00:00
|
|
|
Examine the external symbols in fips/fipscanister.o they should all begin
|
|
|
|
with FIPS or fips. One way to check with GNU nm is:
|
|
|
|
|
2011-06-22 12:30:18 +00:00
|
|
|
nm -g --defined-only fips/fipscanister.o | grep -v -i fips
|
2011-01-29 17:05:25 +00:00
|
|
|
|
2011-06-17 21:08:15 +00:00
|
|
|
If you get *any* output at all from this test (i.e. symbols not starting with
|
|
|
|
fips or FIPS) please report it.
|
|
|
|
|
2011-04-11 00:22:42 +00:00
|
|
|
Restricted tarball tests.
|
|
|
|
|
|
|
|
The validated module will have its own tarball containing sufficient code to
|
|
|
|
build fipscanister.o and the associated algorithm tests. You can create a
|
|
|
|
similar tarball yourself for testing purposes using the commands below.
|
|
|
|
|
|
|
|
Standard restricted tarball:
|
|
|
|
|
|
|
|
make -f Makefile.fips dist
|
|
|
|
|
|
|
|
Prime field field only ECC tarball:
|
|
|
|
|
|
|
|
make NOEC2M=1 -f Makefile.fips dist
|
|
|
|
|
|
|
|
Once you've created the tarball extract into a fresh directory and do:
|
|
|
|
|
|
|
|
./config
|
|
|
|
make
|
|
|
|
|
|
|
|
You can then run the algorithm tests as above. This build automatically uses
|
2011-06-22 12:30:18 +00:00
|
|
|
fipscanisterbuild and no-ec2m as appropriate.
|
2011-04-11 00:22:42 +00:00
|
|
|
|
2011-06-17 21:08:15 +00:00
|
|
|
FIPS capable OpenSSL test: WARNING PRELIMINARY INSTRUCTIONS, SUBJECT TO CHANGE.
|
|
|
|
|
|
|
|
At least initially the test module and FIPS capable OpenSSL may change and
|
|
|
|
by out of sync. You are advised to check for any changes and pull the latest
|
|
|
|
source from CVS if you have problems. See anon CVS and rsync instructions at:
|
|
|
|
|
|
|
|
http://www.openssl.org/source/repos.html
|
|
|
|
|
|
|
|
Make or download a restricted tarball from ftp://ftp.openssl.org/snapshot/
|
|
|
|
|
|
|
|
If required set the environment variable FIPSDIR to an appropriate location
|
|
|
|
to install the test module. If cross compiling set other environment
|
|
|
|
variables too.
|
|
|
|
|
|
|
|
In this restricted tarball on a Linux or U*ix like system run:
|
|
|
|
|
|
|
|
./config
|
|
|
|
make
|
|
|
|
make install
|
|
|
|
|
|
|
|
On Windows from a VC++ environment do:
|
|
|
|
|
|
|
|
ms\do_fips
|
|
|
|
|
|
|
|
This will build and install the test module and some associated files.
|
|
|
|
|
|
|
|
Now download the latest version of the OpenSSL 1.0.1 branch from either a
|
|
|
|
snapshot or preferably CVS. For Linux do:
|
|
|
|
|
|
|
|
./config fips [other args]
|
|
|
|
make
|
|
|
|
|
|
|
|
For Windows:
|
|
|
|
|
2011-06-18 17:21:27 +00:00
|
|
|
perl Configure VC-WIN32 fips [other args]
|
2011-06-17 21:08:15 +00:00
|
|
|
ms\do_nasm
|
|
|
|
nmake -f ms\ntdll.mak
|
|
|
|
|
|
|
|
(or ms\nt.mak for a static build).
|
|
|
|
|
|
|
|
Where [other args] can be any other arguments you use for an OpenSSL build
|
|
|
|
such as "shared" or "zlib".
|
|
|
|
|
|
|
|
This will build the fips capable OpenSSL and link it to the test module. You
|
|
|
|
can now try linking and testing applications against the FIPS capable OpenSSL.
|
|
|
|
|
|
|
|
Please report any problems to either the openssl-dev mailing list or directly
|
|
|
|
to me steve@openssl.org . Check the mailing lists regularly to avoid duplicate
|
|
|
|
reports.
|
|
|
|
|
2011-01-29 17:05:25 +00:00
|
|
|
Known issues:
|
|
|
|
|
2011-05-04 18:43:32 +00:00
|
|
|
Code needs extensively reviewing to ensure it builds correctly on
|
|
|
|
supported platforms and is compliant with FIPS 140-2.
|
2011-06-17 21:08:15 +00:00
|
|
|
The "FIPS capable OpenSSL" is still largely untested, it builds and runs
|
|
|
|
some simple tests OK on some systems but needs far more "real world" testing.
|