Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
Daniel Hübleitner 615619e6e7 start werk před 5 roky
..
modes start werk před 5 roky
.travis.yml start werk před 5 roky
LICENSE start werk před 5 roky
README.md start werk před 5 roky
aes.js start werk před 5 roky
authCipher.js start werk před 5 roky
browser.js start werk před 5 roky
decrypter.js start werk před 5 roky
encrypter.js start werk před 5 roky
ghash.js start werk před 5 roky
incr32.js start werk před 5 roky
index.js start werk před 5 roky
package.json start werk před 5 roky
streamCipher.js start werk před 5 roky

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