Add README for wolfcrypt-jni

pull/2/merge
Chris Conlon 2015-07-06 10:29:19 -06:00
parent b6e000284f
commit e4a8f6245b
1 changed files with 31 additions and 0 deletions

31
README.md 100644
View File

@ -0,0 +1,31 @@
## wolfCrypt JNI
This package provides a Java, JNI-based interface to the native wolfCrypt
FIPS API.
### Compiling
---------
To compile the wolfcrypt-jni wrapper:
1) Compile and install a wolfSSL FIPS release (wolfssl-x.x.x-commercial-fips):
```
$ cd wolfssl-x.x.x-commercial-fips
$ ./configure --enable-fips --enable-keygen
$ make check
$ sudo make install
```
2) Compile the native wolfCrypt JNI object files:
```
$ cd wolfcrypt-jni
$ make
```
3) Compile the wolfCrypt JNI Java sources files, from the wolfcrypt-jni
directory:
```
$ ant
$ ant test
```