-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
21 lines (19 loc) · 959 Bytes
/
index.js
File metadata and controls
21 lines (19 loc) · 959 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/**
* @file Main module for the project.
* @description This module exports the main functionality of the project.
*/
// ━━ MODULE ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
/**
* The CryptoDriver class contain methods to encrypt and decrypt data.
*
* This class uses the AES-256-GCM encryption algorithm with a
* 256-bit key, which is considered one of the most secure symmetric encryption
* algorithms available.
*
* @version 2.0.2
* @author Victor Giovanni Beltrán Rodríguez
* @module CryptoDriver
*/
const CryptoDriver = require('./src');
// ━━ EXPORT MODULE ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
module.exports = CryptoDriver;