We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b70cdb commit 27f2068Copy full SHA for 27f2068
README.md
@@ -25,7 +25,7 @@ For ease of following, here are the main methods in ref10 and their equivalents
25
| EdDSA point arithmetic | ref10 function | Java function |
26
| ---------------------- | -------------- | ------------- |
27
| `R = b * B` | `ge_scalarmult_base` | `GroupElement.scalarMultiply` |
28
-| `R = a * A + b * B` | `ge_double_scalarmult_vartime` | `GroupElement.doubleScalarMultiplyVariableTime` |
+| `R = a*A + b*B` | `ge_double_scalarmult_vartime` | `GroupElement.doubleScalarMultiplyVariableTime` |
29
| `R = 2 * P` | `ge_p2_dbl` | `GroupElement.dbl` |
30
| `R = P + Q` | `ge_madd`, `ge_add` | `GroupElement.madd`, `GroupElement.add` |
31
| `R = P - Q` | `ge_msub`, `ge_sub` | `GroupElement.msub`, `GroupElement.sub` |
0 commit comments