https://github.com/michaelkedey/ciphers
cipher tools for secure communication
https://github.com/michaelkedey/ciphers
cipher decryption-algorithm encryption flask-application python
Last synced: 2 months ago
JSON representation
cipher tools for secure communication
- Host: GitHub
- URL: https://github.com/michaelkedey/ciphers
- Owner: michaelkedey
- Created: 2024-08-23T13:01:04.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-09-12T15:42:44.000Z (8 months ago)
- Last Synced: 2024-12-31T08:17:06.828Z (4 months ago)
- Topics: cipher, decryption-algorithm, encryption, flask-application, python
- Language: HTML
- Homepage:
- Size: 21.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# cipher tools for secure comminication
- this directory contains code for implementing an encryption systemt for secure communication between parties.
-**directory structure**
```plaintext
$ tree
.
|-- README.md
`-- src
|-- Dockerfile
|-- encrypt.py
|-- requirements.txt
|-- v1
| |-- static
| | |-- script.js
| | `-- styles.css
| `-- templates
| |-- index copy.html
| |-- index.html
| |-- script.js
| `-- styles.css
|-- v2
| |-- static
| | |-- scripts
| | | `-- script.js
| | `-- stylesheets
| | `-- styles.css
| `-- templates
| `-- index.html
`-- v3
|-- encrypt.py
|-- static
| |-- scripts
| | `-- script.js
| `-- stylesheets
| `-- styles.css
`-- templates
`-- index.html14 directories, 17 files
```