https://github.com/bennycode/chacha20-js
A JavaScript implementation of the ChaCha20 stream cipher.
https://github.com/bennycode/chacha20-js
Last synced: 3 months ago
JSON representation
A JavaScript implementation of the ChaCha20 stream cipher.
- Host: GitHub
- URL: https://github.com/bennycode/chacha20-js
- Owner: bennycode
- License: mit
- Created: 2015-09-30T16:21:02.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-10-26T21:41:16.000Z (over 9 years ago)
- Last Synced: 2025-02-11T23:40:39.317Z (5 months ago)
- Language: CSS
- Size: 1.18 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# chacha20-js
A JavaScript implementation of the ChaCha20 stream cipher.References:
- https://github.com/quartzjer/chacha20
- https://gist.github.com/devi/da696f47865605e5f6ed## Grunt tasks
- **init**
- **check**
- check_demo (*Check code style for demo code*)
- `grunt check_demo_coffee`
- `grunt check_demo_css`
- `grunt check_demo_js`
- `grunt check_demo_less`
- `grunt check_demo_sass`
- `grunt check_demo_ts`
- check_main (*Check code style for main code*)
- `grunt check_main_coffee`
- `grunt check_main_css`
- `grunt check_main_js`
- `grunt check_main_less`
- `grunt check_main_sass`
- `grunt check_main_ts`
- check_test (*Check code style for test code*)
- `grunt check_test_coffee`
- `grunt check_test_js`
- `grunt check_test_less`
- `grunt check_test_sass`
- `grunt check_test_ts`
- **build**
- build_demo (*Transpile demo code*)
- `grunt build_demo_coffee`
- `grunt build_demo_css`
- `grunt build_demo_js`
- `grunt build_demo_less`
- `grunt build_demo_sass`
- `grunt build_demo_ts`
- build_lib (*Transpile dependencies*)
- `grunt build_lib_coffee`
- `grunt build_lib_ts`
- build_main (*Transpile main code*)
- `grunt build_main_coffee`
- `grunt build_main_css`
- `grunt build_main_js`
- `grunt build_main_less`
- `grunt build_main_sass`
- `grunt build_main_ts`
- build_test (*Transpile test code*)
- `grunt build_test_coffee`
- `grunt build_test_css`
- `grunt build_test_js`
- `grunt build_test_ts`
- **test**
- test_spec (*Run a specification test with PhantomJS*)
- `grunt test_spec_coffee:Proteus/util/KeyDerivationUtilSpec`
- `grunt test_spec_js:de/bennyn/crypto/ChaCha20/ContextSpec`
- `grunt test_spec_ts:Validation/HelloWorldSpec`
- test_specs (*Run all specification tests with PhantomJS*)
- `grunt test_specs_coffee`
- `grunt test_specs_js`
- `grunt test_specs_ts`
- test_spec_browser (*Run a specification test with a browser*)
- `grunt test_spec_browser_coffee:Chrome:Proteus/util/KeyDerivationUtilSpec`
- `grunt test_specs_browser_js:PhantomJS:de/bennyn/crypto/ChaCha20/ContextSpec`
- `grunt test_specs_browser_ts:IE:Validation/HelloWorldSpec`
- test_specs_browser (*Run all specification tests with a browser*)
- `grunt test_specs_browser_coffee:Chrome`
- `grunt test_specs_browser_js:PhantomJS`
- `grunt test_specs_browser_ts:IE`
- test_e2e (*Run End-to-End tests on a development server*)
- `grunt test_e2e_coffee`
- `grunt test_e2e_js`
- `grunt test_e2e_ts`
- **coverage**
- **develop**
- **docs**
- **deploy**