[openssl-commits] [openssl] OpenSSL_1_0_1-stable update

Matt Caswell matt at openssl.org
Tue Sep 1 22:58:22 UTC 2015


The branch OpenSSL_1_0_1-stable has been updated
       via  525e13612ee692e9d827c27b99c7e38583f887f3 (commit)
      from  5999b897ff6e64a79c97598569361ca15734e6e1 (commit)


- Log -----------------------------------------------------------------
commit 525e13612ee692e9d827c27b99c7e38583f887f3
Author: Tim Zhang <tim.zhang at irdeto.com>
Date:   Mon May 11 10:58:51 2015 +0100

    Fix the comment for POINT_CONVERSION_UNCOMPRESSED
    
    The |z| value should be 0x04 not 0x02
    
    RT#3838
    
    Signed-off-by: Matt Caswell <matt at openssl.org>
    
    Reviewed-by: Emilia Käsper <emilia at openssl.org>
    Reviewed-by: Matt Caswell <matt at openssl.org>
    (cherry picked from commit 91d2728b38b1df930f337e163816a0fc9580b6a6)

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

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

diff --git a/crypto/ec/ec.h b/crypto/ec/ec.h
index c4e7aea..2a935fd 100644
--- a/crypto/ec/ec.h
+++ b/crypto/ec/ec.h
@@ -106,7 +106,7 @@ typedef enum {
         /** the point is encoded as z||x, where the octet z specifies
          *  which solution of the quadratic equation y is  */
     POINT_CONVERSION_COMPRESSED = 2,
-        /** the point is encoded as z||x||y, where z is the octet 0x02  */
+        /** the point is encoded as z||x||y, where z is the octet 0x04  */
     POINT_CONVERSION_UNCOMPRESSED = 4,
         /** the point is encoded as z||x||y, where the octet z specifies
          *  which solution of the quadratic equation y is  */


More information about the openssl-commits mailing list