mirror of
https://github.com/open-quantum-safe/liboqs.git
synced 2025-10-06 00:03:35 -04:00
* Enable NTRU * Add NTRU to Travis build. * prettyprint * Rename build script * Try to avoid Travis failure * Add NTRU to build on macOS and change linking. * Fix Travis build for NTRU. * Add NTRU to README.md (and update some other aspects too).
11 lines
189 B
Bash
Executable File
11 lines
189 B
Bash
Executable File
#!/bin/bash
|
|
|
|
mkdir external
|
|
cd external
|
|
wget https://github.com/NTRUOpenSourceProject/NTRUEncrypt/archive/master.zip
|
|
unzip master
|
|
cd NTRUEncrypt-master
|
|
./autogen.sh
|
|
./configure
|
|
make -j
|