bd6879ac51
* core/vm, crypto/bn256: switch over to cloudflare library * crypto/bn256: unmarshal constraint + start pure go impl * crypto/bn256: combo cloudflare and google lib * travis: drop 386 test job
20 lines
310 B
Go
20 lines
310 B
Go
// +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")
|
|
}
|