Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for testUnmarshalToLargeCoordinates (0.37 sec)

  1. src/crypto/elliptic/elliptic_test.go

    		if xx.Cmp(x) != 0 || yy.Cmp(y) != 0 {
    			t.Fatal("unmarshal returned different values")
    		}
    	})
    }
    
    func TestUnmarshalToLargeCoordinates(t *testing.T) {
    	t.Parallel()
    	// See https://golang.org/issues/20482.
    	testAllCurves(t, testUnmarshalToLargeCoordinates)
    }
    
    func testUnmarshalToLargeCoordinates(t *testing.T, curve Curve) {
    	p := curve.Params().P
    	byteLen := (p.BitLen() + 7) / 8
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 27 02:00:03 UTC 2023
    - 11.6K bytes
    - Viewed (0)
Back to top