MCPcopy Create free account
hub / github.com/DOSNetwork/core / feAdd

Function feAdd

group/edwards25519/fe.go:31–35  ·  view source on GitHub ↗
(dst, a, b *fieldElement)

Source from the content-addressed store, hash-verified

29}
30
31func feAdd(dst, a, b *fieldElement) {
32 for i := range dst {
33 dst[i] = a[i] + b[i]
34 }
35}
36
37func feSub(dst, a, b *fieldElement) {
38 for i := range dst {

Callers 10

DoubleMethod · 0.85
ToCachedMethod · 0.85
FromBytesMethod · 0.85
AddMethod · 0.85
SubMethod · 0.85
MixedAddMethod · 0.85
MixedSubMethod · 0.85
edwardsToMontgomeryXFunction · 0.85
pointToRepFunction · 0.85
repToCurve25519Function · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected