{"id":50351021,"url":"https://github.com/mttk2004/auracrypt","last_synced_at":"2026-05-29T21:01:09.160Z","repository":{"id":354438479,"uuid":"1223636439","full_name":"mttk2004/auracrypt","owner":"mttk2004","description":"End-to-End Encrypted Vault","archived":false,"fork":false,"pushed_at":"2026-04-28T14:21:45.000Z","size":629,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-28T16:25:55.605Z","etag":null,"topics":["react","supabase","tailwindcss","typescript","vite","web-crypto-api","zustand"],"latest_commit_sha":null,"homepage":"https://auracrypt.netlify.app/","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/mttk2004.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-04-28T14:07:06.000Z","updated_at":"2026-04-28T14:34:30.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/mttk2004/auracrypt","commit_stats":null,"previous_names":["mttk2004/auracrypt"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/mttk2004/auracrypt","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mttk2004%2Fauracrypt","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mttk2004%2Fauracrypt/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mttk2004%2Fauracrypt/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mttk2004%2Fauracrypt/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mttk2004","download_url":"https://codeload.github.com/mttk2004/auracrypt/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mttk2004%2Fauracrypt/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33670211,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-05-29T02:00:06.066Z","response_time":107,"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":["react","supabase","tailwindcss","typescript","vite","web-crypto-api","zustand"],"created_at":"2026-05-29T21:01:01.073Z","updated_at":"2026-05-29T21:01:09.126Z","avatar_url":"https://github.com/mttk2004.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# AuraCrypt\n\nAuraCrypt is a secure, end-to-end encrypted vault for managing your sensitive data. Built with modern web technologies, it ensures that your data remains private using robust Web Crypto API standards (PBKDF2 \u0026 AES-GCM).\n\n## 📸 ScreenShots\n\n![Dashboard](./public/screenshots/dashboard.png)\n*Giao diện quản lý chính (Dashboard)*\n\n![Dashboard](./public/screenshots/login.png)\n*Giao diện đăng nhập*\n\n![Dashboard](./public/screenshots/shared.png)\n*Giao diện chia sẻ mật khẩu*\n\n## 🚀 Features\n\n- **End-to-End Encryption:** Your data is encrypted locally in the browser using AES-GCM before being stored.\n- **Secure Key Derivation:** Uses PBKDF2 with 100,000 iterations for secure master password derivation.\n- **Browser Extension Integration:** Includes a companion extension for seamless access across the web.\n- **Multi-language Support (i18n):** Accessible to a global audience.\n- **Sharing \u0026 Vault Health Checks:** Securely share entries and monitor your vault's health.\n- **Modern UI:** Full theming support (Dark/Light mode) powered by Tailwind CSS v4.\n\n## 🛠 Tech Stack\n\n- **Frontend:** React, TypeScript, Vite\n- **Styling:** Tailwind CSS v4\n- **State Management:** Zustand\n- **Backend/Storage:** Supabase\n- **Cryptography:** Native Web Crypto API\n\n## 📦 Getting Started\n\n### Prerequisites\n\n- Node.js (v18 or higher recommended)\n- npm or yarn\n\n### Installation\n\n1. Install dependencies:\n   ```bash\n   npm install\n   ```\n\n2. Environment Variables:\n   Create a `.env` file in the root directory and add your Supabase credentials (since the project uses `supabaseClient.ts`):\n   ```env\n   VITE_SUPABASE_URL=your_supabase_project_url\n   VITE_SUPABASE_ANON_KEY=your_supabase_anon_key\n   ```\n\n3. Start the development server:\n   ```bash\n   npm run dev\n   ```\n\n### Building for Production \u0026 Extension\n\nTo build the web application and browser extension:\n```bash\nnpm run build\n```\n*(The output will be generated in the `dist` directory, which also includes `manifest.json` and `content.js` for the Chrome/Edge extension).*\n\n## 🔒 Security Architecture\n\nAuraCrypt is designed with a \"zero-knowledge\" architecture. The server never sees your plain-text data or your master password.\n- **Master Key:** Derived from your master password using PBKDF2.\n- **Data Encryption:** All vault entries are encrypted using AES-GCM 256-bit.\n- **Breach Checks:** Uses SHA-1 strictly for k-Anonymity checks (e.g., Have I Been Pwned integration).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmttk2004%2Fauracrypt","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmttk2004%2Fauracrypt","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmttk2004%2Fauracrypt/lists"}