myloveCc / NETCore.Encrypt

NETCore encrypt and decrypt tool,Include aes,des,rsa,md5,sha1,sha256,sha384,sha512
MIT License
614 stars 155 forks source link

Bug & missing feature #25

Closed MichaelYuAlreadyExists closed 5 years ago

MichaelYuAlreadyExists commented 5 years ago

well, first of all, there are 2 important methods on RSA you missed.Those are Sign() and Verify().

Then, there's an important BUG about ".net Standard". try these steps: 1.create RSA key pair and save them. 2.Create a ".net core" project and a ".net framework" (console or winform)project 3.run your RSAEncrypt() and RSADecrypt() with the same key pair

now you may get your BUG!

myloveCc commented 5 years ago

First ,thanks for your suggestion, now Sign() and Verify() added. I test step by step ,but i can't see any bug .