1 /***************************************************************************
2  begin       : Sun Oct 27 2019
3  copyright   : (C) 2019 by Martin Preuss
4  email       : martin@libchipcard.de
5 
6  ***************************************************************************
7  * This file is part of the project "AqBanking".                           *
8  * Please see toplevel file COPYING of that project for license details.   *
9  ***************************************************************************/
10 
11 #ifndef AQFINTS_SESSION_SIGN_HBCI_H
12 #define AQFINTS_SESSION_SIGN_HBCI_H
13 
14 
15 #include "session/session.h"
16 #include "msg/message.h"
17 #include "msg/keydescr.h"
18 #include "parser/segment.h"
19 
20 
21 
22 int AQFINTS_Session_SignSegmentHbci(AQFINTS_SESSION *sess,
23                                     AQFINTS_MESSAGE *message,
24                                     AQFINTS_KEYDESCR *keyDescr,
25                                     AQFINTS_SEGMENT *segFirstToSign,
26                                     AQFINTS_SEGMENT *segLastToSign,
27                                     int sigHeadNum,
28                                     int sigTailNum);
29 
30 #endif
31 
32