File: doc.go

package info (click to toggle)
golang-github-cloudflare-circl 1.6.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 18,064 kB
  • sloc: asm: 20,492; ansic: 1,292; makefile: 68
file content (10 lines) | stat: -rw-r--r-- 472 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
// Package p384 provides optimized elliptic curve operations on the P-384 curve.
//
// These are some improvements over crypto/elliptic package:
//   - Around 10x faster in amd64 architecture.
//   - Reduced number of memory allocations.
//   - Native support for arm64 architecture.
//   - ScalarMult is performed using a constant-time algorithm.
//   - ScalarBaseMult fallbacks into ScalarMult.
//   - A new method included for double-point multiplication.
package p384