import of 0.2-rm+zomb-pre3
[vpnc.git] / dh.c
blob8ef3b099d047123145a4719ebeb2fa9a4506f391
1 /* borrowed from isakmpd-20030718 (-; */
3 /* $OpenBSD: dh.c,v 1.8 2003/06/03 14:28:16 ho Exp $ */
4 /* $EOM: dh.c,v 1.5 1999/04/17 23:20:22 niklas Exp $ */
6 /*
7 * Copyright (c) 1998 Niels Provos. All rights reserved.
8 * Copyright (c) 1999 Niklas Hallqvist. All rights reserved.
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
19 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
20 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
21 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
22 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
23 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
24 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
28 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 * This code was written under funding by Ericsson Radio Systems.
35 #include "math_group.h"
36 #include "dh.h"
39 * Returns the length of our exchange value.
42 int
43 dh_getlen (struct group *group)
45 return group->getlen (group);
49 * Creates the exchange value we are offering to the other party.
50 * Each time this function is called a new value is created, that
51 * means the application has to save the exchange value itself,
52 * dh_create_exchange should only be called once.
54 int
55 dh_create_exchange (struct group *group, unsigned char *buf)
57 if (group->setrandom (group, group->c))
58 return -1;
59 if (group->operation (group, group->a, group->gen, group->c))
60 return -1;
61 group->getraw (group, group->a, buf);
62 return 0;
66 * Creates the Diffie-Hellman shared secret in 'secret', where 'exchange'
67 * is the exchange value offered by the other party. No length verification
68 * is done for the value, the application has to do that.
70 int
71 dh_create_shared (struct group *group, unsigned char *secret, unsigned char *exchange)
73 if (group->setraw (group, group->b, exchange, group->getlen (group)))
74 return -1;
75 if (group->operation (group, group->a, group->b, group->c))
76 return -1;
77 group->getraw (group, group->a, secret);
78 return 0;