b1026d535e5fb97f4371865663c856e6f8016fe5
[tinc] / src / sptps.h
1 /*
2     sptps.h -- Simple Peer-to-Peer Security
3     Copyright (C) 2011 Guus Sliepen <guus@tinc-vpn.org>,
4
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation; either version 2 of the License, or
8     (at your option) any later version.
9
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License along
16     with this program; if not, write to the Free Software Foundation, Inc.,
17     51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19
20 #include "system.h"
21
22 #include "cipher.h"
23 #include "digest.h"
24 #include "ecdh.h"
25 #include "ecdsa.h"
26
27 #define STATE_FIRST_KEX 0 // Waiting for peer's ECDHE pubkey
28 #define STATE_NORMAL 1
29 #define STATE_WAIT_KEX 2 // Waiting for peer's ECDHE pubkey
30 #define STATE_WAIT_ACK 3 // Waiting for peer's acknowledgement of pubkey reception
31
32 typedef bool (*send_data_t)(void *handle, const char *data, size_t len);
33 typedef bool (*receive_record_t)(void *handle, uint8_t type, const char *data, uint16_t len);
34
35 typedef struct sptps {
36         bool initiator;
37         int state;
38
39         char *inbuf;
40         size_t buflen;
41
42         cipher_t incipher;
43         digest_t indigest;
44         uint32_t inseqno;
45
46         cipher_t outcipher;
47         digest_t outdigest;
48         uint32_t outseqno;
49
50         ecdsa_t mykey;
51         ecdsa_t hiskey;
52         ecdh_t ecdh;
53
54         char *myrandom;
55         char *key;
56         char *label;
57         size_t labellen;
58
59         void *handle;
60         send_data_t send_data;
61         receive_record_t receive_record;
62 } sptps_t;
63
64 extern bool start_sptps(sptps_t *s, void *handle, bool initiator, ecdsa_t mykey, ecdsa_t hiskey, const char *label, size_t labellen, send_data_t send_data, receive_record_t receive_record);
65 extern bool stop_sptps(sptps_t *s);
66 extern bool send_record(sptps_t *s, uint8_t type, const char *data, uint16_t len);
67 extern bool receive_data(sptps_t *s, const char *data, size_t len);