summaryrefslogtreecommitdiff
path: root/beecrypt/dlkp.c
blob: 78f0b5c3dd61b0dfad462836965fdc11fd6c0d1d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
/*
 * Copyright (c) 2000, 2001, 2002 Virtual Unlimited B.V.
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 *
 */

/*!\file dlkp.c
 * \brief Discrete Logarithm keypair.
 * \author Bob Deblier <bob.deblier@pandora.be>
 * \ingroup DL_m
 */

#include "system.h"
#include "dlkp.h"
#include "debug.h"

/*!\addtogroup DL_m
 * \{
 */

int dlkp_pPair(dlkp_p* kp, randomGeneratorContext* rgc, const dldp_p* param)
{
	/* copy the parameters */
	if (dldp_pCopy(&kp->param, param) < 0)
		return -1;

	if (dldp_pPair(param, rgc, &kp->x, &kp->y) < 0)
		return -1;

	return 0;
}

int dlkp_pInit(dlkp_p* kp)
{
	if (dldp_pInit(&kp->param) < 0)
		return -1;

	mpnzero(&kp->y);
	mpnzero(&kp->x);

	return 0;
}

int dlkp_pFree(dlkp_p* kp)
{
	/*@-usereleased -compdef @*/ /* kp->param.{p,q,n}.modl is OK */
	if (dldp_pFree(&kp->param) < 0)
		return -1;

	mpnfree(&kp->y);
	mpnfree(&kp->x);

	return 0;
	/*@=usereleased =compdef @*/
}

int dlkp_pCopy(dlkp_p* dst, const dlkp_p* src)
{
	if (dldp_pCopy(&dst->param, &src->param) < 0)
		return -1;

	mpncopy(&dst->y, &src->y);
	mpncopy(&dst->x, &src->x);

	return 0;
}

/*!\}
 */