source: terepaima/signHash/signHash.pro @ 0f7c727

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

Agregado directorio signHash que corrresponde a prueba de concepto para firmar un hash con un dispositivo criptográfico en C++. El objetivo es que desde Terepaima se pueda firmar el hash que se recibe del servicio web Murachí.

  • Property mode set to 100644
File size: 467 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
13CONFIG   -= app_bundle
14
15TEMPLATE = app
16
17HEADERS += \
18    cryptotoken.h
19
20SOURCES +=  main.cpp \
21    cryptotoken.cpp
22
23
24INCLUDEPATH +=  /usr/include \
25                ./include
26
27
28LIBS += -ldl -lpcsclite -lcrypto /usr/lib64/libeTPkcs11.so
29
Note: See TracBrowser for help on using the repository browser.