|
6 | 6 | <Title>SafeCrypt - Simple Encryption Library for C#</Title> |
7 | 7 | <Authors>selfmade</Authors> |
8 | 8 | <Company>NextGen</Company> |
9 | | - <Description>This C# library provides methods for encrypting and decrypting data using the Advanced Encryption Standard (AES) algorithm, and more. It offers a simple interface for users to encrypt and decrypt data with ease.</Description> |
| 9 | + <Description>The SafeCrypt library provides a set of methods for encrypting and decrypting data using various encryption algorithms, including the Advanced Encryption Standard (AES) and RSA (Rivest–Shamir–Adleman). It is designed to be easy to use and can be integrated into C# applications that require secure data transmission or storage.</Description> |
10 | 10 | <Copyright>Raphael Anyanwu</Copyright> |
11 | 11 | <PackageProjectUrl>https://github.com/selfmadecode/SafeCrypt</PackageProjectUrl> |
12 | 12 | <RepositoryUrl>https://github.com/selfmadecode/SafeCrypt</RepositoryUrl> |
|
15 | 15 | <PackageReadmeFile>README.md</PackageReadmeFile> |
16 | 16 | <PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance> |
17 | 17 | <PackageLicenseFile>MitLicense.txt</PackageLicenseFile> |
18 | | - <PackageReleaseNotes>SafeCrypt Library - Release Notes - Version 1.0.2 |
| 18 | + <PackageReleaseNotes>Release Note - Version 1.2.0 |
19 | 19 |
|
20 | | -We are excited to announce the latest version of SafeCrypt (v1.0.2), featuring a significant enhancement to our encryption methods. In this release, all encryption operations are now asynchronous, providing improved performance and responsiveness. |
| 20 | +We are excited to announce the latest version of SafeCrypt (v1.2.0), bringing a new feature, improvements, and bug fixes to enhance your experience with our encryption library. |
21 | 21 |
|
22 | 22 | What's New: |
23 | | -Async Encryption and Decryption: |
24 | | -We have made all encryption methods asynchronous to better align with modern programming practices and enhance the overall responsiveness of SafeCrypt. |
25 | 23 |
|
26 | | -Bug Fixes |
| 24 | +Aes Class Renamed: |
| 25 | +We renamed the AesEncryption and AesDecryption class to Aes, and consolidate all encrypting and decrypting methods within this single static class. This means you can now directly access the class without the need for instantiation. |
27 | 26 |
|
28 | | -No bug fixes in this release. |
| 27 | +Introduction of RSACryptoServiceProvider Algorithm: |
| 28 | +We have introduced the RSACryptoServiceProvider algorithm, allowing users to choose the encryption method that best suits their specific requirements. |
| 29 | + |
| 30 | +Bug Fixes for Aes: |
| 31 | +We have addressed and resolved several bugs in the Aes implementation. |
29 | 32 |
|
30 | 33 | Upgrade Command: |
31 | | -dotnet add package SafeCrypt --version 1.0.2 |
| 34 | +dotnet add package SafeCrypt --version 1.2.0 |
32 | 35 |
|
33 | 36 | Feedback and Contributions: |
34 | 37 | We appreciate your feedback and contributions! If you encounter any issues or have suggestions, please create an issue on GitHub: https://github.com/selfmadecode/SafeCrypt/issues |
35 | 38 |
|
36 | 39 | Thank you for using the SafeCrypt Library!</PackageReleaseNotes> |
37 | | - <Version>1.0.2</Version> |
| 40 | + <Version>1.2.0</Version> |
38 | 41 | </PropertyGroup> |
39 | 42 |
|
40 | 43 | <ItemGroup> |
|
0 commit comments