David Garske 6e61a095c7 Added new Xcode project for test suite. Added Xcode workspace file. Added library support for iOS and OS X targets. Updated project files to Xcode 7. Updated README. Added shared user_settings.h. Cleanup of the test.h "ChangeDirBack" function. Cleanup of duplicate ChangeDirBack() code in testsuite.c and adjusted for new Xcode build location. | 9 năm trước cách đây | |
---|---|---|
.. | ||
wolfssl-FIPS.xcodeproj | 9 năm trước cách đây | |
wolfssl.xcodeproj | 9 năm trước cách đây | |
wolfssl.xcworkspace | 9 năm trước cách đây | |
wolfssl_testsuite.xcodeproj | 9 năm trước cách đây | |
README.md | 9 năm trước cách đây | |
include.am | 9 năm trước cách đây | |
user_settings.h | 9 năm trước cách đây |
This directory contains the following files:
wolfssl.xcworkspace
-- workspace with library and testsuite clientwolfssl_testsuite.xcodeproj
-- project to run the testsuite.wolfssl.xcodeproj
-- project to build OS/x and iOS libraries for wolfSSL and/or wolfCryptwolfssl-FIPS.xcodeproj
-- project to build wolfSSL and wolfCrypt-FIPS if availableuser_settings.h
-- custom library settings, which are shared across projectsThe library will output as libwolfssl_osx.a
or 'libwolfssl_ios.adepending on
the target. It will also copy the wolfSSL/wolfCrypt (and the CyaSSL/CtaoCrypt
compatibility) headers into an
includedirectory located in
Build/Products/Debugor
Build/Products/Release`.
For the library and testsuite to link properly the build location needs to be configured as realitive to workspace.
These Xcode projects define the WOLFSSL_USER_SETTINGS
preprocessor
to enable the user_settings.h
file for setting macros across
multiple projects.
If needed the Xcode preprocessors can be modifed with these steps:
This project should build wolfSSL and wolfCrypt using the default settings.
To use the FIPS version, one must have the FIPS sources. The project won't build without them. Please contact info@wolfssl.com for more information about wolfCrypt with FIPS.
By default, this builds the wolfSSL and wolfCrypt with FIPS library. The default configuration enables the settings required for FIPS. Others may be turned on. The project also ensures the FIPS related objects are linked in the proper order.
There are several options of builds. You can make a simulator build, or a device build. Both are debug builds.
You can make an archive for a device, as well. That is a release build.
Simply drag the file libwolfsslXXX.a and the directory include
and drop it into
your project file list pane where it makes sense for you. Allow it to copy the
files over to the project directory. This should automatically add the library
to the list of libraries to link against.
Click on your project target, then the "Build Phases" tab. On the targets list click your target. Click the disclosure triangle on the section "Link Binary With Libraries" and verify libwolfssl.a is in the list. If not, click the "+", and on the "Choose framworks and libraries to add:" dialog, click the button "Add other..." then find the file libwolfssl.a.
Click on the "Build Settings" tab. Scroll down to the section "Search Paths". Add the path to the include directory to the list "Header Search Paths".
When using the FIPS version the following preprocessors need to be defined:
IPHONE
HAVE_FIPS
HAVE_HASHDRBG
HAVE_AESGCM
WOLFSSL_SHA512
WOLFSSL_SHA384
NO_MD4
NO_HC128
NO_RABBIT
NO_DSA
NO_PWDBASED
The approved FIPS source files are from the CyaSSL project tag v3.4.8.fips. The files fips.c and fips_test.c, and the wolfCAVP test app are from the FIPS project tag v3.4.8a. The wolfSSL/wolfCrypt files are from tag v3.4.8.
The FIPS library contains a self-check verify hash. Normally, on the desktop or server build, the library is built as a dynamic library. The library looks the same to every application that builds against it, and can be verified. For static libraries, when linking into your application, the addresses are all fixed, and the verify checksum becomes unusable. iOS does not allow dynamic libraries like this, so static builds are required. This creates a problem. Every time the application is changed, the FIPS checksum will change, because the FIPS library's position in the executable may change.
You need to add something to your application that will output the verifyCore value to be used. The verifyCore in fips_test.c will need to be updated with this value, the library rebuilt, and relinked into your application. The application should not be changed during this process or the verifyCore check will fail again.