1
1
miroir de https://github.com/henrydcase/pqc.git synchronisé 2024-11-22 07:35:38 +00:00

pqapi.h -> pqc.h

Cette révision appartient à :
Henry Case 2021-03-24 23:34:34 +00:00
Parent b36a5ff8da
révision f02248d478
5 fichiers modifiés avec 17 ajouts et 3 suppressions

Voir le fichier

@ -77,7 +77,7 @@ else()
endif()
include_directories(
inc
public
src/common/
src
)

Voir le fichier

@ -23,3 +23,17 @@ This is a repository of post-quantum schemes coppied from the submission to the
**Alternate candidates:**
* SPHINCS+
## Building
CMake is used to build the library:
```
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Release ..
make
```
Build outputs two libraries, a static ``libpqc_s.a`` and dynamic ``libpqc.so``, which can be linked with a project.

Voir le fichier

Voir le fichier

@ -1,6 +1,6 @@
#include <stdint.h>
#include <stdbool.h>
#include "pqapi.h"
#include <pqc/pqc.h>
// PQClean include
#include "sign/rainbow/rainbowV-classic/clean/api.h"

Voir le fichier

@ -1,7 +1,7 @@
#include <algorithm>
#include <vector>
#include <gtest/gtest.h>
#include "capi/pqapi.h"
#include <pqc/pqc.h>
TEST(Kyber,KEMOneOff) {