//go:build !wasm //:build !wasm package poly1305 // Poly1305 MAC via JS BigInt (uint64 broken in moxiejs). // MAC computes the Poly1305 MAC of data using a 32-byte one-time key. // Returns a 16-byte tag. func MAC(key, data []byte) (buf []byte) { panic("jsbridge") } // Verify checks a Poly1305 tag in constant time. func Verify(key, data, tag []byte) (ok bool) { panic("jsbridge") }