Dashboard sipadu mbip
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ů.
root d8c1b4a1be initial před 5 roky
..
modes initial před 5 roky
.travis.yml initial před 5 roky
LICENSE initial před 5 roky
README.md initial před 5 roky
aes.js initial před 5 roky
authCipher.js initial před 5 roky
browser.js initial před 5 roky
decrypter.js initial před 5 roky
encrypter.js initial před 5 roky
ghash.js initial před 5 roky
incr32.js initial před 5 roky
index.js initial před 5 roky
package.json initial před 5 roky
streamCipher.js initial 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