github.com/smalaichami/go-bowhead@v0.0.0-20180311002552-16302db95eaa/crypto/bn256/cloudflare/gfp_pure.go (about)

     1  //  +build !amd64 appengine gccgo
     2  
     3  package bn256
     4  
     5  func gfpNeg(c, a *gfP) {
     6  	panic("unsupported architecture")
     7  }
     8  
     9  func gfpAdd(c, a, b *gfP) {
    10  	panic("unsupported architecture")
    11  }
    12  
    13  func gfpSub(c, a, b *gfP) {
    14  	panic("unsupported architecture")
    15  }
    16  
    17  func gfpMul(c, a, b *gfP) {
    18  	panic("unsupported architecture")
    19  }