peach a19a732be8 commit message | vor 2 Jahren | |
---|---|---|
.. | ||
modes | vor 2 Jahren | |
.travis.yml | vor 2 Jahren | |
LICENSE | vor 2 Jahren | |
README.md | vor 2 Jahren | |
aes.js | vor 2 Jahren | |
authCipher.js | vor 2 Jahren | |
browser.js | vor 2 Jahren | |
decrypter.js | vor 2 Jahren | |
encrypter.js | vor 2 Jahren | |
ghash.js | vor 2 Jahren | |
incr32.js | vor 2 Jahren | |
index.js | vor 2 Jahren | |
package.json | vor 2 Jahren | |
streamCipher.js | vor 2 Jahren |
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.