Compare commits

..

7 Commits
sike ... main

Author SHA1 Message Date
dafff237c2 Merge pull request 'sike' (#1) from sike into main
Some checks reported errors
continuous-integration/drone/push Build was killed
Reviewed-on: #1
2021-04-19 00:00:34 +01:00
e3b0c56e38 Update '.drone.yml'
Some checks reported errors
continuous-integration/drone/push Build was killed
2021-04-17 01:22:27 +01:00
d7414c6cdc Update '.drone.yml'
Some checks reported errors
continuous-integration/drone/push Build was killed
2021-04-17 01:18:01 +01:00
9d95c95af4 Update '.drone.yml'
Some checks reported errors
continuous-integration/drone/push Build was killed
2021-04-17 01:10:53 +01:00
c9c69b7e93 Update '.drone.yml'
Some checks failed
continuous-integration/drone/push Build is failing
2021-04-17 00:48:20 +01:00
21197d13b5 Add '.drone.yml'
Some checks failed
continuous-integration/drone/push Build is failing
2021-04-17 00:46:36 +01:00
d03a10fbba Update 'README.md' 2021-04-17 00:19:00 +01:00
2 changed files with 19 additions and 0 deletions

17
.drone.yml Normal file
View File

@ -0,0 +1,17 @@
kind: pipeline
type: exec
name: default
node:
uarch: skylake
steps:
- name: build
commands:
- git submodule init
- git submodule update --recursive --remote
- mkdir build
- cd build
- cmake ..
- make
- ./test

View File

@ -1,5 +1,7 @@
# PQ Crypto Catalog
[![Build Status](https://drone.amongbytes.com/api/badges/kris/pqc/status.svg)](https://drone.amongbytes.com/kris/pqc)
This is a repository of post-quantum schemes copied from either the submission to the NIST Post-Quantum Standardization or [PQClean](https://github.com/PQClean/PQClean) project. The goal of the library is to provide easy to use API which enables quick experimentation with some post-quantum cryptographic schemes.
Users shouldn't expect any level of security provided by this code. The library is not meant to be used on live production systems.