crypto-helper/index.js
Timo Hocker ecd0195aee
All checks were successful
continuous-integration/drone/push Build is passing
refactoring, asymmetric signatures and encryption
2021-01-06 15:13:44 +01:00

24 lines
568 B
JavaScript

/*
* Copyright (C) Sapphirecode - All Rights Reserved
* This file is part of crypto-helper which is released under MIT.
* See file 'LICENSE' for full license details.
* Created by Timo Hocker <timo@scode.ovh>, May 2020
*/
// @ts-nocheck
'use strict';
const encryption = require ('./lib/encryption');
const hashing = require ('./lib/hashing');
const random = require ('./lib/random');
const signatures = require ('./lib/signatures');
const rsa = require ('./lib/rsa');
module.exports = {
...random,
...hashing,
...encryption,
...signatures,
...rsa
};