1var bn = require('bn.js'); 2function withPublic(paddedMsg, key) { 3 return new Buffer(paddedMsg 4 .toRed(bn.mont(key.modulus)) 5 .redPow(new bn(key.publicExponent)) 6 .fromRed() 7 .toArray()); 8} 9 10module.exports = withPublic; 11