{"id":22839046,"url":"https://github.com/ilovenooodles/classic-crypto","last_synced_at":"2026-05-02T22:39:55.426Z","repository":{"id":68870190,"uuid":"593114315","full_name":"IloveNooodles/Classic-Crypto","owner":"IloveNooodles","description":"Web based Classic cryptography","archived":false,"fork":false,"pushed_at":"2023-02-07T13:06:08.000Z","size":362,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-02-06T08:44:37.458Z","etag":null,"topics":["cryptography","flask","nextjs"],"latest_commit_sha":null,"homepage":"","language":"Python","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/IloveNooodles.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":"2023-01-25T09:17:22.000Z","updated_at":"2023-02-03T19:46:51.000Z","dependencies_parsed_at":"2023-04-19T14:24:52.264Z","dependency_job_id":null,"html_url":"https://github.com/IloveNooodles/Classic-Crypto","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IloveNooodles%2FClassic-Crypto","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IloveNooodles%2FClassic-Crypto/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IloveNooodles%2FClassic-Crypto/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IloveNooodles%2FClassic-Crypto/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/IloveNooodles","download_url":"https://codeload.github.com/IloveNooodles/Classic-Crypto/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246413232,"owners_count":20773053,"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":["cryptography","flask","nextjs"],"created_at":"2024-12-13T00:09:43.812Z","updated_at":"2025-10-19T06:13:43.039Z","avatar_url":"https://github.com/IloveNooodles.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Web based classic cryptography\n\n## Members\n\n| Name                           |   NIM    |\n| ------------------------------ | :------: |\n| Muhammad Garebaldhie ER Rahman | 13520029 |\n| Frederik Imanuel Louis         | 13520163 |\n\n## Tech Stack Used\n\n### FE\n\n- Node\n- NextJS\n- TypeScript\n- SCSS\n\n### BE\n\n- Python\n- Flask\n\n## How To Run\n\nFirst thing first its to install all the dependency listed in the tech stack section\n\n### Backend\n\n1. Install virtual environment `pip3 -m install virtualenv`\n2. Create virual enviroment for your python `virtualenv venv`\n3. Activate your virtual environment\n   1. UNIX based: `source ./venv/bin/activate`\n   2. Windows: `./venv/Scripts/activate`\n4. Install the python dependency `pip3 -r install requirements.txt`\n5. Run the service using `python app.py` or use `flask run -p 8000`\n\n### Frontend\n\n1. Make sure you have NodeJS in your computer\n2. Install the dependencies `yarn install`\n3. Run service `yarn dev`\n\n## Available Cipher\n\n- Vigenere Cipher\n- Auto Key Vigenere Cipher\n- Extended Vignere Cipher\n- Playfair Cipher\n- Hill Cipher\n- Affine Cipher\n\n## Folder Structure\n\nBackend\n\n```txt\n.\n├── app.py\n├── encryption\n│   ├── affine.py\n│   ├── hill.py\n│   ├── __init__.py\n│   ├── playfair.py\n│   ├── sanitize.py\n│   └── vignere.py\n├── requirements.txt\n└── static\n```\n\nFrontend\n\n```\n.\n├── next.config.js\n├── next-env.d.ts\n├── package.json\n├── package-lock.json\n├── public\n│   ├── favicon.ico\n│   ├── next.svg\n│   ├── thirteen.svg\n│   └── vercel.svg\n├── README.md\n├── src\n│   ├── app\n│   │   ├── (cipher)\n│   │   │   ├── affine-cipher\n│   │   │   │   ├── head.tsx\n│   │   │   │   └── page.tsx\n│   │   │   ├── auto-key-vigenere-cipher\n│   │   │   │   ├── head.tsx\n│   │   │   │   └── page.tsx\n│   │   │   ├── basic.tsx\n│   │   │   ├── extended-vigenere-cipher\n│   │   │   │   ├── head.tsx\n│   │   │   │   └── page.tsx\n│   │   │   ├── hill-cipher\n│   │   │   │   ├── head.tsx\n│   │   │   │   └── page.tsx\n│   │   │   ├── layout.tsx\n│   │   │   ├── not-found.tsx\n│   │   │   ├── playfair-cipher\n│   │   │   │   ├── head.tsx\n│   │   │   │   └── page.tsx\n│   │   │   └── vigenere-cipher\n│   │   │       ├── head.tsx\n│   │   │       └── page.tsx\n│   │   ├── (component)\n│   │   │   ├── button-group.tsx\n│   │   │   ├── cipher-list.tsx\n│   │   │   └── key.tsx\n│   │   ├── global-error.tsx\n│   │   ├── globals.css\n│   │   ├── head.tsx\n│   │   ├── layout.tsx\n│   │   └── page.tsx\n│   ├── styles\n│   │   ├── Cipher.module.scss\n│   │   ├── _mixins.scss\n│   │   └── Root.module.scss\n│   └── utils\n│       ├── desc.ts\n│       ├── fonts.ts\n│       └── type.ts\n├── tsconfig.json\n├── yarn-error.log\n└── yarn.lock\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Filovenooodles%2Fclassic-crypto","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Filovenooodles%2Fclassic-crypto","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Filovenooodles%2Fclassic-crypto/lists"}