2007-05-22 21:32:48 +00:00
|
|
|
/*
|
|
|
|
cipher.h -- header file cipher.c
|
|
|
|
Copyright (C) 2007 Guus Sliepen <guus@tinc-vpn.org>
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
2009-09-29 13:33:58 +00:00
|
|
|
You should have received a copy of the GNU General Public License along
|
|
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2007-05-22 21:32:48 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __TINC_CIPHER_H__
|
|
|
|
#define __TINC_CIPHER_H__
|
|
|
|
|
|
|
|
#include <gcrypt.h>
|
|
|
|
|
2008-12-14 12:47:26 +00:00
|
|
|
#define CIPHER_MAX_BLOCK_SIZE 32
|
|
|
|
#define CIPHER_MAX_IV_SIZE 16
|
|
|
|
#define CIPHER_MAX_KEY_SIZE 32
|
|
|
|
|
2007-05-22 21:32:48 +00:00
|
|
|
typedef struct cipher {
|
|
|
|
gcry_cipher_hd_t handle;
|
|
|
|
char *key;
|
|
|
|
int nid;
|
|
|
|
uint16_t keylen;
|
|
|
|
uint16_t blklen;
|
2009-11-04 23:02:42 +00:00
|
|
|
bool padding;
|
2007-05-22 21:32:48 +00:00
|
|
|
} cipher_t;
|
|
|
|
|
2007-05-22 23:41:22 +00:00
|
|
|
extern bool cipher_open_by_name(struct cipher *, const char *);
|
|
|
|
extern bool cipher_open_by_nid(struct cipher *, int);
|
|
|
|
extern bool cipher_open_blowfish_ofb(struct cipher *);
|
|
|
|
extern void cipher_close(struct cipher *);
|
|
|
|
extern size_t cipher_keylength(const struct cipher *);
|
2007-09-04 14:58:52 +00:00
|
|
|
extern void cipher_get_key(const struct cipher *, void *);
|
2007-05-23 13:45:49 +00:00
|
|
|
extern bool cipher_set_key(struct cipher *, void *, bool);
|
|
|
|
extern bool cipher_set_key_from_rsa(struct cipher *, void *, size_t, bool);
|
2007-09-04 14:58:52 +00:00
|
|
|
extern bool cipher_regenerate_key(struct cipher *, bool);
|
2007-07-20 20:10:46 +00:00
|
|
|
extern bool cipher_encrypt(struct cipher *, const void *indata, size_t inlen, void *outdata, size_t *outlen, bool oneshot);
|
|
|
|
extern bool cipher_decrypt(struct cipher *, const void *indata, size_t inlen, void *outdata, size_t *outlen, bool oneshot);
|
2007-05-22 23:41:22 +00:00
|
|
|
extern int cipher_get_nid(const struct cipher *);
|
|
|
|
extern bool cipher_active(const struct cipher *);
|
2007-05-22 21:32:48 +00:00
|
|
|
|
|
|
|
#endif
|