Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for initP521 (0.69 sec)

  1. src/crypto/elliptic/nistec.go

    			"13b5f0b8c00a60b1ce1d7e819d7a431d7c90ea0e5f"),
    	}
    }
    
    var p521 = &nistCurve[*nistec.P521Point]{
    	newPoint: nistec.NewP521Point,
    }
    
    func initP521() {
    	p521.params = &CurveParams{
    		Name:    "P-521",
    		BitSize: 521,
    		// FIPS 186-4, section D.1.2.5
    		P: bigFromDecimal("68647976601306097149819007990813932172694353001433" +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 21 16:19:34 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  2. src/crypto/elliptic/elliptic.go

    	if !curve.IsOnCurve(x, y) {
    		panic("crypto/elliptic: attempted operation on invalid point")
    	}
    }
    
    var initonce sync.Once
    
    func initAll() {
    	initP224()
    	initP256()
    	initP384()
    	initP521()
    }
    
    // P224 returns a [Curve] which implements NIST P-224 (FIPS 186-3, section D.2.2),
    // also known as secp224r1. The CurveParams.Name of this [Curve] is "P-224".
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 9K bytes
    - Viewed (0)
Back to top