1
1
réplica de https://github.com/henrydcase/pqc.git sincronizado 2024-11-22 07:35:38 +00:00
Este cometimento está contido em:
Thom Wiggers 2019-01-12 12:18:32 -08:00
ascendente ab412bda38
cometimento 06dcca459e
Não foi encontrada uma chave conhecida para esta assinatura, na base de dados
ID da chave GPG: 001BB0A7CE26E363

Ver ficheiro

@ -22,29 +22,31 @@ listed below.
## Requirements on C implementations that are automatically checked
* Code is valid C99
* Passes functional tests
* API functions do not write outside provided buffers
* Compiles with `-Wall -Wextra -Wpedantic -Werror` with `gcc` and `clang`
* Consistent test vectors across runs
* Consistent test vectors on big-endian and little-endian machines
* Consistent test vectors on 32-bit and 64-bit machines
* No errors/warnings reported by valgrind
* No errors/warnings reported by address sanitizer
* Only dependencies:
* `common_crypto.c` (Keccak, AES, SHA-2)
* `randombytes.c`
* API functions return `0` on success, negative on failure
* No dynamic memory allocations
* No branching on secret data (dynamically checked using valgrind)
* No access to secret memory locations (dynamically checked using valgrind)
* Separate subdirectories (without symlinks) for each parameter set of each scheme
* Builds under Linux, MacOS, and Windows
* Makefile-based build for each separate scheme
* Makefile-based build for Windows (`nmake`)
* All exported symbols are namespaced with `PQCLEAN_SCHEMENAME_`
* Each implementation comes with a `LICENSE` file (see below)
* Each implementation comes with a `META` file giving details about version of the algorithm, designers, etc.
_The checking of items on this list is still being developed. Checked items should be working._
* [ ] Code is valid C99
* [ ] Passes functional tests
* [ ] API functions do not write outside provided buffers
* [ ] Compiles with `-Wall -Wextra -Wpedantic -Werror` with `gcc` and `clang`
* [ ] Consistent test vectors across runs
* [ ] Consistent test vectors on big-endian and little-endian machines
* [ ] Consistent test vectors on 32-bit and 64-bit machines
* [ ] No errors/warnings reported by valgrind
* [ ] No errors/warnings reported by address sanitizer
* [ ] Only dependencies:
* [ ] `common_crypto.c` (Keccak, AES, SHA-2)
* [ ] `randombytes.c`
* [ ] API functions return `0` on success, negative on failure
* [ ] No dynamic memory allocations
* [ ] No branching on secret data (dynamically checked using valgrind)
* [ ] No access to secret memory locations (dynamically checked using valgrind)
* [ ] Separate subdirectories (without symlinks) for each parameter set of each scheme
* [ ] Builds under Linux, MacOS, and Windows
* [ ] Makefile-based build for each separate scheme
* [ ] Makefile-based build for Windows (`nmake`)
* [ ] All exported symbols are namespaced with `PQCLEAN_SCHEMENAME_`
* [ ] Each implementation comes with a `LICENSE` file (see below)
* [ ] Each implementation comes with a `META` file giving details about version of the algorithm, designers, etc.
## Requirements on C implementations that are manually checked