* Added Kyber to the liboqs Master branch
* Added OQS_MEM_cleanse calls to Kyber
* Updated file formatting with make prettyprint
* Added algorithm datasheet for Kyber
* Added Kyber KAT files
* Copied kyber header file to Visual Studio dir.
* Set version of liboqs master and add draft release notes
* Add alg_version field for KEMs and signature schemes
* Prettyprint
* Added alg_version for qtesla and picnic.
* Update versioning proposal
* Shared library support added
* Ignore warnings regrading no symbols in object files on Mac
* Fix a typo
* Add libtool flag to bike
* Test
* Fix static build flag
* Whitespace
* Separate tests into two parts one exercising exposed api versus intertnal apis
* Openssl include fix
* Fix all-tests.sh
* test already builds kat_kem
* Indentation and variable name change
* Fixed a typo in a comment
* Refactored sig API following nist-branch (also fixes issue 380)
* Fixed Windows compilation error in sig.c.
* Added Picnic to Windows' config, and changed defaul alg to Picnic (since qTesla is not yet supported on Windows)
* Moved sig_picnic and sig_qtesla under sig directory, to harmonize with kem api
* Use different default sig alg on Windows to fix Travis back-compat tests and platform gap.
* Further changes required for OQS to be properly used by applications
* Compare OQS functions's return values to OQS error codes in sig.c.
* Fixed typos in comments.
* Replaced minimal_oqs_sig with example_sig.
* Ensure travis tests fail on error
* Add try-catch block in all-tests.sh
* Ignore example_sig
* Point global-namespace-check to .libs/liboqs.a
* More precise error handling in global-namespace-check
* Warning colours in travis tests and error handling in free-check
* Error handling in style-check
* Clean up style-check
* Removed leftover minimal_sig_oqs ref and VS projects.
* Prettyprint
* Revert clang-format version check
* Re-revert clang-format style check
* Prettyprint
* Added speed_sig to master.
* Removed superfluous extern from sig schemes .h
* Exposed SIDH through KEM API.
* Removed old kex_sidh_msr refs
* Removed kex_sidh_msr refs from Visual Studio project
* Removed kex_sidh_msr from test_kex.
* Added sidh alg sheet
* Skip sidh in kat check (no kat files for sidh, unlike the related sike alg)
* Added return values to sidh KEM methods (to fix wrong default return values on mac).
* Addressed review comments on PR368.
* Removed text_kex from Visual Studio; no more KEX built by default on Windows.
* Removed test_kex from appveyor test.
* Removed minimal_kex from appveyor
* Supporting BIKE KEM reference code
* Hiding print global symbol when VERBOSE!=2
* Supporting USE_OPENSSL + OPENSSL_DIR
* - The file config/.gitkeep is no longer needed its purpose was to allow git having an empty folder (config).
- Moved the file acinclude.m4 to the config directory (where all the *.m4 files are).
- Added .travis/defs.sh - this file holds common definitions used by travis scripts.
- Changed style-check to first check for clang-format only then handle modified files.
- Sodium support is no longer required.
- Breaked configure.ac into sub m4 files
- Sorted the flags list.
- Changed FrodoKEM to Frodo for consistency with SIKE and BIKE. Note that it is already under the KEM directory.
- Chaned USE_* protocl flags to ENABLE_* for consistency
- Adjaust most of the makefile to have a consistent compilation flags
- Added some more compilation warnings.
* Rename functions by using a legend instead of the FN() macro
* prettyprint
* 1) Some more Makefiles cleanup 2)Adding OQS_API defnition - hidding other symbols
* Reverting frodo renaming
* Reverting the checks order.
* Removing NEW_API.md
* pretty print
* 1)Disable bad warnings on gcc4.8/4.9 2) Disable all warnings on SIKE
* Disable the cast-align warning for now
* Documentation
* 1) Reenable BIKE error messages
2) Auto detection of AVX/AVX2/BMI features.
* Enable AVX features only on X86_64 Linux platforms
* Adding BIKE additional implementation for Linux(x86_64) and GCC
* Fixing configure.ac when OpenSSL is disabled
* Enabling BIKE's AVX512 implementation
* Wrap AVX512 code with ifdef
* Changes from code review
* Prettyprint
* Fix typo
* Rename symbol
* Added qTESLA (I, III-size, III-speed) to master branch.
* Renamed some qtesla functions to satisfy coding guidelines.
* prettyprint
* Removed const int value from array init, was failing on Travis/macOS.
* Initial attempt at adding new KEM API and first KEM (SIKE)
* Fix name spacing in kem_sike
* Prettyprint kem_sike
* Use OQS_STATUS return codes
* Get speed_kem working
* Add missing config.h file for SIKE
* Move rand.h and rand.c to common directory and add most of RNG API from nist-branch
* Try to fix continuous integration errors
* Try fixing compilation bug on Windows
* Copy common.h and common.c from nist-branch
* Add OpenSSL PRNG if OpenSSL enabled
* Move common files around to match locations in nist-branch
* Add OpenSSL include to common build
* Only do prettyprint check on some Travis builds to shorten runtime
* Reorganize some files
* Missing variable in Travis config
* Replaced the implementation of Picnic with the optimized version of https://github.com/IAIK/Picnic.git.
Some notes:
- Picnic is now a git submodule, built separately (build_picnic.sh) and linked into OQS.
- The params are part of the Picnic library, no need to generate them separately.
- The Picnic params have been renamed
- Picnic has been disabled in the Visual Studio build (until the library supports VS)
* Deleted script to download old picnic implementation.
* Added picnic build commands to the configure script.
* Updated travis to build new picnic lib.
* Added note that clone must be recursive (to get picnic submodule).
* Removed dependency on m4ri and added picnic build instruction in travis (since apparently the configure scrip is not run as usual).
* Changed build_picnic.sh script invocation.
* install cmake3.8
Fix for PR 190
* commit
* commit
* Pulled down update to picnic submodule.
* pulled picnic update fixing compat macros failure
* Added openssl lib to test_sig linker if openssl is enabled.
* Disable Picnic on gcc < 5.
* Fixed travis.yml syntax error.
* Pulled updates to Picnic submodule (fixing build error on MacOS).
* Removed banned-functions test that only checks for bzero. For some strange reason, it doesn't work on travis while building picnic, even if bzero is not in the code.
* prettyprint
* Changed prettyprint's picnic exclusion dir.
* external lib changes
* Disable LTO in Picnic that prevents lib merging.
* Changed mode on build_picnic.sh.
* Added newline at the end of the file.
* Updated version of Picnic.
* Added patch to picnic to satisfy the global functions namespace convention.
* Added force option to patch to avoid error when rebuilding.
* Updated picnic-related entries, and added cmake files (obtained by travis).
* Updated ignore patch for picnic.
* Ignore mods (patched files) in 3rd party picnic library.
* Changed return code if no sig algs are configured, from error to success.
It's not really an error, and this makes the Travis build fail otherwise.
* Updated external picnic, and modified how it is patched and built (to avoid multiple patching).
* disabled Picnic on gcc 4
* Silenced picnic's dry-run patching (to avoid error messages if lib has already been patched).
* added comments to script
* Ignore (patched) submodule when checking for modified files.
Also delete a "grep -v" for picnic that meant to do the same thing, but
was in the wrong place after refactoring.
* Added --ignore-submodules to second call to git status
* Add temp/ to gitignore, to prevent Travis style-check failure on mac.
* Original newhope avx2 code and a patchfile
* Integrate AVX2 into kex
* Makefile.am is needed whether the algorithm is enabled or not
* Updated patch
style-check
update
update
Life is painful
update
* Update Documentation - How to integrate external implementations
* Remove binary files
* brew update for mac
* Makefile.am included
* Remove patch functionality from travis test
* Revert patch
* Rename files.
* Rename file.
* Fix - Unintended sign extension
* Fix - if cdf_table_len is 0 then there will be a problem
* Fix - Resource Leak
* Integer handling issues (OVERFLOW_BEFORE_WIDEN)
* Update Resource leak
* pretty print
* Provide func declaration
* Removing picnic flags which make it disabled by default.
* Remove picnic flag