You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
256 B
JavaScript

// Strict Mode
"use strict";
// Imports
import encrypt from "./encrypt/encrypt.js";
import hash from "./hash/hash.js";
// Exports
module.exports = {
encrypt: encrypt.encrypt,
decrypt: encrypt.decrypt,
hash: hash.hash,
compareHash: hash.compareHash
};