Leo Cavalcante
Leo Cavalcante
I'm already testing on a real device, but it doesn't work for me.
Would be nice to have a small snippet that reproduces the error.
Please, share a small snippet that reproduces the errors.
Sorry, not much time to dig on this. Have you some resources on the RSA spec about decrypting using a public key? Can you link them here? I'd like to...
Hi @na2axl Since this lib is a wrapper around PointyCastle, I need this mode landed there first :/ https://github.com/PointyCastle/pointycastle/tree/master/lib/block/modes I'vent sufficient knowledge to implement one hehe
Thanks for the headsup.
@TaiTair I did a quick search for "php" in the repository issues. See if one of these gives you some clues: - https://github.com/leocavalcante/encrypt/issues/42#issuecomment-495820762 - https://github.com/leocavalcante/encrypt/issues/69#issuecomment-526865580 - https://github.com/leocavalcante/encrypt/issues/87#issuecomment-549619391
@are the ECB mode doesn't require an IV. Do you have fresh in mind why this check? Can I just remove it?
Right, thanks. @SevenCho can you workaround this by now please giving a meaningless IV? ```dart final encrypted = encrypter.encryptBytes(input, iv: IV.fromLength(16)); ``` I will be thinking on a proper strategy...
Don't worry, for ECB it will just be ignored.