Database encryption

Security ™️
This commit is contained in:
Isaac
2021-04-07 00:02:07 +01:00
parent ba8c506eb4
commit 1bc2e737e3
16 changed files with 361 additions and 354 deletions

View File

@@ -1,3 +1,4 @@
module.exports = {
int2hex: (int) => int.toString(16).toUpperCase(),
wait: (time) => new Promise(res => setTimeout(res, time)),
};