source: trunk/server/source4/heimdal/lib/hcrypto/dh.h

Last change on this file was 745, checked in by Silvan Scherrer, 13 years ago

Samba Server: updated trunk to 3.6.0

File size: 4.3 KB
Line 
1/*
2 * Copyright (c) 2006 Kungliga Tekniska Högskolan
3 * (Royal Institute of Technology, Stockholm, Sweden).
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 *
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 *
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 *
17 * 3. Neither the name of the Institute nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
20 *
21 * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 */
33
34/*
35 * $Id$
36 */
37
38#ifndef _HEIM_DH_H
39#define _HEIM_DH_H 1
40
41/* symbol renaming */
42#define DH_null_method hc_DH_null_method
43#define DH_tfm_method hc_DH_tfm_method
44#define DH_ltm_method hc_DH_ltm_method
45#define DH_new hc_DH_new
46#define DH_new_method hc_DH_new_method
47#define DH_free hc_DH_free
48#define DH_up_ref hc_DH_up_ref
49#define DH_size hc_DH_size
50#define DH_set_default_method hc_DH_set_default_method
51#define DH_get_default_method hc_DH_get_default_method
52#define DH_set_method hc_DH_set_method
53#define DH_get_method hc_DH_get_method
54#define DH_set_ex_data hc_DH_set_ex_data
55#define DH_get_ex_data hc_DH_get_ex_data
56#define DH_generate_parameters_ex hc_DH_generate_parameters_ex
57#define DH_check_pubkey hc_DH_check_pubkey
58#define DH_generate_key hc_DH_generate_key
59#define DH_compute_key hc_DH_compute_key
60#define i2d_DHparams hc_i2d_DHparams
61
62/*
63 *
64 */
65
66typedef struct DH DH;
67typedef struct DH_METHOD DH_METHOD;
68
69#include <hcrypto/bn.h>
70#include <hcrypto/engine.h>
71
72struct DH_METHOD {
73 const char *name;
74 int (*generate_key)(DH *);
75 int (*compute_key)(unsigned char *,const BIGNUM *,DH *);
76 int (*bn_mod_exp)(const DH *, BIGNUM *, const BIGNUM *,
77 const BIGNUM *, const BIGNUM *, BN_CTX *,
78 BN_MONT_CTX *);
79 int (*init)(DH *);
80 int (*finish)(DH *);
81 int flags;
82 void *app_data;
83 int (*generate_params)(DH *, int, int, BN_GENCB *);
84};
85
86struct DH {
87 int pad;
88 int version;
89 BIGNUM *p;
90 BIGNUM *g;
91 long length;
92 BIGNUM *pub_key;
93 BIGNUM *priv_key;
94 int flags;
95 void *method_mont_p;
96 BIGNUM *q;
97 BIGNUM *j;
98 void *seed;
99 int seedlen;
100 BIGNUM *counter;
101 int references;
102 struct CRYPTO_EX_DATA {
103 void *sk;
104 int dummy;
105 } ex_data;
106 const DH_METHOD *meth;
107 ENGINE *engine;
108};
109
110/* DH_check_pubkey return codes in `codes' argument. */
111#define DH_CHECK_PUBKEY_TOO_SMALL 1
112#define DH_CHECK_PUBKEY_TOO_LARGE 2
113
114/*
115 *
116 */
117
118const DH_METHOD *DH_null_method(void);
119const DH_METHOD *DH_tfm_method(void);
120const DH_METHOD *DH_ltm_method(void);
121
122DH * DH_new(void);
123DH * DH_new_method(ENGINE *);
124void DH_free(DH *);
125int DH_up_ref(DH *);
126
127int DH_size(const DH *);
128
129
130void DH_set_default_method(const DH_METHOD *);
131const DH_METHOD *
132 DH_get_default_method(void);
133int DH_set_method(DH *, const DH_METHOD *);
134
135int DH_set_ex_data(DH *, int, void *);
136void * DH_get_ex_data(DH *, int);
137
138int DH_generate_parameters_ex(DH *, int, int, BN_GENCB *);
139int DH_check_pubkey(const DH *, const BIGNUM *, int *);
140int DH_generate_key(DH *);
141int DH_compute_key(unsigned char *,const BIGNUM *,DH *);
142
143int i2d_DHparams(DH *, unsigned char **);
144
145#endif /* _HEIM_DH_H */
146
Note: See TracBrowser for help on using the repository browser.