aes_crypt icon indicating copy to clipboard operation
aes_crypt copied to clipboard

Dart encryption library for encrypting/decrypting files, plain text and binary data in AES Crypt file format

Results 18 aes_crypt issues
Sort by recently updated
recently updated
newest added

I am using this library in flutter. In `crypt.decryptDataFromFileSync(documentName)` documentName = `assets/pdf/tfnt/tfnt_en.pdf` I am getting an error `FileSystemException: Source file assets/pdf/tfnt/tfnt_en.pdf does not exist., path = ''` Does the library...

Error for example of binary data AES encryption/decryption: ``` Uint8List key = Uint8List.fromList( [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16]); Uint8List...

Ensure that the correct error message is returned while asserting that the `key` and `iv` are non-empty.

The following code isn't possible ... ``` crypt.aesSetMode(AesMode.ecb); crypt.aesSetKeys(keyBytes, Uint8List(0)); ``` The only way was copy the project and comment the line below: ``` void aesSetKeys(Uint8List key, [Uint8List iv]) {...

As the title says, could you make the encryption/decryption process faster?

I was trying to encrypt a string using a generated key and no IV because I'm using ECB. Here's my code: ``` var crypt = AesCrypt(); crypt.aesSetMode(AesMode.ecb); Uint8List key =...

aes_crypt no padding,could you add ?

I'm using windows 10 pro and Android Studio 3.6.2 And the piece of Flutter code project where I'm testing aes_cryp is: ... class _MyHomePageState extends State { int _counter =...