Nits for SIDH

Este commit está contenido en:
Henry Case 2019-04-09 17:09:34 +01:00
padre 08f7315b64
commit b184944242
Se han modificado 2 ficheros con 2 adiciones y 2 borrados

Ver fichero

@ -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

Ver fichero

@ -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) {