You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/SafeCrypt.Lib/README.md
+69-23Lines changed: 69 additions & 23 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,46 +34,92 @@ To use the SafeCrypt library in your C# project, follow these steps:
34
34
35
35
Now, you can reference the SafeCrypt library in your C# project.
36
36
37
-
## Usage
37
+
## Basic Usage
38
38
39
-
To use the library in your C# application, instantiate the `SafeCrypt` class and call the provided methods. Here's a simple example:
39
+
To use the library in your C# application, instantiate the `AesEncryption` or `AesDecryption` class and call the provided methods. Here's a simple example:
<PackageReleaseNotes>SafeCrypt Library - Release Notes - Version 1.0.1
19
19
20
-
Version 1.0.0
20
+
This release (version 1.0.1) includes updates to the documentation and namespace changes. We have improved the README document to provide more comprehensive information about the library and made adjustments to the namespaces for better organization.
21
21
22
-
Highlights:
23
-
- New Features:
24
-
- `EncryptToHexString`: Easily encrypt data with a hexadecimal string output.
25
-
- `DecryptFromBase64String`: Decrypt Base64-encoded string data with validation.
26
-
- `GenerateAesKey`: Generate a random AES key of a specified size.
22
+
Changes
27
23
28
-
- Improvements:
29
-
- Enhanced validation checks for input parameters in encryption and decryption methods.
30
-
- Improved error handling for decryption, including padding errors.
24
+
- Updated README document with detailed usage instructions, API references, and contribution guidelines.
25
+
- Made changes to namespaces for better organization and clarity in the codebase.
31
26
32
-
- Bug Fixes:
33
-
- Resolved issues related to padding errors during decryption.
27
+
Bug Fixes
34
28
35
-
- Documentation:
36
-
- Updated and expanded the README file for better understanding and usage instructions.
37
-
- Added XML documentation comments to improve code documentation.
38
-
39
-
- Security:
40
-
- Improved key validation to ensure secure encryption and decryption.
29
+
No bug fixes in this release.
41
30
42
31
Upgrade Command:
43
-
dotnet add package SafeCrypt --version 1.0.0
32
+
dotnet add package SafeCrypt --version 1.0.1
44
33
45
34
Feedback and Contributions:
46
35
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
47
36
48
37
Thank you for using the SafeCrypt Library!</PackageReleaseNotes>
0 commit comments