source: terepaima/signHash/signHash.pro @ ce57b45

Last change on this file since ce57b45 was f626f58, checked in by Antonio Araujo <aaraujo@…>, 7 years ago

Modificaciones en el proyecto de prueba de concepto para firmar un hash recibido de murachi en un programa en C++. Revisar la función std::vector<unsigned char> signHash(QString hashToSign, QString pin, QString label);

  • Property mode set to 100644
File size: 528 bytes
Line 
1#-------------------------------------------------
2#
3# Project created by QtCreator 2017-05-05T13:01:18
4#
5#-------------------------------------------------
6
7QT       += core
8
9QT       -= gui
10
11TARGET = signHash
12CONFIG   += console\
13            c++11
14CONFIG   -= app_bundle
15
16TEMPLATE = app
17
18HEADERS += \
19    cryptotoken.h \
20    binaryutils.h
21
22SOURCES +=  main.cpp \
23    cryptotoken.cpp \
24    binaryutils.cpp
25
26
27INCLUDEPATH +=  /usr/include \
28                ./include
29
30
31LIBS += -ldl -lpcsclite -lcrypto /usr/lib64/libeTPkcs11.so
32
Note: See TracBrowser for help on using the repository browser.