blob: c41bab99307bfc71bc69ea876e6640b68b099667 [file] [log] [blame]
Dr. Stephen Henson44f54a12011-01-29 17:05:25 +00001Preliminary status and build information for FIPS module v2.0
2
Dr. Stephen Henson4c1d92c2011-08-16 11:25:56 +00003NB: if you are cross compiling you now need to use the latest "incore" script
Dr. Stephen Hensoneea98322011-08-16 12:45:26 +00004this can be found at util/incore in the tarballs.
Dr. Stephen Henson21a40da2011-05-10 10:59:25 +00005
Dr. Stephen Hensonc36ce812011-04-24 11:38:22 +00006If you have any object files from a previous build do:
7
8make clean
9
Dr. Stephen Henson44f54a12011-01-29 17:05:25 +000010To build the module do:
11
Dr. Stephen Hensonce014822011-10-12 18:48:01 +000012./config fipscanisteronly
Dr. Stephen Henson44f54a12011-01-29 17:05:25 +000013make
14
15Build should complete without errors.
16
Dr. Stephen Henson0a7fcce2011-10-19 11:47:21 +000017Build test utilities:
18
19make build_tests
20
Dr. Stephen Henson44f54a12011-01-29 17:05:25 +000021Run test suite:
22
23test/fips_test_suite
24
25again should complete without errors.
26
Dr. Stephen Henson5eedacc2011-02-01 17:14:07 +000027Run test vectors:
28
291. Download an appropriate set of testvectors from www.openssl.org/docs/fips
Dr. Stephen Hensonce014822011-10-12 18:48:01 +000030 only the fips-2.0 testvector files are usable for complete tests.
Dr. Stephen Henson5eedacc2011-02-01 17:14:07 +000031
322. Extract the files to a suitable directory.
33
343. Run the test vector perl script, for example:
35
36 cd fips
Dr. Stephen Hensonce014822011-10-12 18:48:01 +000037 perl fipsalgtest.pl --dir=/wherever/stuff/was/extracted
Dr. Stephen Henson5eedacc2011-02-01 17:14:07 +000038
394. It should say "passed all tests" at the end. Report full details of any
40 failures.
41
Dr. Stephen Hensonce014822011-10-12 18:48:01 +000042If you wish to use the older 1.2.x testvectors (for example those from 2007)
43you need the command line switch --disable-v2 to fipsalgtest.pl
44
Dr. Stephen Henson8aa6cff2011-02-23 16:06:50 +000045Examine the external symbols in fips/fipscanister.o they should all begin
46with FIPS or fips. One way to check with GNU nm is:
47
Dr. Stephen Hensonce025892011-06-22 12:30:18 +000048 nm -g --defined-only fips/fipscanister.o | grep -v -i fips
Dr. Stephen Henson44f54a12011-01-29 17:05:25 +000049
Dr. Stephen Henson6cdcb922011-06-17 21:08:15 +000050If you get *any* output at all from this test (i.e. symbols not starting with
51fips or FIPS) please report it.
52
Dr. Stephen Hensonf9bf6312011-04-11 00:22:42 +000053Restricted tarball tests.
54
55The validated module will have its own tarball containing sufficient code to
56build fipscanister.o and the associated algorithm tests. You can create a
57similar tarball yourself for testing purposes using the commands below.
58
59Standard restricted tarball:
60
61make -f Makefile.fips dist
62
63Prime field field only ECC tarball:
64
65make NOEC2M=1 -f Makefile.fips dist
66
67Once you've created the tarball extract into a fresh directory and do:
68
69./config
70make
71
72You can then run the algorithm tests as above. This build automatically uses
Dr. Stephen Hensonce025892011-06-22 12:30:18 +000073fipscanisterbuild and no-ec2m as appropriate.
Dr. Stephen Hensonf9bf6312011-04-11 00:22:42 +000074
Dr. Stephen Henson6cdcb922011-06-17 21:08:15 +000075FIPS capable OpenSSL test: WARNING PRELIMINARY INSTRUCTIONS, SUBJECT TO CHANGE.
76
77At least initially the test module and FIPS capable OpenSSL may change and
78by out of sync. You are advised to check for any changes and pull the latest
79source from CVS if you have problems. See anon CVS and rsync instructions at:
80
81http://www.openssl.org/source/repos.html
82
83Make or download a restricted tarball from ftp://ftp.openssl.org/snapshot/
84
85If required set the environment variable FIPSDIR to an appropriate location
86to install the test module. If cross compiling set other environment
87variables too.
88
89In this restricted tarball on a Linux or U*ix like system run:
90
91./config
92make
93make install
94
95On Windows from a VC++ environment do:
96
97ms\do_fips
98
99This will build and install the test module and some associated files.
100
101Now download the latest version of the OpenSSL 1.0.1 branch from either a
102snapshot or preferably CVS. For Linux do:
103
104./config fips [other args]
105make
106
107For Windows:
108
Dr. Stephen Hensona2ab6982011-06-18 17:21:27 +0000109perl Configure VC-WIN32 fips [other args]
Dr. Stephen Henson6cdcb922011-06-17 21:08:15 +0000110ms\do_nasm
111nmake -f ms\ntdll.mak
112
113(or ms\nt.mak for a static build).
114
115Where [other args] can be any other arguments you use for an OpenSSL build
116such as "shared" or "zlib".
117
118This will build the fips capable OpenSSL and link it to the test module. You
119can now try linking and testing applications against the FIPS capable OpenSSL.
120
121Please report any problems to either the openssl-dev mailing list or directly
122to me steve@openssl.org . Check the mailing lists regularly to avoid duplicate
123reports.
124
Dr. Stephen Henson44f54a12011-01-29 17:05:25 +0000125Known issues:
126
Dr. Stephen Hensonc9adde02011-05-04 18:43:32 +0000127Code needs extensively reviewing to ensure it builds correctly on
128supported platforms and is compliant with FIPS 140-2.
Dr. Stephen Henson6cdcb922011-06-17 21:08:15 +0000129The "FIPS capable OpenSSL" is still largely untested, it builds and runs
130some simple tests OK on some systems but needs far more "real world" testing.