项目原始demo,不改动
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.
Este repositório está arquivado. Pode ver ficheiros e cloná-lo, mas não pode fazer envios ou lançar questões ou pedidos de integração.

12345678910111213141516171819
  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)