encrypt icon indicating copy to clipboard operation
encrypt copied to clipboard

🔒 A set of high-level APIs over PointyCastle for two-way cryptography.

Results 87 encrypt issues
Sort by recently updated
recently updated
newest added

Mode:AESMode.cfb64 Padding: PKCS7 IV: YES static aesEncrypt(String plainText, String aesKey, String aesIv,) { try { final key = Key.fromUtf8(aesKey); final iv = IV.fromUtf8(aesIv); final encrypter = Encrypter(AES(key, mode: AESMode.cfb64, padding:...

support

I've been running into the error "Key length must be 128/192/256 bits' a lot when I know 100% sure I have a key of 256 bits, but after running through...

support

Errors in SDK 2.2.2, Same error as sample code ``` var publicKey = RSAKeyParser().parse(pubKey); // final publicKey = await parseKeyFromFile('/public.pem'); //error /* *error : *The argument type 'RSAAsymmetricKey' can't be...

the error info below: ``` inits@iMac bin % dart run dtest1.dart Unhandled exception: Invalid argument(s): Input data length must be a multiple of cipher's block size #0 PaddedBlockCipherImpl.process (package:pointycastle/padded_block_cipher/padded_block_cipher_impl.dart:60:9) #1...

support

How can we encrypt and decrypt a large file of 500mb into chunks?

support

![搜狗截图20210908161753](https://user-images.githubusercontent.com/82579833/132472740-4388e6da-9aef-40e4-924b-2bffe3240298.png) ![搜狗截图20210908161816](https://user-images.githubusercontent.com/82579833/132472799-98811e81-13c1-4c22-8334-a67b07a05de2.png) ![搜狗截图20210908161853](https://user-images.githubusercontent.com/82579833/132472892-bf0de6c2-bb2f-42f2-9e7e-603efa6658a9.png) **How to solve this problem?**

support

Hi, I am currently trying to develop an API for a flutter-based mobile app. I've been having some really strange issues that make me think this module does not use...

support

Hello ! I'm trying to decode a Uint8list in kotlin previously encrypted in flutter, but the decryption is not correct, i'm probably doing something wrong but I can't find what,...

support

Hi. Sorry to bug you. I need to decrypt some data that is encrypted in Python using Blowfish. Here is the Python code that will create a encrypted base64 string....

support