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
|
/*
* Copyright (C) 2011 Free Software Foundation, Inc.
*
* This file is part of GNUTLS.
*
* The GNUTLS 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 3 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 program. If not, see <http://www.gnu.org/licenses/>
*
*/
/* Based on public domain code of LibTomCrypt by Tom St Denis.
* Adapted to gmp and nettle by Nikos Mavrogiannopoulos.
*/
#include "ecc.h"
/*
@file ecc_points.c
ECC Crypto, Tom St Denis
*/
/*
Allocate a new ECC point
@return A newly allocated point or NULL on error
*/
ecc_point *
ecc_new_point (void)
{
ecc_point *p;
p = calloc (1, sizeof (*p));
if (p == NULL)
{
return NULL;
}
if (mp_init_multi (&p->x, &p->y, &p->z, NULL) != 0)
{
free (p);
return NULL;
}
return p;
}
/* Free an ECC point from memory
@param p The point to free
*/
void
ecc_del_point (ecc_point * p)
{
/* prevents free'ing null arguments */
if (p != NULL)
{
mp_clear_multi (&p->x, &p->y, &p->z, NULL); /* note: p->z may be NULL but that's ok with this function anyways */
free (p);
}
}
/* $Source: /cvs/libtom/libtomcrypt/src/pk/ecc/ecc_points.c,v $ */
/* $Revision: 1.7 $ */
/* $Date: 2007/05/12 14:32:35 $ */
|