mirror of
https://github.com/henrydcase/pqc.git
synced 2024-11-22 23:48:58 +00:00
784973a8fb
* remove automatically checked property * Allow PR-submitters to self-document. We don't ever use these, so allow submitters of PRs to self-document.
15 lines
688 B
Markdown
15 lines
688 B
Markdown
<!-- This template will help you get your code into PQClean. -->
|
|
|
|
<!-- Type some lines about your submission -->
|
|
|
|
<!-- If you are not submitting a new scheme, we suggest removing the following lines -->
|
|
#### Manually checked properties
|
|
|
|
* [ ] 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).
|
|
* [ ] variable declarations at the beginning (except in `for (size_t i=...`)
|
|
* 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`
|