cincin tulis kunci dan iv secara langsung menggunakan string

See "Enter a string : " give cStr

# Note: Don't use simple key in real applications!
cKey = "1234567890@#$%^&"
cIV  = "FEDCBA0987654321"

cStr = Encrypt(cStr,cKey,cIV,"aes128")
See "Cipher Text    : " + cStr + nl +
    "Plain Text     : " + Decrypt(cStr,cKey,cIV,"aes128") + nl
Joker