Skip to content

Commit

Permalink
Update decrypt.md
Browse files Browse the repository at this point in the history
  • Loading branch information
TanvishGG authored Jan 20, 2024
1 parent f3ab4cd commit ea1f1e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/decrypt.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

## Importing
```js
const {Decrypt} = require('text-encryption-tool')
const {decrypt} = require('text-encryption-tool')
```
## Decrypting
```js
const text = "hMGbwUXZwYHICZ3TgADITRGITRWQ5BCLhYzZnN2V";
const key = "==QbsNGcuhUZnh2aUNXavFGQCdWZ290VjxWQ1l3UkZDM";
const output = Decrypt(text,key); // Decrypting the Text.
const output = decrypt(text,key); // Decrypting the Text.
console.log(output); // logging the output.
```
#### Example Output
Expand Down

0 comments on commit ea1f1e5

Please sign in to comment.