aes_crypt
aes_crypt copied to clipboard
The chunk 'file header' was expected to be 414553 but found EEFBE5
i have encryption file when i decrypt it i get the error
The chunk 'file header' was expected to be 414553 but found EEFBE5
what does this mean??
String decryptFile(String path) {
AesCrypt crypt = AesCrypt();
crypt.setOverwriteMode(AesCryptOwMode.on);
crypt.setPassword('my-password');
crypt.aesSetMode(AesMode.cbc);
String decFilepath;
try {
decFilepath = crypt.decryptFileSync(path);
} catch (e) {
print(e);
}
return decFilepath;
}
@winnie-chaintope is this issue got resolved?
@deepashree-ballodi nope. I ended up using another package
@deepashree-ballodi nope. I ended up using another package
what's another package, please!!
@312654929 i use https://pub.dev/packages/encrypt for Aes.cbc https://pub.dev/packages/cryptography for Aes.gcm
any update for this issue ?
any update for this issue ?