bcgit / pc-dart

Pointy Castle - Dart Derived Bouncy Castle APIs
MIT License
237 stars 122 forks source link

Support RSA-PSS #34

Closed CDDelta closed 4 years ago

CDDelta commented 4 years ago

It would be great if this package had RSA-PSS support. It has been requested before here.

I can try and work on implementing it if the team doesn't have the bandwidth to do so or is uninterested but I'm not at all familiar with cryptography so will need some guidance on how to do it.

Is porting the C# and Java implementation "simply" a matter of changing the syntax? 😅

AKushWarrior commented 4 years ago

It is USUALLY a matter of changing the syntax, but it can get tricky if you don't have any idea of what's going on under the hood.

You can definitely try it. Make sure you also port the tests from bouncycastle to the tests folder.

CDDelta commented 4 years ago

Alright, I'll give it a go sometime next week. Thank you!