{"id":19721656,"url":"https://github.com/aeurum/pseudo-crypto","last_synced_at":"2026-04-14T02:31:45.834Z","repository":{"id":257277659,"uuid":"857797740","full_name":"aeurum/pseudo-crypto","owner":"aeurum","description":"Hash numeric identifiers.","archived":false,"fork":false,"pushed_at":"2025-04-07T21:37:57.000Z","size":88,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-07T22:29:55.949Z","etag":null,"topics":["anonymization","crypto","data-masking","fixed-width","hash","obfuscation","pseudo","pseudonymization"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/aeurum.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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,"publiccode":null,"codemeta":null}},"created_at":"2024-09-15T16:29:36.000Z","updated_at":"2025-04-07T21:38:00.000Z","dependencies_parsed_at":"2024-09-15T18:03:16.024Z","dependency_job_id":"1af598bc-46ee-4206-9915-41c952712922","html_url":"https://github.com/aeurum/pseudo-crypto","commit_stats":null,"previous_names":["aeurum/pseudo-crypto"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/aeurum/pseudo-crypto","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aeurum%2Fpseudo-crypto","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aeurum%2Fpseudo-crypto/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aeurum%2Fpseudo-crypto/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aeurum%2Fpseudo-crypto/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/aeurum","download_url":"https://codeload.github.com/aeurum/pseudo-crypto/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aeurum%2Fpseudo-crypto/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31779943,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-14T02:24:21.117Z","status":"ssl_error","status_checked_at":"2026-04-14T02:24:20.627Z","response_time":153,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["anonymization","crypto","data-masking","fixed-width","hash","obfuscation","pseudo","pseudonymization"],"created_at":"2024-11-11T23:15:03.793Z","updated_at":"2026-04-14T02:31:45.828Z","avatar_url":"https://github.com/aeurum.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Pseudo Crypto\nPseudo Crypto can help you hash numeric identifiers.\n\n## Installation\n```\nnpm i pseudo-crypto\n```\n\n## Usage\n```\nconst PseudoCrypto = require('pseudo-crypto')\n// import PseudoCrypto from 'pseudo-crypto'\n\nconst pc = {\n  numeric: new PseudoCrypto('09'),\n  inline: new PseudoCrypto('._'),\n  wide: new PseudoCrypto('.-'),\n  thin: new PseudoCrypto('-|'),\n  lowercase: new PseudoCrypto('az'),\n  uppercase: new PseudoCrypto('AZ'),\n  alphabetic: new PseudoCrypto('Az'),\n  alphanumeric: new PseudoCrypto('A9') // default\n}\nconsole.log([\n  pc.numeric.hash(69, 2),      // 23\n  pc.inline.hash(69, 4),       // usaz\n  pc.wide.hash(69, 6),         // rpdhmh\n  pc.thin.hash(69, 8),         // illllllI\n  pc.lowercase.hash(69, 10),   // qtpahwvbdr\n  pc.uppercase.hash(69, 12),   // QTPAHWUXUCHZ\n  pc.alphabetic.hash(69, 14),  // haQEsDYzJiGKEJ\n  pc.alphanumeric.hash(69, 16) // dwrVWc0nP0Ho08oX\n].join('\\n'))\n```\n\nYou can also configure it to always unhash to `BigInt`:\n```\nconst pc = new PseudoCrypto('A9', true)\n// OR pc.onlyBigInt = true\n```\n\n\n## Contributing\nContributions are only allowed in TON:\n```\nUQCYqT9-ycmXE3o57Cac1sM5ntIKdjqIwP3kzWmiZik0VU_b\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faeurum%2Fpseudo-crypto","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faeurum%2Fpseudo-crypto","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faeurum%2Fpseudo-crypto/lists"}