http://localhost:5000
118 |
119 |
122 | ├── Backend
├── crypto
│ ├── __init__.py
│ ├── utils.py
│ ├── decryptor.py
│ └── encryptor.py
├── requirements.txt
├── start_api.py
├── README.md
├── API_DOCS.md
├── test_api.py
└── api.py
├── original text.txt
├── decrypted.txt
├── encrypted.txt
├── Frontend
├── vite.config.js
├── src
│ ├── main.jsx
│ ├── index.css
│ ├── services
│ │ └── api.js
│ ├── components
│ │ ├── ResultDisplay.jsx
│ │ ├── DecryptForm.jsx
│ │ └── EncryptForm.jsx
│ ├── assets
│ │ └── react.svg
│ ├── App.jsx
│ └── App.css
├── .gitignore
├── index.html
├── package.json
├── README.md
├── eslint.config.js
└── public
│ └── vite.svg
├── .github
├── ISSUE_TEMPLATE
│ ├── -feature-.md
│ ├── -bug-.md
│ └── -ui-enhancement-.md
└── pull_request_template.md
├── CONTRIBUTING.md
├── .gitignore
├── LICENSE.md
├── SECURITY.md
├── Code of Conduct.md
├── README.md
├── static
└── styles.css
├── app.py
└── templates
└── index.html
/Backend/crypto/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/original text.txt:
--------------------------------------------------------------------------------
1 | Hello World!
--------------------------------------------------------------------------------
/decrypted.txt:
--------------------------------------------------------------------------------
1 | Hi, My name is Harsh Raj
--------------------------------------------------------------------------------
/encrypted.txt:
--------------------------------------------------------------------------------
1 | 122 48 55 92 52 64 92 53 1 117 47 92 48 46 92 122 1 138 46 57 92 99 1 10
--------------------------------------------------------------------------------
/Backend/requirements.txt:
--------------------------------------------------------------------------------
1 | cryptography>=41.0.0
2 | flask>=2.3.0
3 | flask-cors>=4.0.0
4 | requests>=2.31.0
--------------------------------------------------------------------------------
/Frontend/vite.config.js:
--------------------------------------------------------------------------------
1 | import { defineConfig } from 'vite'
2 | import react from '@vitejs/plugin-react'
3 |
4 | // https://vite.dev/config/
5 | export default defineConfig({
6 | plugins: [react()],
7 | })
8 |
--------------------------------------------------------------------------------
/Frontend/src/main.jsx:
--------------------------------------------------------------------------------
1 | import { StrictMode } from 'react'
2 | import { createRoot } from 'react-dom/client'
3 | import './index.css'
4 | import App from './App.jsx'
5 |
6 | createRoot(document.getElementById('root')).render(
7 |
{error}
26 |http://localhost:5000
118 |
119 |
122 | | 🌟 Stars | 11 |🍴 Forks | 12 |🐛 Issues | 13 |🔔 Open PRs | 14 |🔕 Close PRs | 15 |