2019-02-27 13:55:06 +00:00
|
|
|
<!-- This template will help you get your code into PQClean. -->
|
|
|
|
|
|
|
|
<!-- Type some lines about your submission -->
|
|
|
|
|
|
|
|
|
2019-04-06 13:45:05 +01:00
|
|
|
#### Manually checked properties
|
2019-02-27 13:55:06 +00:00
|
|
|
<!-- These checkboxes serve for the maintainers of PQClean to verify your submission. Please do not check them yourself. -->
|
|
|
|
|
2019-04-09 10:17:54 +01:00
|
|
|
* [ ] `#if`/`#ifdef`s only for header encapsulation
|
2019-02-27 13:55:06 +00:00
|
|
|
* [ ] `api.h` does not include other files
|
|
|
|
* [ ] No stringification macros
|
|
|
|
* [ ] Output-parameter pointers in functions are on the left
|
|
|
|
* [ ] Negative return values on failure of API functions (within restrictions of FO transform).
|
|
|
|
* [ ] `const` arguments are labeled as `const`
|
|
|
|
* [ ] variable declarations at the beginning (except in `for (size_t i=...`)
|
2019-04-05 15:19:29 +01:00
|
|
|
* Optional:
|
|
|
|
* [ ] All integer types are of fixed size, using `stdint.h` types (including `uint8_t` instead of `unsigned char`)
|
|
|
|
* [ ] Integers used for indexing are of size `size_t`
|