Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TestParameterGeneration (0.3 sec)

  1. src/crypto/dsa/dsa_test.go

    	}
    
    	testSignAndVerify(t, int(sizes), &priv)
    }
    
    func TestParameterGeneration(t *testing.T) {
    	if testing.Short() {
    		t.Skip("skipping parameter generation test in short mode")
    	}
    
    	testParameterGeneration(t, L1024N160, 1024, 160)
    	testParameterGeneration(t, L2048N224, 2048, 224)
    	testParameterGeneration(t, L2048N256, 2048, 256)
    	testParameterGeneration(t, L3072N256, 3072, 256)
    }
    
    func fromHex(s string) *big.Int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 15 21:04:43 UTC 2019
    - 4.7K bytes
    - Viewed (0)
Back to top