Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for precomputeParams (0.4 sec)

  1. src/crypto/ecdsa/ecdsa.go

    		}
    		precomputeParams(_p224, elliptic.P224())
    	})
    	return _p224
    }
    
    var p256Once sync.Once
    var _p256 *nistCurve[*nistec.P256Point]
    
    func p256() *nistCurve[*nistec.P256Point] {
    	p256Once.Do(func() {
    		_p256 = &nistCurve[*nistec.P256Point]{
    			newPoint: func() *nistec.P256Point { return nistec.NewP256Point() },
    		}
    		precomputeParams(_p256, elliptic.P256())
    	})
    	return _p256
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 20.4K bytes
    - Viewed (0)
Back to top