Skip to content

Contributing

n1474335 edited this page Dec 8, 2016 · 9 revisions

There are lots of opportunities to contribute to CyberChef. If you want ideas, take a look at any Issues tagged with 'help wanted'.

Before your contributions can be accepted, you must:

Coding conventions

  • Indentation: Each block should consist of 4 spaces
  • Object/namespace identifiers: CamelCase
  • Function/variable names: underscore_lower_case
  • Constants: UNDERSCORE_UPPER_CASE
  • Source code encoding: UTF-8 (without BOM)
  • All source files must end with a newline
  • Line endings: UNIX style (\n)