{"id":21961837,"url":"https://github.com/trapcodeio/passphrase-encrypter","last_synced_at":"2026-02-17T21:02:00.754Z","repository":{"id":98363400,"uuid":"524086269","full_name":"trapcodeio/passphrase-encrypter","owner":"trapcodeio","description":"Mnemonic Pass Phrase Encrypter ","archived":false,"fork":false,"pushed_at":"2022-08-21T08:34:42.000Z","size":1107,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-30T08:56:44.961Z","etag":null,"topics":["blockchain","decryption","encryption","nodejs","wallets"],"latest_commit_sha":null,"homepage":"https://passphrase-encrypter.eth.link","language":"Vue","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/trapcodeio.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,"zenodo":null}},"created_at":"2022-08-12T12:49:09.000Z","updated_at":"2024-02-09T14:48:52.000Z","dependencies_parsed_at":"2023-04-06T08:06:11.231Z","dependency_job_id":null,"html_url":"https://github.com/trapcodeio/passphrase-encrypter","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/trapcodeio/passphrase-encrypter","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trapcodeio%2Fpassphrase-encrypter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trapcodeio%2Fpassphrase-encrypter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trapcodeio%2Fpassphrase-encrypter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trapcodeio%2Fpassphrase-encrypter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/trapcodeio","download_url":"https://codeload.github.com/trapcodeio/passphrase-encrypter/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trapcodeio%2Fpassphrase-encrypter/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29558100,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-17T20:52:40.164Z","status":"ssl_error","status_checked_at":"2026-02-17T20:48:10.325Z","response_time":100,"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":["blockchain","decryption","encryption","nodejs","wallets"],"created_at":"2024-11-29T10:18:37.909Z","updated_at":"2026-02-17T21:02:00.737Z","avatar_url":"https://github.com/trapcodeio.png","language":"Vue","readme":"# Mnemonic Pass Phrase Encrypter\n\n\u003cp align=\"center\"\u003e\n  \u003cimg width=\"500\" src=\"./about/mppe.png\"/\u003e\n\u003c/p\u003e\n\n\u003cp align=\"center\" style=\"font-size: 16px; font-weight: medium; margin-bottom: 25px\"\u003e\nEncrypt your  passphrase, secretKeys, backup keys e.t.c Using simple or complex \u003cb\u003eAES Encryption\u003c/b\u003e in the browser. \u003cspan style=\"color: green\"\u003e(No server or external requests) 👍 🔒 \u003cspan\u003e\n\u003c/p\u003e\n\u003cbr\u003e\n\n## Highlights\n\n- Client Side AES Encryption\n- Encrypt \u0026 Decrypt Interface\n- Multiple Encryption methods\n- Save as `json`, `qrcode` or [Standalone NodeJS Script](#standalone-nodejs-script)\n\n## How To Use\n\nYou can either use the **online version:**\n\n- [passphrase-encrypter.eth.link](https://passphrase-encrypter.eth.link): Hosted openly on the blockchain via [IPFS](https://ipfs.io)\n- [passphrase-encrypter.pages.dev](https://passphrase-encrypter.pages.dev): Hosted and served by [Cloudflare Pages](https://pages.cloudflare.com/) directly from this repository.\n\nOR\n\n### Install Locally\n\nRequires **Nodejs \u003e= 16**\n\n- Clone this repo\n- Install dependencies - `npm install`\n- Build Application - `npm run build`\n- Serve Application - `npm run serve`\n\n## Settings\n\n- [Number Of Words](#number-of-words)\n- [Verification](#verification)\n- [Encryption Method](#encryption-method)\n- [Show DATE in public data](#show-date-in-public-data)\n\n### Number of Words\n\nThe number of words you want to encrypt. This also determines the number of input boxes that will be provided for you.\n\u003cbr\u003e\nMin: `1` Max: `50` Default: `12`\n\n### Verification\n\nIf enabled, This ensures that the words you entered are correct by providing another form for you to re-type and verify words.\n\u003cbr\u003e\nDefault: `false`\n\n### Encryption Method\n\nThere are two encryption methods provided: `Simple` and `Complex`.\nAll encryption are done in your browser.\n\n#### Simple Encryption Method\n\nThis method is direct and straight to the point. Your data is encrypted using your password directly. This means you can use any **AES Decrypter** to decrypt your **encrypted** value without depending on this application.\n\n```js\npassword = \"1234567\";\nencrypted = AesEncryptFunction(data, password);\n```\n\n#### Complex Encryption Method.\n\nThis method is **EXTREMELY SECURE** but can only be **decrypted** using this application because **it does not use your password to encrypt data.**.\n\nYes! Your password is used to generate a **Longer \u0026 Stronger Password** using a **`COMPLEX_ENCRYPTION_KEY` and `Md5 Hashing`** method.\n\n```js\npassword = \"1234567\";\ngeneratedPassword = GeneratePassword(password);\nencrypted = AesEncryptFunction(data, generatedPassword);\n```\n\n### Show DATE in public data.\n\nIf enabled, Date of encryption will be publicly visible in the encrypted document. For best anonymity, this should be turned **off**.\n\u003cbr\u003e\nDefault: `true`\n\n## Export Formats\n\n- [Json Text File](#json-text-file)\n- [Qrcode Image File](#qrcode-image-file)\n- [Standalone NodeJS Script](#standalone-nodejs-script)\n\n### Json Text File\n\nExample of an exported json text file.\n\u003cbr\u003e\nPassword: **`1234567`**\n\n```json\n{\n  \"name\": \"test\",\n  \"value\": \"U2FsdGVkX19OMXnOV9MK6/6UieQzZ2qiTMwbQ46lNIteHe5A3avTwtPGl803Ofeni2Nfw5ABl+NJ8DWR3+XMGo73ww4hCcctWfMahlds6oT14PVTCiSAhNWR54M5MKim0zqMKzu13bBnfkx8RUlJI/2oz+DbKDN2aoiGVXVolS9BMwhKUvA3v4FMq1hUu2tk\"\n}\n```\n\n### Qrcode Image File\n\nExample of an exported image file. The qrcode holds a [Json Text File](#json-text-file) content.\n\u003cbr\u003e\nPassword: **`1234567`**\n\n\u003cbr\u003e\n\u003cp align=\"center\" style=\"border-radius: 20px\"\u003e\n  \u003cimg width=\"500\" src=\"./about/test.png\"/\u003e\n\u003c/p\u003e\n\u003cbr\u003e\n\n### Standalone NodeJS Script.\n\nRequires **Nodejs \u003e= 10**\n\nOnce downloaded, you can run on any NodeJS machine with the right arguments\n\n```sh\n# Syntax\nnode file.js\n```\n\nIf successful the result will look like this.\n\n\u003cbr\u003e\n\n\u003cp align=\"center\" style=\"border-radius: 20px\"\u003e\n  \u003cimg width=\"500\" src=\"./about/test-cli.png\"/\u003e\n\u003c/p\u003e\n\u003cbr\u003e\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftrapcodeio%2Fpassphrase-encrypter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftrapcodeio%2Fpassphrase-encrypter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftrapcodeio%2Fpassphrase-encrypter/lists"}