{"id":15046018,"url":"https://github.com/denosaurs/argontwo","last_synced_at":"2025-10-14T04:16:18.926Z","repository":{"id":62422111,"uuid":"370370503","full_name":"denosaurs/argontwo","owner":"denosaurs","description":"#️⃣ Argon2 hashing module for deno using wasm","archived":false,"fork":false,"pushed_at":"2024-04-03T09:50:21.000Z","size":244,"stargazers_count":10,"open_issues_count":1,"forks_count":2,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-08T12:36:37.761Z","etag":null,"topics":["argon2","cryptography","deno","hacktoberfest","wasm"],"latest_commit_sha":null,"homepage":"https://deno.land/x/argontwo","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/denosaurs.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null},"funding":{"open_collective":"denosaurs","github":"denosaurs"}},"created_at":"2021-05-24T13:56:28.000Z","updated_at":"2024-12-25T21:27:30.000Z","dependencies_parsed_at":"2024-04-13T14:38:32.430Z","dependency_job_id":null,"html_url":"https://github.com/denosaurs/argontwo","commit_stats":{"total_commits":9,"total_committers":2,"mean_commits":4.5,"dds":"0.33333333333333337","last_synced_commit":"d8cb0435cfebaefd358efb3a1cb2568eb891f2f8"},"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/denosaurs/argontwo","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/denosaurs%2Fargontwo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/denosaurs%2Fargontwo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/denosaurs%2Fargontwo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/denosaurs%2Fargontwo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/denosaurs","download_url":"https://codeload.github.com/denosaurs/argontwo/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/denosaurs%2Fargontwo/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279017987,"owners_count":26086213,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-14T02:00:06.444Z","response_time":60,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["argon2","cryptography","deno","hacktoberfest","wasm"],"created_at":"2024-09-24T20:52:35.803Z","updated_at":"2025-10-14T04:16:18.910Z","avatar_url":"https://github.com/denosaurs.png","language":"TypeScript","funding_links":["https://opencollective.com/denosaurs","https://github.com/sponsors/denosaurs"],"categories":[],"sub_categories":[],"readme":"# argontwo\n\n[![Tags](https://img.shields.io/github/release/denosaurs/argontwo)](https://github.com/denosaurs/argontwo/releases)\n[![deno doc](https://doc.deno.land/badge.svg)](https://doc.deno.land/https/deno.land/x/argontwo/mod.ts)\n[![checks](https://github.com/denosaurs/argontwo/actions/workflows/checks.yml/badge.svg)](https://github.com/denosaurs/argontwo/actions/workflows/checks.yml)\n[![License](https://img.shields.io/github/license/denosaurs/argontwo)](https://github.com/denosaurs/argontwo/blob/master/LICENSE)\n[![Dependencies](https://img.shields.io/endpoint?url=https%3A%2F%2Fdeno-visualizer.danopia.net%2Fshields%2Fdep-count%2Fhttps%2Fdeno.land%2Fx%2Fargontwo%2Fmod.ts)](https://deno-visualizer.danopia.net/dependencies-of/https/deno.land/x/argontwo/mod.ts)\n[![Dependency freshness](https://img.shields.io/endpoint?url=https%3A%2F%2Fdeno-visualizer.danopia.net%2Fshields%2Fupdates%2Fhttps%2Fdeno.land%2Fx%2Fargontwo%2Fmod.ts)](https://deno-visualizer.danopia.net/dependencies-of/https/deno.land/x/argontwo/mod.ts)\n\nThis module provides [Argon2](https://en.wikipedia.org/wiki/Argon2) hashing\nsupport for deno and the web by providing [simple bindings](src/lib.rs) using\n[argon2](https://github.com/RustCrypto/password-hashes/tree/master/argon2)\ncompiled to webassembly.\n\n## Usage\n\n```ts\nimport { hash } from \"https://deno.land/x/argontwo/mod.ts\";\n\nconst encoder = new TextEncoder();\n\nconst password = encoder.encode(\"password\");\nconst salt = encoder.encode(\"somesalt\");\n\nconsole.log(hash(password, salt));\n\n// Should log:\n// Uint8Array(32) [\n//   168, 185, 165, 229, 198, 234,  20,  3,\n//   186,  99,  21,  71, 134, 180, 129, 28,\n//   253,  20,  89, 220, 107,  35,  25, 13,\n//   112, 207,  26,  49, 125, 219, 151, 53\n// ]\n```\n\n## Maintainers\n\n- Elias Sjögreen ([@eliassjogreen](https://github.com/eliassjogreen))\n\n## Other\n\n### Contribution\n\nPull request, issues and feedback are very welcome. Code style is formatted with\n`deno fmt` and commit messages are done following\n[Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/) spec.\n\n### Licence\n\nCopyright 2021, the denosaurs team. All rights reserved. MIT license.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdenosaurs%2Fargontwo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdenosaurs%2Fargontwo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdenosaurs%2Fargontwo/lists"}