Browse Source

Nits for SIDH

drbg_asm
Kris Kwiatkowski 5 years ago
parent
commit
b184944242
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      dh/sidh/internal/isogeny/curve_ops.go
  2. +1
    -1
      dh/sidh/p751/field_ops.go

+ 1
- 1
dh/sidh/internal/isogeny/curve_ops.go View File

@@ -81,7 +81,7 @@ func (c *CurveOperations) CalcCurveParamsEquiv4(cparams *ProjectiveCurveParamete
return coefEq
}

// Helper function for RightToLeftLadder(). Returns A+2C / 4.
// Helper function for ScalarMul3Pt(). Returns A+2C / 4.
func (c *CurveOperations) CalcAplus2Over4(cparams *ProjectiveCurveParameters) (ret Fp2Element) {
var tmp Fp2Element
var op = c.Params.Op


+ 1
- 1
dh/sidh/p751/field_ops.go View File

@@ -12,7 +12,7 @@ import . "github.com/henrydcase/nobs/dh/sidh/internal/isogeny"
type fp751Ops struct{}

func FieldOperations() FieldOps {
return &fp751Ops{}
return fp751Ops{}
}

func (fp751Ops) Add(dest, lhs, rhs *Fp2Element) {


Loading…
Cancel
Save