UNPKG

nodeforge

Version:

Fork from linuxwolf-forge, JavaScript implementations of network transports, cryptography, ciphers, PKI, message digests, and various utilities.

17 lines (13 loc) 269 B
/** * Node.js module for Forge mask generation functions. * * @author Stefan Siegl * * Copyright 2012 Stefan Siegl <stesie@brokenpipe.de> */ (function() { var forge = { mgf : module.exports || {} } forge.mgf.mgf1 = require("./mgf1"); })();