Skip to content

Commit fb9f079

Browse files
committed
First version
0 parents  commit fb9f079

15 files changed

+1610
-0
lines changed

LICENSE

+674
Large diffs are not rendered by default.

Main.cpp

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#include "MainWindow.h"
2+
3+
#include <QApplication>
4+
5+
int main(int argc, char *argv[])
6+
{
7+
QApplication a(argc, argv);
8+
MainWindow w;
9+
w.show();
10+
return a.exec();
11+
}

MainWindow.cpp

+100
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,100 @@
1+
2+
#include <QRandomGenerator64>
3+
#include <QFileDialog>
4+
#include <QMessageBox>
5+
#include <QTextStream>
6+
#include "MainWindow.h"
7+
#include "ui_MainWindow.h"
8+
#include "SimpleCrypt.h"
9+
10+
MainWindow::MainWindow(QWidget *parent)
11+
: QMainWindow(parent)
12+
, ui(new Ui::MainWindow)
13+
{
14+
ui->setupUi(this);
15+
}
16+
17+
MainWindow::~MainWindow()
18+
{
19+
delete ui;
20+
}
21+
22+
void MainWindow::on_encrypt_clicked()
23+
{
24+
const QString text = ui->text->toPlainText().trimmed();
25+
const quint64 key = getKey();
26+
27+
if(key > 0 && !text.isEmpty())
28+
{
29+
SimpleCrypt crypto(key);
30+
ui->text->setPlainText(crypto.encryptToString(text));
31+
}
32+
}
33+
34+
void MainWindow::on_decrypt_pressed()
35+
{
36+
const QString text = ui->text->toPlainText().trimmed();
37+
const quint64 key = getKey();
38+
39+
if(key > 0 && !text.isEmpty())
40+
{
41+
SimpleCrypt crypto(key);
42+
ui->text->setPlainText(crypto.decryptToString(text));
43+
}
44+
}
45+
46+
void MainWindow::on_generateKey_clicked()
47+
{
48+
QRandomGenerator64 generator;
49+
ui->key->setText(QString::number(generator.generate(), 16).toUpper());
50+
}
51+
52+
void MainWindow::on_loadFromFile_clicked()
53+
{
54+
const QString fileName = QFileDialog::getOpenFileName(this, tr("Open File"));
55+
56+
if(!fileName.isEmpty())
57+
{
58+
QFile file(fileName);
59+
60+
if(file.open(QIODevice::ReadOnly | QIODevice::Text))
61+
{
62+
ui->text->setPlainText(file.readAll());
63+
}
64+
else QMessageBox::warning(this,
65+
tr("Error"),
66+
tr("Unable to open file")
67+
);
68+
}
69+
}
70+
71+
void MainWindow::on_saveToFile_clicked()
72+
{
73+
const QString fileName = QFileDialog::getSaveFileName(this, tr("Save File"));
74+
75+
if(!fileName.isEmpty())
76+
{
77+
QFile file(fileName);
78+
79+
if(file.open(QIODevice::WriteOnly | QIODevice::Text))
80+
{
81+
QTextStream outputStream(&file);
82+
outputStream << ui->text->toPlainText();
83+
}
84+
else QMessageBox::warning(this,
85+
tr("Error"),
86+
tr("Unable to save file")
87+
);
88+
}
89+
}
90+
91+
quint64 MainWindow::getKey()
92+
{
93+
const quint64 key = ui->key->text().toULongLong(nullptr, 16);
94+
95+
if(key == 0) QMessageBox::warning(this,
96+
tr("Warning"),
97+
tr("Please, insert a valid key")
98+
);
99+
return key;
100+
}

