This repository has been archived by the owner on May 14, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: improve crypto (MEL-12) (#31)
- Loading branch information
Showing
4 changed files
with
131 additions
and
31 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
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,19 +1,16 @@ | ||
import argon2 from 'argon2' | ||
import argon2 from '@phc/argon2' | ||
import upash from 'upash' | ||
import crypto from 'crypto' | ||
|
||
export async function hash(text: string) { | ||
let salt = crypto.randomBytes(32).toString('hex') | ||
var generatedHash = crypto.pbkdf2Sync(text, salt, 10000, 64, 'sha512').toString('hex') | ||
generatedHash = await argon2.hash(text) | ||
upash.install('argon2', argon2) | ||
|
||
return { | ||
hash: generatedHash, | ||
salt: salt, | ||
} | ||
export async function hash(text: string) { | ||
// NOTE: We can think about implentation of additional security configuration for argon2. Also we can pop up a SHA-512 and then hash it with argon2 to have better encryption without performance issues. | ||
const hashstr = await upash.hash(text) | ||
return hashstr | ||
} | ||
|
||
export async function verify(text: string, hash: string, salt?: string) { | ||
// let verifyHash = crypto.pbkdf2Sync(hash, salt, 10000, 64, 'sha512').toString('hex') | ||
const verification = await argon2.verify(hash, text) | ||
return verification | ||
export async function verify(text: string, hash: string) { | ||
const match_argon2 = await upash.verify(hash, text) | ||
return match_argon2 | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -446,17 +446,22 @@ | |
resolved "https://registry.yarnpkg.com/@istanbuljs/schema/-/schema-0.1.3.tgz#e45e384e4b8ec16bce2fd903af78450f6bf7ec98" | ||
integrity sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA== | ||
|
||
"@mapbox/node-pre-gyp@^1.0.1": | ||
version "1.0.6" | ||
resolved "https://registry.yarnpkg.com/@mapbox/node-pre-gyp/-/node-pre-gyp-1.0.6.tgz#f859d601a210537e27530f363028cde56e0cf962" | ||
integrity sha512-qK1ECws8UxuPqOA8F5LFD90vyVU33W7N3hGfgsOVfrJaRVc8McC3JClTDHpeSbL9CBrOHly/4GsNPAvIgNZE+g== | ||
"@kdf/salt@^1.0.1": | ||
version "1.0.1" | ||
resolved "https://registry.yarnpkg.com/@kdf/salt/-/salt-1.0.1.tgz#977787a409187ff2bfcadcac374e6430d1fbee48" | ||
integrity sha512-hLZjuL0+VwSdT0R7srD3GInKyEibEAnUDHI1IQ5QDa4PRof98vujxKWtvukOtv+0ZWeSOxmuFmo80QMTHyvgMQ== | ||
|
||
"@mapbox/node-pre-gyp@^1.0.7": | ||
version "1.0.7" | ||
resolved "https://registry.yarnpkg.com/@mapbox/node-pre-gyp/-/node-pre-gyp-1.0.7.tgz#a26919cac6595662703330d1820a0ca206f45521" | ||
integrity sha512-PplSvl4pJ5N3BkVjAdDzpPhVUPdC73JgttkR+LnBx2OORC1GCQsBjUeEuipf9uOaAM1SbxcdZFfR3KDTKm2S0A== | ||
dependencies: | ||
detect-libc "^1.0.3" | ||
https-proxy-agent "^5.0.0" | ||
make-dir "^3.1.0" | ||
node-fetch "^2.6.5" | ||
nopt "^5.0.0" | ||
npmlog "^5.0.1" | ||
npmlog "^6.0.0" | ||
rimraf "^3.0.2" | ||
semver "^7.3.5" | ||
tar "^6.1.11" | ||
|
@@ -770,6 +775,30 @@ | |
resolved "https://registry.yarnpkg.com/@panva/asn1.js/-/asn1.js-1.0.0.tgz#dd55ae7b8129e02049f009408b97c61ccf9032f6" | ||
integrity sha512-UdkG3mLEqXgnlKsWanWcgb6dOjUzJ+XC5f+aWw30qrtjxeNUSfKX1cd5FBzOaXQumoe9nIqeZUvrRJS03HCCtw== | ||
|
||
"@phc/argon2@^1.0.9": | ||
version "1.0.9" | ||
resolved "https://registry.yarnpkg.com/@phc/argon2/-/argon2-1.0.9.tgz#a0ba13f7b6fe72ef69f396b8ab1a5893f8e133e6" | ||
integrity sha512-9GZ1T4f6WYO9PZZ9flZ6XFaLfEfPTcky1xDaF0BLMknw8PhpQnR1Xc1rU+cP2LtyijmRX1BtW5BiJn3FRkBzQA== | ||
dependencies: | ||
"@kdf/salt" "^1.0.1" | ||
"@phc/format" "^0.5.0" | ||
argon2 "^0.19.3" | ||
tsse "^1.1.4" | ||
|
||
"@phc/format@^0.4.2": | ||
version "0.4.3" | ||
resolved "https://registry.yarnpkg.com/@phc/format/-/format-0.4.3.tgz#af4c95db92d040f2ab008def34529acba642a126" | ||
integrity sha512-UEgVMbufNOVXwTgykJ1v2q6Z2T10bfVjCxV/uYZKDI+14gMemoFOzt+4h1zyqy0QNFShP6QgsU+Sn+lRPYkaYw== | ||
dependencies: | ||
safe-buffer "^5.1.2" | ||
|
||
"@phc/format@^0.5.0": | ||
version "0.5.0" | ||
resolved "https://registry.yarnpkg.com/@phc/format/-/format-0.5.0.tgz#a99d27a83d78b3100a191412adda04315e2e3aba" | ||
integrity sha512-JWtZ5P1bfXU0bAtTzCpOLYHDXuxSVdtL/oqz4+xa97h8w9E5IlVN333wugXVFv8vZ1hbXObKQf1ptXmFFcMByg== | ||
dependencies: | ||
safe-buffer "^5.1.2" | ||
|
||
"@phc/format@^1.0.0": | ||
version "1.0.0" | ||
resolved "https://registry.yarnpkg.com/@phc/format/-/format-1.0.0.tgz#b5627003b3216dc4362125b13f48a4daa76680e4" | ||
|
@@ -1712,6 +1741,11 @@ ansistyles@~0.1.3: | |
resolved "https://registry.yarnpkg.com/ansistyles/-/ansistyles-0.1.3.tgz#5de60415bda071bb37127854c864f41b23254539" | ||
integrity sha1-XeYEFb2gcbs3EnhUyGT0GyMlRTk= | ||
|
||
any-promise@^1.3.0: | ||
version "1.3.0" | ||
resolved "https://registry.yarnpkg.com/any-promise/-/any-promise-1.3.0.tgz#abc6afeedcea52e809cdc0376aed3ce39635d17f" | ||
integrity sha1-q8av7tzqUugJzcA3au0845Y10X8= | ||
|
||
anymatch@^3.0.0, anymatch@~3.1.2: | ||
version "3.1.2" | ||
resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716" | ||
|
@@ -1761,14 +1795,24 @@ arg@^4.1.0: | |
resolved "https://registry.yarnpkg.com/arg/-/arg-4.1.3.tgz#269fc7ad5b8e42cb63c896d5666017261c144089" | ||
integrity sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA== | ||
|
||
argon2@^0.28.2: | ||
version "0.28.2" | ||
resolved "https://registry.yarnpkg.com/argon2/-/argon2-0.28.2.tgz#b583e4ef5b052a83bfe146752844b9fa526dba29" | ||
integrity sha512-8oRk3kPlL0lLletENzhpbF9zoZJqvIHwTkjBseMrg1uD4gBMqhqnjJz1z3lEtwT0oqQAEkEwsEpsjaQBBRHcWw== | ||
argon2@^0.19.3: | ||
version "0.19.3" | ||
resolved "https://registry.yarnpkg.com/argon2/-/argon2-0.19.3.tgz#4e59cb3bcf5d1f09ca07b452716334670ef9a0b7" | ||
integrity sha1-TlnLO89dHwnKB7RScWM0Zw75oLc= | ||
dependencies: | ||
"@phc/format" "^0.4.2" | ||
any-promise "^1.3.0" | ||
bindings "^1.3.0" | ||
nan "^2.10.0" | ||
|
||
argon2@^0.28.3: | ||
version "0.28.3" | ||
resolved "https://registry.yarnpkg.com/argon2/-/argon2-0.28.3.tgz#e5234eccf20a643ffc3b1bbd1aa9e81092e0d8e9" | ||
integrity sha512-NkEJOImg+T7nnkx6/Fy8EbjZsF20hbBBKdVP/YUxujuLTAjIODmrFeY4vVpekKwGAGDm6roXxluFQ+CIaoVrbg== | ||
dependencies: | ||
"@mapbox/node-pre-gyp" "^1.0.1" | ||
"@mapbox/node-pre-gyp" "^1.0.7" | ||
"@phc/format" "^1.0.0" | ||
node-addon-api "^3.0.2" | ||
node-addon-api "^4.2.0" | ||
opencollective-postinstall "^2.0.3" | ||
|
||
argparse@^1.0.7: | ||
|
@@ -2059,6 +2103,13 @@ binary-extensions@^2.0.0, binary-extensions@^2.2.0: | |
resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" | ||
integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== | ||
|
||
bindings@^1.3.0: | ||
version "1.5.0" | ||
resolved "https://registry.yarnpkg.com/bindings/-/bindings-1.5.0.tgz#10353c9e945334bc0511a6d90b38fbc7c9c504df" | ||
integrity sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ== | ||
dependencies: | ||
file-uri-to-path "1.0.0" | ||
|
||
bl@^4.0.3: | ||
version "4.1.0" | ||
resolved "https://registry.yarnpkg.com/bl/-/bl-4.1.0.tgz#451535264182bec2fbbc83a62ab98cf11d9f7b3a" | ||
|
@@ -4166,6 +4217,11 @@ file-type@^3.3.0: | |
resolved "https://registry.yarnpkg.com/file-type/-/file-type-3.9.0.tgz#257a078384d1db8087bc449d107d52a52672b9e9" | ||
integrity sha1-JXoHg4TR24CHvESdEH1SpSZyuek= | ||
|
||
[email protected]: | ||
version "1.0.0" | ||
resolved "https://registry.yarnpkg.com/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz#553a7b8446ff6f684359c445f1e37a05dacc33dd" | ||
integrity sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw== | ||
|
||
file-uri-to-path@2: | ||
version "2.0.0" | ||
resolved "https://registry.yarnpkg.com/file-uri-to-path/-/file-uri-to-path-2.0.0.tgz#7b415aeba227d575851e0a5b0c640d7656403fba" | ||
|
@@ -4398,6 +4454,21 @@ gauge@^3.0.0: | |
strip-ansi "^3.0.1 || ^4.0.0" | ||
wide-align "^1.1.2" | ||
|
||
gauge@^4.0.0: | ||
version "4.0.0" | ||
resolved "https://registry.yarnpkg.com/gauge/-/gauge-4.0.0.tgz#afba07aa0374a93c6219603b1fb83eaa2264d8f8" | ||
integrity sha512-F8sU45yQpjQjxKkm1UOAhf0U/O0aFt//Fl7hsrNVto+patMHjs7dPI9mFOGUKbhrgKm0S3EjW3scMFuQmWSROw== | ||
dependencies: | ||
ansi-regex "^5.0.1" | ||
aproba "^1.0.3 || ^2.0.0" | ||
color-support "^1.1.2" | ||
console-control-strings "^1.0.0" | ||
has-unicode "^2.0.1" | ||
signal-exit "^3.0.0" | ||
string-width "^4.2.3" | ||
strip-ansi "^6.0.1" | ||
wide-align "^1.1.2" | ||
|
||
gauge@~2.7.3: | ||
version "2.7.4" | ||
resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" | ||
|
@@ -6593,6 +6664,11 @@ mute-stream@~0.0.4: | |
resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.8.tgz#1630c42b2251ff81e2a283de96a5497ea92e5e0d" | ||
integrity sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA== | ||
|
||
nan@^2.10.0: | ||
version "2.15.0" | ||
resolved "https://registry.yarnpkg.com/nan/-/nan-2.15.0.tgz#3f34a473ff18e15c1b5626b62903b5ad6e665fee" | ||
integrity sha512-8ZtvEnA2c5aYCZYd1cvgdnU6cqwixRoYg70xPLWUws5ORTa/lnw+u4amixRS/Ac5U5mQVgp9pnlSUnbNWFaWZQ== | ||
|
||
napi-build-utils@^1.0.1: | ||
version "1.0.2" | ||
resolved "https://registry.yarnpkg.com/napi-build-utils/-/napi-build-utils-1.0.2.tgz#b1fddc0b2c46e380a0b7a76f984dd47c41a13806" | ||
|
@@ -6652,6 +6728,11 @@ node-addon-api@^3.0.2: | |
resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-3.2.1.tgz#81325e0a2117789c0128dab65e7e38f07ceba161" | ||
integrity sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A== | ||
|
||
node-addon-api@^4.2.0: | ||
version "4.2.0" | ||
resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-4.2.0.tgz#117cbb5a959dff0992e1c586ae0393573e4d2a87" | ||
integrity sha512-eazsqzwG2lskuzBqCGPi7Ac2UgOoMz8JVOXVhTvvPDYhthvNpefx8jWD8Np7Gv+2Sz0FlPWZk0nJV0z598Wn8Q== | ||
|
||
node-emoji@^1.10.0: | ||
version "1.11.0" | ||
resolved "https://registry.yarnpkg.com/node-emoji/-/node-emoji-1.11.0.tgz#69a0150e6946e2f115e9d7ea4df7971e2628301c" | ||
|
@@ -6947,6 +7028,16 @@ npmlog@^5.0.1: | |
gauge "^3.0.0" | ||
set-blocking "^2.0.0" | ||
|
||
npmlog@^6.0.0: | ||
version "6.0.0" | ||
resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-6.0.0.tgz#ba9ef39413c3d936ea91553db7be49c34ad0520c" | ||
integrity sha512-03ppFRGlsyUaQFbGC2C8QWJN/C/K7PsfyD9aQdhVKAQIH4sQBc8WASqFBP7O+Ut4d2oo5LoeoboB3cGdBZSp6Q== | ||
dependencies: | ||
are-we-there-yet "^2.0.0" | ||
console-control-strings "^1.1.0" | ||
gauge "^4.0.0" | ||
set-blocking "^2.0.0" | ||
|
||
[email protected]: | ||
version "0.6.0" | ||
resolved "https://registry.yarnpkg.com/nssocket/-/nssocket-0.6.0.tgz#59f96f6ff321566f33c70f7dbeeecdfdc07154fa" | ||
|
@@ -8187,7 +8278,7 @@ [email protected], safe-buffer@~5.1.0, safe-buffer@~5.1.1: | |
resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" | ||
integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== | ||
|
||
[email protected], safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.2, safe-buffer@^5.2.1, safe-buffer@~5.2.0: | ||
[email protected], safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@^5.2.1, safe-buffer@~5.2.0: | ||
version "5.2.1" | ||
resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" | ||
integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== | ||
|
@@ -8696,7 +8787,7 @@ string-width@^1.0.1: | |
is-fullwidth-code-point "^2.0.0" | ||
strip-ansi "^4.0.0" | ||
|
||
"string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.0.0, string-width@^4.1.0, string-width@^4.2.0: | ||
"string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.0.0, string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: | ||
version "4.2.3" | ||
resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" | ||
integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== | ||
|
@@ -9186,6 +9277,13 @@ [email protected]: | |
resolved "https://registry.yarnpkg.com/tsscmp/-/tsscmp-1.0.6.tgz#85b99583ac3589ec4bfef825b5000aa911d605eb" | ||
integrity sha512-LxhtAkPDTkVCMQjt2h6eBVY28KCjikZqZfMcC15YBeNjkgUpdCfBu5HoiOTDu86v6smE8yOjyEktJ8hlbANHQA== | ||
|
||
tsse@^1.1.4: | ||
version "1.1.6" | ||
resolved "https://registry.yarnpkg.com/tsse/-/tsse-1.1.6.tgz#65169b45e48cb92560aa6283a692a6bede1cc34e" | ||
integrity sha512-DxL05+CPR7NwsmFWLEe/lRvTH2zo0//7rlYLPCUlDWE+4XEfMXhObJh+mm5vwA9pXBGSzmmnT9zCl596XKCtfA== | ||
dependencies: | ||
safe-buffer "^5.1.1" | ||
|
||
tsutils@^3.21.0: | ||
version "3.21.0" | ||
resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623" | ||
|
@@ -9374,6 +9472,11 @@ [email protected], unpipe@~1.0.0: | |
resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" | ||
integrity sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw= | ||
|
||
upash@^1.0.2: | ||
version "1.0.2" | ||
resolved "https://registry.yarnpkg.com/upash/-/upash-1.0.2.tgz#bea34c94f1d4ffbd8258a2affa7a8873362c66ec" | ||
integrity sha512-fs6y+iUp4vMyRzD7VvHe0x7E9ElK2TrIj/nZICJ92NrF09pb+55mYjIEJckPO5WR41ICBiSPZbg9lPcJeundZA== | ||
|
||
update-notifier@^4.1.0: | ||
version "4.1.3" | ||
resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-4.1.3.tgz#be86ee13e8ce48fb50043ff72057b5bd598e1ea3" | ||
|