UNPKG
authen
Version:
latest (0.0.2)
0.0.2
0.0.1
Authentication tools - signing, tokens, password hashes
dimsmol/authen
authen
/
lib
/
tools
/
index.js
10 lines
(7 loc)
•
169 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
"use strict"
;
var
crypto =
require
(
'./crypto'
);
var
urlSafeBase64 =
require
(
'./url_safe_base64'
);
module
.
exports
= {
crypto
: crypto,
urlSafeBase64
: urlSafeBase64 };