You are not logged in.
Pages: 1
Are the AES routines in SynCrypto.pas compatible with the Gibberish javascript AES library?
https://github.com/mdp/gibberish-aes/bl … ish-aes.js
I've tried to un-encrypt some text encrypted by the Gibberish library but haven't had much success so far.
Offline
It sounds like the salt used here is not compatible the the salt from SynCrypto.pas.
But the core AES encryption is exactly the same - because both are compliant with the standards.
Take a look in the salt generation area, and I'm sure you'll find out how to make the same process in Delphi code, using our AES core.
Offline
Thanks for the suggestion. I think I need to spend some more time getting my head round this.
Offline
In the Gibberish implementation the salt is twice the length and it doesn't put checksums in the header. It doesn't look too simple to make them compatible and at any rate I've since realised SHA256 is more appropriate for what I'm doing, so I've left this for now.
Offline
Pages: 1