'use strict';
// "A little copying is better than a little dependency" - Rob PikevarEnc = module.exports;
Enc.bufToBase64 = function(buf) {
returnBuffer.from(buf).toString('base64');
};
Enc.base64ToBuf = function(b64) {
returnBuffer.from(b64, 'base64');
};