Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

pull_request_template.md 860 B

12345678910111213141516
  1. <!-- This template will help you get your code into PQClean. -->
  2. <!-- Type some lines about your submission -->
  3. <!-- If you are not submitting a new scheme, we suggest removing the following lines -->
  4. #### Manually checked properties
  5. <!-- These checkboxes serve for the maintainers of PQClean to verify your submission. Please do not check them yourself. -->
  6. * [ ] No stringification macros
  7. * [ ] Output-parameter pointers in functions are on the left
  8. * [ ] Negative return values on failure of API functions (within restrictions of FO transform).
  9. * [ ] `const` arguments are labeled as `const`
  10. * [ ] variable declarations at the beginning (except in `for (size_t i=...`)
  11. * Optional:
  12. * [ ] All integer types are of fixed size, using `stdint.h` types (including `uint8_t` instead of `unsigned char`)
  13. * [ ] Integers used for indexing are of size `size_t`