https://github.com/rodrigokamada/nodejs-encryption
There are two classes in the crypto module called Cipher and Decipher that we are going to use in the example.
https://github.com/rodrigokamada/nodejs-encryption
aes cipther decipher decryption encryption hacktoberfest nodejs security
Last synced: about 1 month ago
JSON representation
There are two classes in the crypto module called Cipher and Decipher that we are going to use in the example.
- Host: GitHub
- URL: https://github.com/rodrigokamada/nodejs-encryption
- Owner: rodrigokamada
- License: mit
- Created: 2022-02-07T02:55:27.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-07-02T10:43:28.000Z (over 3 years ago)
- Last Synced: 2025-03-09T19:48:52.124Z (11 months ago)
- Topics: aes, cipther, decipher, decryption, encryption, hacktoberfest, nodejs, security
- Language: JavaScript
- Homepage:
- Size: 6.84 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE.md
Awesome Lists containing this project
README
# Encryption application example using Node.js
There are two classes in the crypto module called [Cipher](https://nodejs.org/api/crypto.html#class-cipher) and [Decipher](https://nodejs.org/api/crypto.html#class-decipher) that we are going to use in the example.
[](https://rodrigo.kamada.com.br)
[](https://www.linkedin.com/in/rodrigokamada)
[](https://twitter.com/rodrigokamada)
[](https://www.instagram.com/rodrigokamada)
## Prerequisites
Before you start, you need to install and configure the tools and services:
* [git](https://git-scm.com/)
* [Node.js and npm](https://nodejs.org/)
* IDE (e.g. [Visual Studio Code](https://code.visualstudio.com/))
## Getting started
**1.** Clone the repository.
```shell
git clone git@github.com:rodrigokamada/nodejs-encryption.git
```
**2.** Install the dependencies.
```shell
npm ci
```
**3.** Run the application.
```shell
npm start
```