1
0
Mirror von https://github.com/henrydcase/nobs.git synchronisiert 2024-11-22 15:18:57 +00:00
Dieser Commit ist enthalten in:
Henry Case 2019-04-09 17:09:34 +01:00
Ursprung 08f7315b64
Commit b184944242
2 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen

Datei anzeigen

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

Datei anzeigen

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