diff --git a/ch03.asciidoc b/ch03.asciidoc index fec7ba25..8385adab 100644 --- a/ch03.asciidoc +++ b/ch03.asciidoc @@ -82,7 +82,7 @@ When initializing `Point`, we will run through this part of the code: include::code-ch03/ecc.py[tag=source1] ---- -The addition (`+`), multiplication (`*`), exponentiation (`**`), and not equals (`!=`) operators here use the `__add__`, `__mul__`, `__pow__`, and `__ne__` methods from `FiniteField`, respectively, and _not_ the integer equivalents. +The addition (`+`), multiplication (`*`), exponentiation (`**`), and not equals (`!=`) operators here use the `__add__`, `__mul__`, `__pow__`, and `__ne__` methods from `FieldElement`, respectively, and _not_ the integer equivalents. Being able to do the same equation but with different definitions for the basic arithmetic operators is how we construct an elliptic curve cryptography library. We've already coded the two classes that we need to implement elliptic curve points over a finite field. diff --git a/images/prbc_0816.png b/images/prbc_0816.png index 44460b46..f6dedae5 100755 Binary files a/images/prbc_0816.png and b/images/prbc_0816.png differ