-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[feature request]: Implement DSA algorithm #93
Comments
Not sure yet, but condering moving it to be part of extension package for CryptoNet |
I don't understand the purpose of the extension package. Last time I looked, there were no extension methods in that assembly. |
@jwdonahue the whole idea was that I wanted to introduce som extension methods in a seperate package lets for now call it crypto net extension pack. so the current extension will be reused in extension package. There are some re-thinking of archecture I need to do. So it might change a bit. I am not 100% sure yet. |
Reasons to have a separate assembly in your library package:
Reasons not to have a separate assembly in your library package:
Reasons to have a separate package:
Reasons not to have a separate package:
I probably missed more than a few. I am sure that I have ignored every one of those ideas, at one time or another, for one arbitrary reason or another. I think sometimes maybe I just happen to come up with a good name for some collection of bits and want to apply it to them. In other words, it can be a matter of taste. |
Thanks for sharing Main reason Cryptonet using .net standard 2 for compatibility reasons. I am working on feature #127 it is getting a better form with refactoring of naming and moving stuff. Still not finished but with couple of days I think will be done. |
I use conditional compilation for those bits. I have have this in most of my solution folder's Directory.Build.Props file: preview true net8.0;net9.0 enable enable true $(SolutionDir)={SHLLC/CoreLibs/$(SolutionName)}/I use conditional compilation. For instance, this little gem:
|
Extensions is a C#-ism: int ExtensionMethod(this object) ... Hence my confusion around the extension assembly. |
I've also dropped support for everything below Net8 in my own projects. |
https://docs.microsoft.com/en-us/dotnet/api/system.security.cryptography.dsa.create?view=net-6.0
The text was updated successfully, but these errors were encountered: