jsaes

jsaes is a compact javascript implementation of the AES block cipher.
Download

jsaes Ranking & Summary

Advertisement

  • Rating:
  • License:
  • GPL
  • Price:
  • FREE
  • Publisher Name:
  • B. Poettering
  • Publisher web site:
  • http://point-at-infinity.org/jssha256/

jsaes Tags


jsaes Description

jsaes is a compact javascript implementation of the AES block cipher. jsaes is a compact javascript implementation of the AES block cipher. Key lengths of 128, 192 and 256 bits are supported. Example:The following code example enciphers the plaintext block '00 11 22 .. EE FF' with the 256 bit key '00 01 02 .. 1E 1F'. AES_Init();var block = new Array(16);for(var i = 0; i < 16; i++) block = 0x11 * i;var key = new Array(32);for(var i = 0; i < 32; i++) key = i;AES_ExpandKey(key);AES_Encrypt(block, key);AES_Done()


jsaes Related Software