diff --git a/.github/workflows/build_v7.yml b/.github/workflows/build_v7.yml index 97cbe06..72e77ab 100644 --- a/.github/workflows/build_v7.yml +++ b/.github/workflows/build_v7.yml @@ -361,7 +361,7 @@ jobs: - name: Get refind if: matrix.arch == 'x86' && steps.cache-refind.outputs.cache-hit != 'true' - run: sudo wget -O $BUILD_DIR/refind-bin-0.14.2.zip https://downloads.sourceforge.net/project/refind/0.14.2/refind-bin-0.14.2.zip + run: sudo wget -nv -O $BUILD_DIR/refind-bin-0.14.2.zip https://downloads.sourceforge.net/project/refind/0.14.2/refind-bin-0.14.2.zip - name: Create ISO & INSTALL image files run: | diff --git a/toyecc/ShortWeierstrassCurve.py b/toyecc/ShortWeierstrassCurve.py index d84483c..ecd1a73 100644 --- a/toyecc/ShortWeierstrassCurve.py +++ b/toyecc/ShortWeierstrassCurve.py @@ -87,7 +87,7 @@ class ShortWeierstrassCurve(EllipticCurve, CurveOpIsomorphism, CurveOpExportSage @property def is_koblitz(self): """Returns whether the curve allows for efficient computation of a map - \phi in the field (i.e. that the curve is commonly known as a 'Koblitz + phi in the field (i.e. that the curve is commonly known as a 'Koblitz Curve'). This corresponds to examples 3 and 4 of the paper "Faster Point Multiplication on Elliptic Curves with Efficient Endomorphisms" by Gallant, Lambert and Vanstone."""