fabric-amcl GitHub

PR #22 Correct build tags
The previous patch used ``` //go:build amd64 || arm64 ``` as build tag for 64-bit architectures. However this was unvoluntarily discarding other 64-bit platforms (such as `wasm`) that were previously supported. The issue has been fixed by replacing the tag with ``` //go:build !386 && !arm ```
Created At 2023-06-02 17:36:09 +0000 UTC
PR #21 32bit
This PR adds support for 32-bit platforms (and also pulls the latest sources from miracl/core)
Created At 2023-06-02 14:49:03 +0000 UTC