-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
98 lines (94 loc) · 4 KB
/
index.html
File metadata and controls
98 lines (94 loc) · 4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Files Compressor with Encryption | Luca Bocaletto</title>
<meta name="description" content="This software helps users compress and encrypt their files, increasing security and saving storage space.">
<meta name="keywords" content="Files Compressor, Encryption, Python, zlib, Fernet, file compression, file encryption, 7bl, data protection">
<meta name="author" content="Luca Bocaletto">
<meta property="og:title" content="Files Compressor with Encryption">
<meta property="og:description" content="Compress, encrypt, and extract your files with this versatile tool by Luca Bocaletto.">
<meta property="og:type" content="website">
<meta property="og:url" content="https://github.com/bocaletto-luca/Files-Compressor-Encryption">
<meta property="og:image" content="https://github.com/elektronoide/7bl-Compressor-Encryption/assets/134635227/90a088c6-4786-47f9-a6f3-5d782186da04">
<link rel="canonical" href="https://github.com/bocaletto-luca/Files-Compressor-Encryption">
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
background-color: #f4f4f4;
margin: 0;
padding: 0;
color: #333;
}
.container {
max-width: 800px;
margin: 20px auto;
padding: 20px;
background-color: #fff;
}
header, section, footer {
margin-bottom: 20px;
}
header h1 {
font-size: 2em;
margin-bottom: 10px;
color: #444;
}
header h2 {
font-size: 1.2em;
color: #666;
margin-bottom: 20px;
}
ul {
list-style: disc inside;
margin: 10px 0;
}
.screenshot {
max-width: 100%;
height: auto;
border: 1px solid #ddd;
display: block;
margin: 10px 0;
}
a {
color: #069;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="container">
<header>
<h1>Files Compressor with Encryption</h1>
<h2>By Luca Bocaletto | Language: Python</h2>
</header>
<section id="description">
<p>This software is designed to help users compress and encrypt their files, making them more secure while reducing the required storage space.</p>
<h3>Main Features:</h3>
<ul>
<li><strong>Compress files:</strong> Select the files you wish to compress. The software uses the zlib compression library at the best available compression level.</li>
<li><strong>Encrypt files:</strong> Specify an encryption key that the software uses (via the Fernet cryptography library) to encrypt the compressed data – ensuring an additional level of security.</li>
<li><strong>Extract files:</strong> Extract files from an encrypted archive by decrypting the data and decompressing the files.</li>
</ul>
<p>By default, the software uses the ".7bl" extension for archived files (e.g., "archived_data.7bl"). However, users can change the file extension as desired. The archive’s content will be compressed and encrypted regardless.</p>
</section>
<section id="screenshot">
<h3>Screenshot</h3>
<img class="screenshot" src="https://github.com/elektronoide/7bl-Compressor-Encryption/assets/134635227/90a088c6-4786-47f9-a6f3-5d782186da04" alt="Screenshot of Files Compressor with Encryption">
</section>
<section id="user-interface">
<h3>User Interface</h3>
<p>The software offers a simple and intuitive user interface, making use of Python libraries such as tkinter, zlib, and cryptography to handle compression and encryption operations. In case of any errors, status messages are displayed to help the user troubleshoot.</p>
</section>
<footer>
<p>© 2025 Luca Bocaletto. All rights reserved.</p>
<p>Repository: <a href="https://github.com/bocaletto-luca/Files-Compressor-Encryption" target="_blank">Files-Compressor-Encryption</a></p>
</footer>
</div>
</body>
</html>