1
0
miroir de https://github.com/henrydcase/nobs.git synchronisé 2024-11-22 15:18:57 +00:00

Nits for SIDH

Cette révision appartient à :
Henry Case 2019-04-09 17:09:34 +01:00
Parent 08f7315b64
révision b184944242
2 fichiers modifiés avec 2 ajouts et 2 suppressions

Voir le fichier

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

Voir le fichier

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