[openssl-commits] [openssl] master update

Kurt Roeckx kurt at openssl.org
Wed Mar 2 12:40:12 UTC 2016


The branch master has been updated
       via  dc22d6b37e8058a4334e6f98932c2623cd3d8d0d (commit)
      from  1ea8ae5090f557fea2e5b4d5758b10566825d74b (commit)


- Log -----------------------------------------------------------------
commit dc22d6b37e8058a4334e6f98932c2623cd3d8d0d
Author: Kurt Roeckx <kurt at roeckx.be>
Date:   Wed Mar 2 13:29:49 2016 +0100

    Make k25519Precomp const
    
    Reviewed-by: Dr. Stephen Henson <steve at openssl.org>
    
    MR: #2184

-----------------------------------------------------------------------

Summary of changes:
 crypto/ec/curve25519.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/crypto/ec/curve25519.c b/crypto/ec/curve25519.c
index 7bd953c..d51632c 100644
--- a/crypto/ec/curve25519.c
+++ b/crypto/ec/curve25519.c
@@ -1193,7 +1193,7 @@ static void ge_scalarmult_base(ge_p3 *h, const uint8_t a[32]) {
 #else
 
 /* k25519Precomp[i][j] = (j+1)*256^i*B */
-static ge_precomp k25519Precomp[32][8] = {
+static const ge_precomp k25519Precomp[32][8] = {
     {
         {
             {25967493, -14356035, 29566456, 3660896, -12694345, 4014787,


More information about the openssl-commits mailing list