-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
token shared lib: Implement missing functions (#5)
* token shared lib: Implement missing functions Implement missing features in shared library needed to get encoder/decoder to function properly. Also fix the accuracy issue with siphash lib by using hex values. * fix lint errors * replace siphash source with dep
- Loading branch information
1 parent
fb8b2e8
commit eaae921
Showing
11 changed files
with
191 additions
and
103 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,3 +10,4 @@ npm-debug.log* | |
yarn-debug.log* | ||
yarn-error.log* | ||
|
||
.vscode |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
import js from "@eslint/js"; | ||
const js = require('@eslint/js') | ||
|
||
export default [ | ||
module.exports = [ | ||
js.configs.recommended, | ||
|
||
{ | ||
rules: { | ||
"no-unused-vars": "off", | ||
"no-undef": "off" | ||
} | ||
}, | ||
{ | ||
ignores: ["test/*", "lib/*"] | ||
} | ||
]; | ||
{ | ||
rules: { | ||
'no-unused-vars': 'off', | ||
'no-undef': 'off', | ||
}, | ||
}, | ||
{ | ||
ignores: ['test/*', 'lib/*'], | ||
}, | ||
] |
This file was deleted.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.