Skip to content

Commit ef099e7

Browse files
committed
update csproj file with latest deployment metadata
1 parent 5716c9f commit ef099e7

File tree

1 file changed

+12
-9
lines changed

1 file changed

+12
-9
lines changed

src/SafeCrypt.Lib/SafeCrypt.csproj

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<Title>SafeCrypt - Simple Encryption Library for C#</Title>
77
<Authors>selfmade</Authors>
88
<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>
1010
<Copyright>Raphael Anyanwu</Copyright>
1111
<PackageProjectUrl>https://github.com/selfmadecode/SafeCrypt</PackageProjectUrl>
1212
<RepositoryUrl>https://github.com/selfmadecode/SafeCrypt</RepositoryUrl>
@@ -15,26 +15,29 @@
1515
<PackageReadmeFile>README.md</PackageReadmeFile>
1616
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
1717
<PackageLicenseFile>MitLicense.txt</PackageLicenseFile>
18-
<PackageReleaseNotes>SafeCrypt Library - Release Notes - Version 1.0.2
18+
<PackageReleaseNotes>Release Note - Version 1.2.0
1919

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.
2121

2222
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.
2523

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.
2726

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.
2932

3033
Upgrade Command:
31-
dotnet add package SafeCrypt --version 1.0.2
34+
dotnet add package SafeCrypt --version 1.2.0
3235

3336
Feedback and Contributions:
3437
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
3538

3639
Thank you for using the SafeCrypt Library!</PackageReleaseNotes>
37-
<Version>1.0.2</Version>
40+
<Version>1.2.0</Version>
3841
</PropertyGroup>
3942

4043
<ItemGroup>

0 commit comments

Comments
 (0)