You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
802 B

4 years ago
  1. # browserify-aes
  2. [![Build Status](https://travis-ci.org/crypto-browserify/browserify-aes.svg)](https://travis-ci.org/crypto-browserify/browserify-aes)
  3. Node style aes for use in the browser.
  4. Implements:
  5. - createCipher
  6. - createCipheriv
  7. - createDecipher
  8. - createDecipheriv
  9. - getCiphers
  10. In node.js, the `crypto` implementation is used, in browsers it falls back to a pure JavaScript implementation.
  11. Much of this library has been taken from the aes implementation in [triplesec](https://github.com/keybase/triplesec), a partial derivation of [crypto-js](https://code.google.com/p/crypto-js/).
  12. `EVP_BytesToKey` is a straight up port of the same function from OpenSSL as there is literally no documenation on it beyond it using 'undocumented extensions' for longer keys.
  13. ## LICENSE [MIT](LICENSE)