my-idlers/node_modules/browserify-aes
cp6 fd22b0bf58 V2 (Laravel re-make)
V2 (Laravel re-make)
2022-03-06 02:02:12 +11:00
..
modes V2 (Laravel re-make) 2022-03-06 02:02:12 +11:00
.travis.yml V2 (Laravel re-make) 2022-03-06 02:02:12 +11:00
aes.js V2 (Laravel re-make) 2022-03-06 02:02:12 +11:00
authCipher.js V2 (Laravel re-make) 2022-03-06 02:02:12 +11:00
browser.js V2 (Laravel re-make) 2022-03-06 02:02:12 +11:00
decrypter.js V2 (Laravel re-make) 2022-03-06 02:02:12 +11:00
encrypter.js V2 (Laravel re-make) 2022-03-06 02:02:12 +11:00
ghash.js V2 (Laravel re-make) 2022-03-06 02:02:12 +11:00
incr32.js V2 (Laravel re-make) 2022-03-06 02:02:12 +11:00
index.js V2 (Laravel re-make) 2022-03-06 02:02:12 +11:00
LICENSE V2 (Laravel re-make) 2022-03-06 02:02:12 +11:00
package.json V2 (Laravel re-make) 2022-03-06 02:02:12 +11:00
README.md V2 (Laravel re-make) 2022-03-06 02:02:12 +11:00
streamCipher.js V2 (Laravel re-make) 2022-03-06 02:02:12 +11:00

browserify-aes

Build Status

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, a partial derivation of 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