项目原始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)