alg = "aes-128-cbc"
pad = 1
encryptKey = "10a58869d74be5a374cf867cfb473859"
IV = "00000000000000000000000000000000"
plainText = "00000000000000000000000000000000"
encResult = crypto_encrypt(alg, encryptKey, IV, plainText, pad)
Function crypto_encrypt(alg as String, encryptKey As String, IV As String, text As String, pad as Integer) As String
crypto = CreateObject("roEVPCipher")
res = crypto.Setup(true, alg,encryptKey,IV,pad)
print res
ba = CreateObject("roByteArray")
ba.FromAsciiString(text)
enc = crypto.Process(ba)
return enc.ToHexString()
End function
alg ="aes-128-cbc"
pad = 1
encryptKey ="d4fcf78158762c2b"
IV ="d8fcf78848762c4b"
plainText = token
encResult = crypto_encrypt(alg,encryptKey,IV,plainText,pad)
function crypto_encrypt(alg, encryptKey, IV, plainText, pad)
encrypt = false
crypto = CreateObject("roEVPCipher")
res = crypto.Setup(encrypt,alg,encryptKey,IV,pad)
ba = CreateObject("roByteArray")
ba.FromAsciiString(plainText)
enc = crypto.Process(ba)
return (enc.ToBase64String())
end function
this is my code for aes-128-cbc decryption. but i'm not able to setUp cipher. setup always call -1.Please suggest me, how to use aes-128-cbc cipher decryption
Your key and IV should be 16 hex characters. Yours are only 8.
plaintext = "DWFf4sXI0idwUcQ8lMdung=="
cipher= "aes-128-cbc"
decryptKey= "2b7e151628aed2a6abf7158809cf4f3c"
IV ="000102030405060708090a0b0c0d0e0f"
pad = 1
decResult = crypto_decrypt(cipher, decryptKey, IV, plaintext, pad)
Function crypto_decrypt(cipher as String, decryptKeyAs String, IV As String, plaintext As String, pad as Integer) As String
crypto = CreateObject("roEVPCipher")
res = crypto.Setup(false, cipher,decryptKey,IV,pad)
print res
ba = CreateObject("roByteArray")
ba.FromBase64String(plaintext)
enc = crypto.Process(ba)
?"enc"enc
return enc.ToAsciiString()'
End function
when i trying to process its showing invalid. . any thoughts?
looks like AES 128 only accepts encryption/decryption key 16 bytes long , your is bigger
encryptKey = "10a58869d74be5a374cf867cfb473859"
a key like this should be working
10a58869d74be5a3
16 bytes key for AES-128 encryption (16 * 8 = 128)
https://crypto.stackexchange.com/questions/44271/what-is-the-maximum-key-size-for-a-128-bit-aes
We’re upgrading Roku Community to bring you a faster, more mobile-friendly experience. You may notice limited functionality or read-only access during this time. You will not be able to log in or post new comments or kudos during this time. Read more here.
Planned Downtime:
Community will be unavailable for up to 24–48 hours during the upgrade window during the week of May 12 and you may notice reduced functionality.
In the meantime, for additional assistance, visit our Support Site.
Thanks for your patience — we’re excited to share what’s next!