An open API service indexing awesome lists of open source software.

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.

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.

[![Website](https://shields.braskam.com/v1/shields?name=website&format=rectangle&size=small&radius=5)](https://rodrigo.kamada.com.br)
[![LinkedIn](https://shields.braskam.com/v1/shields?name=linkedin&format=rectangle&size=small&radius=5)](https://www.linkedin.com/in/rodrigokamada)
[![Twitter](https://shields.braskam.com/v1/shields?name=twitter&format=rectangle&size=small&radius=5&socialAccount=rodrigokamada)](https://twitter.com/rodrigokamada)
[![Instagram](https://shields.braskam.com/v1/shields?name=instagram&format=rectangle&size=small&radius=5)](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
```