Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for GF (0.12 sec)

  1. src/testing/flag_test.go

    		t.Errorf("test.v flag (type %T) does not have IsBoolFlag method", f)
    	} else if !bf.IsBoolFlag() {
    		t.Error("test.v IsBoolFlag() returned false")
    	}
    
    	gf, ok := f.Value.(flag.Getter)
    	if !ok {
    		t.Fatalf("test.v flag (type %T) does not have Get method", f)
    	}
    	v := gf.Get()
    
    	var want any
    	switch *testFlagArg {
    	case "":
    		want = false
    	case "-test.v":
    		want = true
    	case "-test.v=test2json":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:29 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. src/crypto/dsa/dsa.go

    		if x.Sign() != 0 && x.Cmp(priv.Q) < 0 {
    			break
    		}
    	}
    
    	priv.X = x
    	priv.Y = new(big.Int)
    	priv.Y.Exp(priv.G, x, priv.P)
    	return nil
    }
    
    // fermatInverse calculates the inverse of k in GF(P) using Fermat's method.
    // This has better constant-time properties than Euclid's method (implemented
    // in math/big.Int.ModInverse) although math/big itself isn't strictly
    // constant-time so it's not perfect.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  3. src/crypto/tls/testdata/Client-TLSv13-ALPN

    00000010  b9 47 4b 47 49 af 52 88  3c 12 50 0d 65 46 f7 a1  |.GKGI.R.<.P.eF..|
    00000020  50 39 c5 39 22 b3 45 e6  d3 25 44 a6 bc 3d bc 69  |P9.9".E..%D..=.i|
    00000030  35 1d 61 cf a0 3c 53 77  94 67 66 ae 37 7f 3f 84  |5.a..<Sw.gf.7.?.|
    00000040  17 03 03 00 17 5e 1d af  5b 7c b6 2d 19 ea 18 e0  |.....^..[|.-....|
    00000050  55 47 43 e1 f2 0e 28 49  ae ef ba 86 17 03 03 00  |UGC...(I........|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 7K bytes
    - Viewed (0)
Back to top