source: comparacioncriptosistemas/interfaz/Criptosistema_Interfaz.pro

interfaz
Last change on this file was 25a5325, checked in by lhernandez <lhernandez@…>, 8 years ago

Realizada mejora de la interfaz(grid), agragada funcionalidad para la creacion de llaves (privada y publica) se guardar en un directorio kyes del proyecto, agragada funcionalidad para el cifrado de un texto plano (por ahora esta comentado, para realizar la interfaz) y agragada funcionalidad para descifrar el archivo a partir de un data.dat cifrado

  • Property mode set to 100644
File size: 786 bytes
Line 
1#-------------------------------------------------
2#
3# Project created by QtCreator 2016-04-11T15:19:16
4#
5#-------------------------------------------------
6
7QT       += core gui
8
9CONFIG += c++11
10
11greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
12
13TARGET = Criptosistema_Interfaz
14TEMPLATE = app
15
16
17SOURCES += main.cpp\
18           sistema.cpp\
19           hash.cpp \
20           executionresult.cpp \
21           dialog.cpp \
22           polynomial.cpp \
23    criptosistemas.cpp
24
25
26HEADERS += sistema.h \
27            hash.h \
28            polynomial.h \
29            resource.h \
30            types.h \
31    executionresult.h \
32    dialog.h \
33    polinomial.hpp \
34    criptosistemas.h
35
36FORMS    += sistema.ui \
37    dialog.ui \
38    criptosistemas.ui
39
40RESOURCES += \
41    static.qrc
42
43LIBS += -lcrypto++
Note: See TracBrowser for help on using the repository browser.