offline pcap reading working
[netsniff-ng.git] / src / curves.h
blobe3ad33a334836c2f8c414b091e9e06f9ac1fb88c
1 /*
2 * netsniff-ng - the packet sniffing beast
3 * By Daniel Borkmann <daniel@netsniff-ng.org>
4 * Copyright 2011 Daniel Borkmann <dborkma@tik.ee.ethz.ch>,
5 * Swiss federal institute of technology (ETH Zurich)
6 * Subject to the GPL.
7 */
9 /*
10 * seccure - Copyright 2009 B. Poettering
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License as
14 * published by the Free Software Foundation; either version 2 of the
15 * License, or (at your option) any later version.
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * General Public License for more details.
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
25 * 02111-1307 USA
28 /*
29 * SECCURE Elliptic Curve Crypto Utility for Reliable Encryption
31 * http://point-at-infinity.org/seccure/
34 * seccure implements a selection of asymmetric algorithms based on
35 * elliptic curve cryptography (ECC). See the manpage or the project's
36 * homepage for further details.
38 * This code links against the GNU gcrypt library "libgcrypt" (which
39 * is part of the GnuPG project). Use the included Makefile to build
40 * the binary.
42 * Report bugs to: seccure AT point-at-infinity.org
46 #ifndef CURVES_H
47 #define CURVES_H
49 #include "ecc.h"
51 struct curve_params {
52 const char *name;
53 struct domain_params dp;
54 int pk_len_bin, pk_len_compact;
55 int sig_len_bin, sig_len_compact;
56 int dh_len_bin, dh_len_compact;
57 int elem_len_bin, order_len_bin;
60 extern void curve_list(void);
61 extern struct curve_params *curve_by_name(const char *name);
62 extern struct curve_params *curve_by_pk_len_compact(int len);
63 extern void curve_release(struct curve_params *cp);
65 #endif /* CURVES_H */