peach a19a732be8 commit message | há 2 anos atrás | |
---|---|---|
.. | ||
modes | há 2 anos atrás | |
.travis.yml | há 2 anos atrás | |
LICENSE | há 2 anos atrás | |
README.md | há 2 anos atrás | |
aes.js | há 2 anos atrás | |
authCipher.js | há 2 anos atrás | |
browser.js | há 2 anos atrás | |
decrypter.js | há 2 anos atrás | |
encrypter.js | há 2 anos atrás | |
ghash.js | há 2 anos atrás | |
incr32.js | há 2 anos atrás | |
index.js | há 2 anos atrás | |
package.json | há 2 anos atrás | |
streamCipher.js | há 2 anos atrás |
Node style aes for use in the browser. Implements:
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.