{"id":24841481,"url":"https://github.com/rijoslal/django-e_crypt","last_synced_at":"2026-02-04T15:37:07.755Z","repository":{"id":262243798,"uuid":"886645948","full_name":"RijoSLal/Django-e_crypt","owner":"RijoSLal","description":"e_crypt is a Django web app that generates secure, random passwords using SHA-256 encryption. Users can customize password length and character types (uppercase, lowercase, numbers, symbols) after logging in or signing up. It uses PostgreSQL for data storage and offers a simple, user-friendly interface for generating strong passwords.","archived":false,"fork":false,"pushed_at":"2024-12-15T16:41:40.000Z","size":1543,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-26T05:42:06.626Z","etag":null,"topics":["bootstrap","django","html-css","postgresql","sha256"],"latest_commit_sha":null,"homepage":"","language":"HTML","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/RijoSLal.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-11-11T10:56:33.000Z","updated_at":"2025-01-21T03:35:58.000Z","dependencies_parsed_at":"2024-11-11T12:18:00.361Z","dependency_job_id":"16b685aa-23d1-4b0c-92f9-2656743571c5","html_url":"https://github.com/RijoSLal/Django-e_crypt","commit_stats":null,"previous_names":["rijoslal/django-e_crypt"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RijoSLal%2FDjango-e_crypt","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RijoSLal%2FDjango-e_crypt/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RijoSLal%2FDjango-e_crypt/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RijoSLal%2FDjango-e_crypt/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/RijoSLal","download_url":"https://codeload.github.com/RijoSLal/Django-e_crypt/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248557844,"owners_count":21124165,"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","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":["bootstrap","django","html-css","postgresql","sha256"],"created_at":"2025-01-31T07:18:09.957Z","updated_at":"2026-02-04T15:37:02.702Z","avatar_url":"https://github.com/RijoSLal.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# e_crypt - SHA256 Password Generator\n\ne_crypt is a web application built with Django and PostgreSQL that allows users to securely generate SHA256 hashed passwords. The app features a login and signup system for admin users, enabling them to manage and access the generated passwords.\n\n## Features\n\n- **User Authentication:**\n  - Signup and login functionality for admin users.\n  - Secure password storage using SHA256 hash.\n  \n- **Password Generation:**\n  - Generate a secure SHA256 password hash from the user input.\n  \n- **Admin Panel:**\n  - Admin can manage user data and passwords through the Django admin panel.\n\n## Technologies Used\n\n- **Backend:** Django\n- **Database:** PostgreSQL\n- **Hashing Algorithm:** SHA256\n- **Authentication:** Django's built-in user authentication system\n\n## Installation\n\n### Prerequisites\n\nEnsure you have the following installed:\n- Python 3.x\n- Django 4.x\n- PostgreSQL\n- Pip (for installing dependencies)\n\n### Setup\n\n1. Clone the repository:\n\n   ```bash\n   git clone https://github.com/RijoSLal/e_crypt.git\n   cd e_crypt\n   ```\n\n2. Create a virtual environment:\n\n   ```bash\n   python3 -m venv venv\n   source venv/bin/activate  # On Windows use `venv\\Scripts\\activate`\n   ```\n\n3. Install required dependencies:\n\n   ```bash\n   pip install -r requirements.txt\n   ```\n\n4. Set up the PostgreSQL database:\n   - Create a PostgreSQL database and user for the app.\n   - Update the database credentials in `settings.py` under `DATABASES`:\n\n   ```python\n   DATABASES = {\n       'default': {\n           'ENGINE': 'django.db.backends.postgresql',\n           'NAME': 'your_database_name',\n           'USER': 'your_database_user',\n           'PASSWORD': 'your_database_password',\n           'HOST': 'localhost',\n           'PORT': '5432',\n       }\n   }\n   ```\n\n5. Run migrations:\n\n   ```bash\n   python manage.py migrate\n   ```\n\n6. Create a superuser for accessing the admin panel:\n\n   ```bash\n   python manage.py createsuperuser\n   ```\n\n7. Run the development server:\n\n   ```bash\n   python manage.py runserver\n   ```\n\n8. Open the app in your browser:\n\n   ```\n   http://127.0.0.1:8000/\n   ```\n\n9. Login to the Django admin panel:\n\n   ```\n   http://127.0.0.1:8000/admin\n   ```\n\n## Usage\n\n- **Generate SHA256 Password:**\n  - Once logged in, users can input a password and the app will return its SHA256 hashed version.\n  \n- **Admin Panel:**\n  - Admin users can manage user accounts and access the password generation tool from the admin panel.\n\n## Contribution\n\nFeel free to fork the repository, make improvements, and create pull requests. Contributions are always welcome!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frijoslal%2Fdjango-e_crypt","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frijoslal%2Fdjango-e_crypt","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frijoslal%2Fdjango-e_crypt/lists"}