MainWindow.h

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
#ifndef MAINWINDOW_H
2+
#define MAINWINDOW_H
3+
4+
#include <QMainWindow>
5+
6+
QT_BEGIN_NAMESPACE
7+
namespace Ui { class MainWindow; }
8+
QT_END_NAMESPACE
9+
10+
class MainWindow : public QMainWindow
11+
{
12+
Q_OBJECT
13+
14+
public:
15+
MainWindow(QWidget *parent = nullptr);
16+
~MainWindow();
17+
18+
private slots:
19+
void on_generateKey_clicked();
20+
void on_loadFromFile_clicked();
21+
void on_saveToFile_clicked();
22+
void on_encrypt_clicked();
23+
void on_decrypt_pressed();
24+
25+
private:
26+
Ui::MainWindow *ui;
27+
28+
quint64 getKey();
29+
};
30+
#endif // MAINWINDOW_H

MainWindow.ui

+218
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,218 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<ui version="4.0">
3+
<class>MainWindow</class>
4+
<widget class="QMainWindow" name="MainWindow">
5+
<property name="geometry">
6+
<rect>
7+
<x>0</x>
8+
<y>0</y>
9+
<width>800</width>
10+
<height>600</height>
11+
</rect>
12+
</property>
13+
<property name="windowTitle">
14+
<string>SimpleCryptGUI</string>
15+
</property>
16+
<property name="locale">
17+
<locale language="English" country="UnitedStates"/>
18+
</property>
19+
<widget class="QWidget" name="centralwidget">
20+
<layout class="QVBoxLayout" name="verticalLayout">
21+
<property name="spacing">
22+
<number>0</number>
23+
</property>
24+
<property name="leftMargin">
25+
<number>0</number>
26+
</property>
27+
<property name="topMargin">
28+
<number>0</number>
29+
</property>
30+
<property name="rightMargin">
31+
<number>0</number>
32+
</property>
33+
<property name="bottomMargin">
34+
<number>0</number>
35+
</property>
36+
<item>
37+
<widget class="QFrame" name="frame">
38+
<property name="frameShape">
39+
<enum>QFrame::StyledPanel</enum>
40+
</property>
41+
<property name="frameShadow">
42+
<enum>QFrame::Raised</enum>
43+
</property>
44+
<layout class="QHBoxLayout" name="horizontalLayout">
45+
<item>
46+
<widget class="QToolButton" name="loadFromFile">
47+
<property name="text">
48+
<string>Load from file</string>
49+
</property>
50+
<property name="icon">
51+
<iconset resource="SimpleCryptGUI.qrc">
52+
<normaloff>:/icons/LoadFromFile.svg</normaloff>:/icons/LoadFromFile.svg</iconset>
53+
</property>
54+
<property name="iconSize">
55+
<size>
56+
<width>32</width>
57+
<height>32</height>
58+
</size>
59+
</property>
60+
<property name="toolButtonStyle">
61+
<enum>Qt::ToolButtonTextUnderIcon</enum>
62+
</property>
63+
</widget>
64+
</item>
65+
<item>
66+
<widget class="QToolButton" name="saveToFile">
67+
<property name="text">
68+
<string>Save to file</string>
69+
</property>
70+
<property name="icon">
71+
<iconset resource="SimpleCryptGUI.qrc">
72+
<normaloff>:/icons/SaveToFile.svg</normaloff>:/icons/SaveToFile.svg</iconset>
73+
</property>
74+
<property name="iconSize">
75+
<size>
76+
<width>32</width>
77+
<height>32</height>
78+
</size>
79+
</property>
80+
<property name="toolButtonStyle">
81+
<enum>Qt::ToolButtonTextUnderIcon</enum>
82+
</property>
83+
</widget>
84+
</item>
85+
<item>
86+
<widget class="Line" name="line">
87+
<property name="orientation">
88+
<enum>Qt::Vertical</enum>
89+
</property>
90+
</widget>
91+
</item>
92+
<item>
93+
<widget class="QLabel" name="label">
94+
<property name="text">
95+
<string>Key</string>
96+
</property>
97+
</widget>
98+
</item>
99+
<item>
100+
<widget class="QLineEdit" name="key">
101+
<property name="sizePolicy">
102+
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
103+
<horstretch>0</horstretch>
104+
<verstretch>0</verstretch>
105+
</sizepolicy>
106+
</property>
107+
<property name="minimumSize">
108+
<size>
109+
<width>150</width>
110+
<height>0</height>
111+
</size>
112+
</property>
113+
<property name="inputMask">
114+
<string>HHHHHHHHHHHHHHHH</string>
115+
</property>
116+
</widget>
117+
</item>
118+
<item>
119+
<widget class="QToolButton" name="generateKey">
120+
<property name="text">
121+
<string>Generate</string>
122+
</property>
123+
<property name="icon">
124+
<iconset resource="SimpleCryptGUI.qrc">
125+
<normaloff>:/icons/Key.svg</normaloff>:/icons/Key.svg</iconset>
126+
</property>
127+
<property name="iconSize">
128+
<size>
129+
<width>32</width>
130+
<height>32</height>
131+
</size>
132+
</property>
133+
<property name="toolButtonStyle">
134+
<enum>Qt::ToolButtonTextUnderIcon</enum>
135+
</property>
136+
</widget>
137+
</item>
138+
<item>
139+
<widget class="Line" name="line_2">
140+
<property name="orientation">
141+
<enum>Qt::Vertical</enum>
142+
</property>
143+
</widget>
144+
</item>
145+
<item>
146+
<widget class="QToolButton" name="encrypt">
147+
<property name="text">
148+
<string>Encrypt</string>
149+
</property>
150+
<property name="icon">
151+
<iconset resource="SimpleCryptGUI.qrc">
152+
<normaloff>:/icons/Encrypt.svg</normaloff>:/icons/Encrypt.svg</iconset>
153+
</property>
154+
<property name="iconSize">
155+
<size>
156+
<width>32</width>
157+
<height>32</height>
158+
</size>
159+
</property>
160+
<property name="toolButtonStyle">
161+
<enum>Qt::ToolButtonTextUnderIcon</enum>
162+
</property>
163+
</widget>
164+
</item>
165+
<item>
166+
<widget class="QToolButton" name="decrypt">
167+
<property name="text">
168+
<string>Decrypt</string>
169+
</property>
170+
<property name="icon">
171+
<iconset resource="SimpleCryptGUI.qrc">
172+
<normaloff>:/icons/Decrypt.svg</normaloff>:/icons/Decrypt.svg</iconset>
173+
</property>
174+
<property name="iconSize">
175+
<size>
176+
<width>32</width>
177+
<height>32</height>
178+
</size>
179+
</property>
180+
<property name="toolButtonStyle">
181+
<enum>Qt::ToolButtonTextUnderIcon</enum>
182+
</property>
183+
</widget>
184+
</item>
185+
<item>
186+
<spacer name="horizontalSpacer">
187+
<property name="orientation">
188+
<enum>Qt::Horizontal</enum>
189+
</property>
190+
<property name="sizeHint" stdset="0">
191+
<size>
192+
<width>40</width>
193+
<height>20</height>
194+
</size>
195+
</property>
196+
</spacer>
197+
</item>
198+
</layout>
199+
</widget>
200+
</item>
201+
<item>
202+
<widget class="QPlainTextEdit" name="text">
203+
<property name="undoRedoEnabled">
204+
<bool>false</bool>
205+
</property>
206+
<property name="plainText">
207+
<string notr="true"/>
208+
</property>
209+
</widget>
210+
</item>
211+
</layout>
212+
</widget>
213+
</widget>
214+
<resources>
215+
<include location="SimpleCryptGUI.qrc"/>
216+
</resources>
217+
<connections/>
218+
</ui>

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# SimpleCryptGUI
2+
3+
This is a very simple frontend GUI for use the [SimpleCrypt](https://wiki.qt.io/Simple_encryption_with_SimpleCrypt) Qt class for easily encrypt/decrypt text. The GUI allow to generate a random key and load/save text content from/to file.

0 commit comments

Comments
 (0)