项目原始demo,不改动
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
Це архівний репозитарій. Ви можете переглядати і клонувати файли, але не можете робити пуш або відкривати питання/запити.

4 роки тому
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)