You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have encrypted file created using Rijndael256+CBC with PHP language. After I decrypt it with lockbox2, I found the decrypted file is missing first 16 bytes/characters. And after I check both of the codes, it turns out the different between them is the PHP code set the IV (initialization vector) but my pascal code don't, because lockbox doesn't provide the property for that. Could you add this feature? Thanks
The text was updated successfully, but these errors were encountered:
Btw, I've solve the issue in my code by xor-ing first 16 chars of the decrypted string with the (16 bytes) iv value from the php code. But I need time to add this to the component. If I'm not too lazy to do that :)
update: this trick is not working :(. Maybe I did something else than this, I forgot... Silly me
I have encrypted file created using Rijndael256+CBC with PHP language. After I decrypt it with lockbox2, I found the decrypted file is missing first 16 bytes/characters. And after I check both of the codes, it turns out the different between them is the PHP code set the IV (initialization vector) but my pascal code don't, because lockbox doesn't provide the property for that. Could you add this feature? Thanks
The text was updated successfully, but these errors were encountered: