aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/bn256/cloudflare/gfp_pure.go
blob: 8fa5d305348277ce68f4d40f3805ee0ffb9ec814 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//  +build !amd64 appengine gccgo

package bn256

func gfpNeg(c, a *gfP) {
    panic("unsupported architecture")
}

func gfpAdd(c, a, b *gfP) {
    panic("unsupported architecture")
}

func gfpSub(c, a, b *gfP) {
    panic("unsupported architecture")
}

func gfpMul(c, a, b *gfP) {
    panic("unsupported architecture")
}