File tree Expand file tree Collapse file tree 5 files changed +14
-64
lines changed Expand file tree Collapse file tree 5 files changed +14
-64
lines changed Original file line number Diff line number Diff line change @@ -10,33 +10,9 @@ An Open-source strong Text Encryption Tool
10
10
- This Project is available as npm package at [ text-encryption-tool] ( https://npmjs.com/package/text-encryption-tool )
11
11
---
12
12
13
- ## Usage
14
-
15
- 1 . Encryption
16
- ``` js
17
- const tes = require (' text-encryption-tool' );
18
-
19
- console .log (tes .encrypt (" This is a string" ))
20
- ```
21
- - output
22
- ``` js
23
- {
24
- text: " encrypted text" ,
25
- password: " password of the text"
26
- }
27
- ```
28
- 2 . Decryption
29
- ``` js
30
- const tes = require (' text-encryption-tool' );
31
- console .log (tes .decrypt (' Encrypted Text' ,' password' ))
32
- ```
33
- - output
34
- ``` js
35
- {
36
- text: " decrypted text"
37
- }
38
- ```
39
-
40
- ---
13
+ ## Documentation
14
+ - https://text-encryption-tool.js.org
41
15
16
+ ## Discord
17
+ - https://discord.com/invite/xS8b8jQZZK
42
18
### Made with ❤️ by [ TanvishGG] ( https://github.com/TanvishGG )
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -8,7 +8,8 @@ An Open-source strong Text Encryption Tool
8
8
- Nothing is stored during the encryption process
9
9
10
10
- This Project is available as npm package at [ text-encryption-tool] ( https://npmjs.com/package/text-encryption-tool )
11
- ---
11
+
12
+ - Alphanumeric Characters only!
12
13
13
14
## Installing
14
15
```
@@ -18,6 +19,8 @@ npm install text-encryption-tool@latest
18
19
## Docs
19
20
1 . [ Encryption] ( ./encrypt )
20
21
2 . [ Decryption] ( ./decrypt )
21
- 3 . [ Valid Characters and formats] ( ./formatting )
22
+
23
+ ## Discord
24
+ - https://discord.com/invite/xS8b8jQZZK
22
25
23
26
### Made with ❤️ by [ TanvishGG] ( https://github.com/TanvishGG )
Original file line number Diff line number Diff line change @@ -10,33 +10,9 @@ An Open-source strong Text Encryption Tool
10
10
- This Project is available as npm package at [ text-encryption-tool] ( https://npmjs.com/package/text-encryption-tool )
11
11
---
12
12
13
- ## Usage
14
-
15
- 1 . Encryption
16
- ``` js
17
- const tes = require (' text-encryption-tool' );
18
-
19
- console .log (tes .encrypt (" This is a string" ))
20
- ```
21
- - output
22
- ``` js
23
- {
24
- text: " encrypted text" ,
25
- password: " password of the text"
26
- }
27
- ```
28
- 2 . Decryption
29
- ``` js
30
- const tes = require (' text-encryption-tool' );
31
- console .log (tes .decrypt (' Encrypted Text' ,' password' ))
32
- ```
33
- - output
34
- ``` js
35
- {
36
- text: " decrypted text"
37
- }
38
- ```
39
-
40
- ---
13
+ ## Documentation
14
+ - https://text-encryption-tool.js.org
41
15
16
+ ## Discord
17
+ - https://discord.com/invite/xS8b8jQZZK
42
18
### Made with ❤️ by [ TanvishGG] ( https://github.com/TanvishGG )
Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ const key64 = encodeToBase64(key)
70
70
const final = reverseString ( encodeToBase64 ( preText ) )
71
71
return {
72
72
text :final ,
73
- password : reverseString ( key64 )
73
+ key : reverseString ( key64 )
74
74
}
75
75
} ;
76
76
You can’t perform that action at this time.
0 commit comments