This repository has been archived on 2020-11-02. You can view files and clone it, but cannot push or open issues or pull requests.
TripSit_Suite/node_modules/browserify-aes
cranberry ed23347e56 Initial comission of TheLounge base files 2020-11-01 22:46:04 +00:00
..
modes Initial comission of TheLounge base files 2020-11-01 22:46:04 +00:00
.travis.yml Initial comission of TheLounge base files 2020-11-01 22:46:04 +00:00
LICENSE Initial comission of TheLounge base files 2020-11-01 22:46:04 +00:00
README.md Initial comission of TheLounge base files 2020-11-01 22:46:04 +00:00
aes.js Initial comission of TheLounge base files 2020-11-01 22:46:04 +00:00
authCipher.js Initial comission of TheLounge base files 2020-11-01 22:46:04 +00:00
browser.js Initial comission of TheLounge base files 2020-11-01 22:46:04 +00:00
decrypter.js Initial comission of TheLounge base files 2020-11-01 22:46:04 +00:00
encrypter.js Initial comission of TheLounge base files 2020-11-01 22:46:04 +00:00
ghash.js Initial comission of TheLounge base files 2020-11-01 22:46:04 +00:00
incr32.js Initial comission of TheLounge base files 2020-11-01 22:46:04 +00:00
index.js Initial comission of TheLounge base files 2020-11-01 22:46:04 +00:00
package.json Initial comission of TheLounge base files 2020-11-01 22:46:04 +00:00
streamCipher.js Initial comission of TheLounge base files 2020-11-01 22:46:04 +00:00

README.md

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