How to encrypt in VBScript using AES?
I am looking to encrypt some data using Rijndael/AES in VBScript using a specific key and IV value. Are there any good function libraries or COM components that would be good to use? I looked at CAPICOM ; it allows a passphrase only, and won't allow setting specific key and IV values. Old question- that really never gets old! One way is to declare encryption classes within vbscript, without needing external added COM objects or wrapper. The following example takes a string, encrypts and decrypts using Rijndael managed class: '----------------------------------------------------- Dim obj,arr,i