Change comments.
authorBodo Möller <bodo@openssl.org>
Mon, 5 Mar 2001 21:59:03 +0000 (21:59 +0000)
committerBodo Möller <bodo@openssl.org>
Mon, 5 Mar 2001 21:59:03 +0000 (21:59 +0000)
crypto/ec/ec_lcl.h

index c25a2924ba8773f4fa6f44521ace2975615c69ec..a205ab09285bef3b578d92a5332fa172d5bf07eb 100644 (file)
@@ -78,7 +78,7 @@ struct ec_method_st {
        int (*add)(const EC_GROUP *, EC_POINT *r, EC_POINT *a, EC_POINT *b);
        int (*dbl)(const EC_GROUP *, EC_POINT *r, EC_POINT *a);
 
-       /* used by EC_POINT_add, EC_POINT_dbl: */
+       /* used by EC_POINT_point2oct, EC_POINT_oct2point: */
        size_t (*point2oct)(const EC_GROUP *, EC_POINT *, unsigned char *buf,
                size_t len, point_conversion_form_t form);
        int (*oct2point)(const EC_GROUP *, EC_POINT *, unsigned char *buf, size_t len);
@@ -88,7 +88,7 @@ struct ec_method_st {
 
        /* 'field_mult' and 'field_sqr' can be used by 'add' and 'dbl' so that
         * the same implementations of point operations can be used with different
-        * implementations of field operations: */
+        * optimized implementations of expensive field operations: */
        int (*field_mult)(const EC_GROUP *, BIGNUM *r, BIGNUM *a, BIGNUM *b);
        int (*field_sqr)(const EC_GROUP *, BIGNUM *r, BIGNUM *a);
 } /* EC_METHOD */;