github.com/cloudflare/circl@v1.5.0/ecc/p384/doc.go (about) 1 // Package p384 provides optimized elliptic curve operations on the P-384 curve. 2 // 3 // These are some improvements over crypto/elliptic package: 4 // - Around 10x faster in amd64 architecture. 5 // - Reduced number of memory allocations. 6 // - Native support for arm64 architecture. 7 // - ScalarMult is performed using a constant-time algorithm. 8 // - ScalarBaseMult fallbacks into ScalarMult. 9 // - A new method included for double-point multiplication. 10 package p384