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: README.md
+23-21Lines changed: 23 additions & 21 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,14 +4,14 @@ A C# library for encryption and decryption.
4
4
5
5
## Overview
6
6
7
-
The Encryption library provides a set of methods for encrypting and decrypting data using the Advanced Encryption Standard (AES) algorithm, and other algorithm. It is designed to be easy to use and can be integrated into C# applications that require secure data transmission or storage.
8
-
7
+
The SafeCrypt library provides a set of methods for encrypting and decrypting data using various encryption algorithms,
8
+
including the Advanced Encryption Standard (AES) and RSA (Rivest–Shamir–Adleman).
9
+
It is designed to be easy to use and can be integrated into C# applications that require secure data transmission or storage.
9
10
## Table of Contents
10
11
11
12
-[Installation](#installation)
12
-
-[Usage](#usage)
13
-
-[API Reference](#api-reference)
14
-
-[Examples](#examples)
13
+
-[AES Encryption and Decryption usage](#usage)
14
+
-[RSA Encryption and Decryption usage](#rsa)
15
15
-[Contributing](#contributing)
16
16
-[License](#license)
17
17
@@ -34,28 +34,25 @@ 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
-
## Basic Usage
37
+
## Usage
38
38
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:
39
+
To use the AES encryption in your C# application,
40
+
instantiate the `AesEncryption` or `AesDecryption` class and call the provided methods. Here's a simple example:
0 commit comments