X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=libs%2Fcombined%2Findex.js;h=43524efbc9b07470b9daf0957d699932d9b1c6e6;hb=d1d8699fc4f1599de39e643acc1d8be52114dd58;hp=6760e0ce217dea21b964bc1c33fde05046f29aa7;hpb=c1d6274224e2dcfde76107104d2c397bb487e745;p=perso%2FImmae%2FProjets%2FCryptomonnaies%2FBIP39.git diff --git a/libs/combined/index.js b/libs/combined/index.js index 6760e0c..43524ef 100644 --- a/libs/combined/index.js +++ b/libs/combined/index.js @@ -87,3 +87,25 @@ module.exports.unorm = require('unorm') /* zxcvbn */ module.exports.zxcvbn = require('zxcvbn') + +/* handshake */ +module.exports.handshake = require('handshake-util') + +/* bs58 */ +try { + module.exports.bs58 = require('bs58') +} +catch (e) { + console.warn("Error loading bs58 library"); + console.warn(e); +}; + +/* create-hash */ +try { + module.exports.createHash = require('create-hash') +} +catch (e) { + console.warn("Error loading create-hash library"); + console.warn(e); +}; +