commit | c83e418149d9f410c550d68c6b7ea2e432f5c461 | [log] [tgz] |
---|---|---|
author | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | Tue Sep 17 10:48:41 2013 +0200 |
committer | Paul Bakker <p.j.bakker@polarssl.org> | Wed Sep 18 14:35:54 2013 +0200 |
tree | 07d6040e9181d15f5e207b7557386509d732c636 | |
parent | c972770f78ee55504788296556efb9147a7a08e0 [diff] [blame] |
Prepare for ECDH point blinding just in case
diff --git a/include/polarssl/ecdh.h b/include/polarssl/ecdh.h index 08de72c..0fa2dfa 100644 --- a/include/polarssl/ecdh.h +++ b/include/polarssl/ecdh.h
@@ -44,6 +44,9 @@ ecp_point Qp; /*!< peer's public value */ mpi z; /*!< shared secret */ int point_format; /*!< format for point export */ + ecp_point Vi; /*!< blinding value (for later) */ + ecp_point Vf; /*!< un-blinding value (for later) */ + mpi _d; /*!< previous d */ } ecdh_context;