sensordb2 e64a8defe5 3.17 | před 1 rokem | |
---|---|---|
.. | ||
modes | před 1 rokem | |
.travis.yml | před 1 rokem | |
LICENSE | před 1 rokem | |
README.md | před 1 rokem | |
aes.js | před 1 rokem | |
authCipher.js | před 1 rokem | |
browser.js | před 1 rokem | |
decrypter.js | před 1 rokem | |
encrypter.js | před 1 rokem | |
ghash.js | před 1 rokem | |
incr32.js | před 1 rokem | |
index.js | před 1 rokem | |
package.json | před 1 rokem | |
streamCipher.js | před 1 rokem |
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.