encrypt-rsa 3.1.0 → 3.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -4
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -4,16 +4,16 @@
|
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
6
|
```bash
|
|
7
|
-
npm install
|
|
7
|
+
npm install encrypt-rsa
|
|
8
8
|
// OR
|
|
9
|
-
yarn add
|
|
9
|
+
yarn add encrypt-rsa
|
|
10
10
|
```
|
|
11
11
|
|
|
12
12
|
## Usage
|
|
13
13
|
**Importing the Library**
|
|
14
14
|
|
|
15
15
|
```ts
|
|
16
|
-
import NodeRSA from '
|
|
16
|
+
import NodeRSA from 'encrypt-rsa';
|
|
17
17
|
```
|
|
18
18
|
|
|
19
19
|
## Creating an Instance
|
|
@@ -185,7 +185,7 @@ We welcome contributions to the NodeRSA library! If you'd like to contribute, pl
|
|
|
185
185
|
1. Fork the repository on GitHub.
|
|
186
186
|
2. Clone your forked repository to your local machine.
|
|
187
187
|
```bash
|
|
188
|
-
git clone
|
|
188
|
+
git clone git@github.com:miladezzat/encrypt-rsa.git
|
|
189
189
|
```
|
|
190
190
|
3. Create a new branch for your feature or bugfix.
|
|
191
191
|
```bash
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "encrypt-rsa",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.1",
|
|
4
4
|
"description": "This is a little module use to encrypt and decrypt strings with RSA keys (public and private keys)",
|
|
5
5
|
"main": "./build/index.js",
|
|
6
6
|
"module": "./build/index.js",
|
|
@@ -55,6 +55,7 @@
|
|
|
55
55
|
"private key",
|
|
56
56
|
"rsa",
|
|
57
57
|
"node-rsa",
|
|
58
|
+
"encrypt-rsa",
|
|
58
59
|
"encrypt",
|
|
59
60
|
"encrypt by public key",
|
|
60
61
|
"decrypt by private key",
|