check for license files
This commit is contained in:
부모
bdf12d8258
커밋
3b47fb2db7
@ -7,7 +7,7 @@ matrix:
|
||||
- os: linux
|
||||
compiler: gcc
|
||||
env:
|
||||
- MAKETARGET="test-all tidy-all check-format check-metadata"
|
||||
- MAKETARGET="test-all tidy-all check-format check-metadata check-license-files"
|
||||
addons:
|
||||
apt:
|
||||
packages:
|
||||
|
8
Makefile
8
Makefile
@ -189,6 +189,14 @@ run-sanitizer-all: sanitizer-all
|
||||
done
|
||||
@echo Tests completed
|
||||
|
||||
.PHONY: check-license-files
|
||||
check-license-files:
|
||||
@echo Checking that LICENSE files exist
|
||||
@for scheme in $(ALL_SCHEMES); do \
|
||||
echo Checking for $$scheme/clean/LICENSE;\
|
||||
test -f $$scheme/clean/LICENSE || exit 1 ;\
|
||||
done
|
||||
|
||||
.PHONY: test-all
|
||||
test-all: run-functest-all run-valgrind-all run-sanitizer-all run-testvectors-all run-symbol-namespace-all
|
||||
|
||||
|
@ -54,7 +54,7 @@ _The checking of items on this list is still being developed. Checked items shou
|
||||
* [ ] Makefile-based build for each separate scheme
|
||||
* [ ] Makefile-based build for Windows (`nmake`)
|
||||
* [x] All exported symbols are namespaced with `PQCLEAN_SCHEMENAME_`
|
||||
* [ ] Each implementation comes with a `LICENSE` file (see below)
|
||||
* [x] Each implementation comes with a `LICENSE` file (see below)
|
||||
* [x] Each scheme comes with a `META.yml` file giving details about version of the algorithm, designers
|
||||
* [x] Each individual implementation is specified in `META.yml`.
|
||||
|
||||
|
15
crypto_kem/kyber768/clean/LICENSE
Normal file
15
crypto_kem/kyber768/clean/LICENSE
Normal file
@ -0,0 +1,15 @@
|
||||
Public Domain
|
||||
Authors: Joppe Bos,
|
||||
Léo Ducas,
|
||||
Eike Kiltz ,
|
||||
Tancrède Lepoint,
|
||||
Vadim Lyubashevsky,
|
||||
John Schanck,
|
||||
Peter Schwabe,
|
||||
Gregor Seiler,
|
||||
Damien Stehlé
|
||||
|
||||
For Keccak and AES we are using public-domain
|
||||
code from sources and by authors listed in
|
||||
comments on top of the respective files.
|
||||
|
1
crypto_sign/dilithium-iii/clean/LICENSE
Normal file
1
crypto_sign/dilithium-iii/clean/LICENSE
Normal file
@ -0,0 +1 @@
|
||||
Public Domain
|
불러오는 중...
Reference in New Issue
Block a user