I need a javascript library which can decrypt AES data. I've found some libraries, like:
http://www.movable-type.co.uk/scripts/aes.html
http://point-at-infinity.org/jsaes/
But none of them support a IV key (Initialization Vector).
The reason i need that is because some C#.NET server is sending me data which is encrypted with AES and it also uses a IV key.
Now i need to decrypt that message with Javascript somehow, but couldn't find any library which supports the Initialization Vector. So does anyone know a javascript library which supports this too for decrypting?