From 9eb883104e5eabccfb711f65bbdc65f2423ed786 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20P=C3=A9gouri=C3=A9-Gonnard?= Date: Mon, 7 Oct 2013 19:35:48 +0200 Subject: [PATCH] Update some comments on ecp_group --- include/polarssl/ecp.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/polarssl/ecp.h b/include/polarssl/ecp.h index 3a9a7b667..0267cb07a 100644 --- a/include/polarssl/ecp.h +++ b/include/polarssl/ecp.h @@ -113,7 +113,7 @@ ecp_point; */ typedef struct { - ecp_group_id id; /*!< RFC 4492 group ID */ + ecp_group_id id; /*!< internal group identifier */ mpi P; /*!< prime modulus of the base field */ mpi A; /*!< currently unused (-3 assumed) */ mpi B; /*!< constant term in the equation */ @@ -126,7 +126,7 @@ typedef struct int (*t_pre)(ecp_point *, void *); /*!< currently unused */ int (*t_post)(ecp_point *, void *); /*!< currently unused */ void *t_data; /*!< currently unused */ - ecp_point *T; /*!< pre-computed points (unused now) */ + ecp_point *T; /*!< pre-computed points for ecp_mul() */ size_t T_size; /*!< number for pre-computed points */ } ecp_group;