bitauth/index.js

12 lines
298 B
JavaScript
Raw Permalink Normal View History

'use strict';
2014-06-25 10:56:24 -07:00
// get base functionality
var BitAuth = require('./lib/bitauth');
2014-06-25 10:56:24 -07:00
// add node-specific encrypt/decrypt
2014-10-07 10:56:18 -07:00
BitAuth.encrypt = require('./lib/encrypt');
BitAuth.decrypt = require('./lib/decrypt');
BitAuth.middleware = require('./lib/middleware/bitauth');
2014-06-25 10:56:24 -07:00
2014-10-07 10:56:18 -07:00
module.exports = BitAuth;