[ICO]NameLast modifiedSizeDescription
[PARENTDIR]Parent Directory  -  
[DIR]modes/2023-06-08 13:45 -  
[   ]incr32.js2023-06-08 13:45 260 0fb859dc fixed mobile overflwo options [كارل مبارك]
[   ]index.js2023-06-08 13:45 357 0fb859dc fixed mobile overflwo options [كارل مبارك]
[   ]browser.js2023-06-08 13:45 500 0fb859dc fixed mobile overflwo options [كارل مبارك]
[   ]streamCipher.js2023-06-08 13:45 659 0fb859dc fixed mobile overflwo options [كارل مبارك]
[TXT]README.md2023-06-08 13:45 802 0fb859dc fixed mobile overflwo options [كارل مبارك]
[   ]LICENSE2023-06-08 13:45 1.1K0fb859dc fixed mobile overflwo options [كارل مبارك]
[   ]package.json2023-06-08 13:45 1.8K0fb859dc fixed mobile overflwo options [كارل مبارك]
[   ]ghash.js2023-06-08 13:45 1.9K0fb859dc fixed mobile overflwo options [كارل مبارك]
[   ]encrypter.js2023-06-08 13:45 2.8K0fb859dc fixed mobile overflwo options [كارل مبارك]
[   ]authCipher.js2023-06-08 13:45 2.9K0fb859dc fixed mobile overflwo options [كارل مبارك]
[   ]decrypter.js2023-06-08 13:45 3.1K0fb859dc fixed mobile overflwo options [كارل مبارك]
[   ]aes.js2023-06-08 13:45 6.1K0fb859dc fixed mobile overflwo options [كارل مبارك]
# browserify-aes
[![Build Status](https://travis-ci.org/crypto-browserify/browserify-aes.svg)](https://travis-ci.org/crypto-browserify/browserify-aes)

Node style aes for use in the browser.
Implements:

 - createCipher
 - createCipheriv
 - createDecipher
 - createDecipheriv
 - getCiphers

In node.js, the `crypto` implementation is used, in browsers it falls back to a pure JavaScript implementation.

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/).

`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.

## LICENSE [MIT](LICENSE)