UNPKG

flowviz

Version:

A framework which provides seamless integration with other phylogenetic tools and frameworks, while allowing workflow scheduling and execution, through the Apache Airflow workflow system.

17 lines (13 loc) 305 B
const argon2 = require("argon2"); module.exports = () => { async function hash(password) { return await argon2.hash(password); } async function verify(password, userPassword) { return await argon2.verify(password, userPassword); } return { hash: hash, verify: verify, }; };