Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Python (0.41 sec)

  1. src/crypto/internal/boring/Dockerfile

    # This corresponds to boringssl.googlesource.com/boringssl tag fips-20210429.
    ENV ClangV=12
    RUN apt-get update && \
            apt-get install --no-install-recommends -y cmake xz-utils wget unzip ca-certificates clang-$ClangV python
    
    # Download, validate, unpack, build, and install Ninja.
    ENV NinjaV=1.10.2
    ENV NinjaH=ce35865411f0490368a8fc383f29071de6690cbadc27704734978221f25e2bed
    RUN \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. src/crypto/ed25519/ed25519_test.go

    	}
    	if private.Equal(otherPriv) {
    		t.Errorf("different private keys are Equal")
    	}
    }
    
    func TestGolden(t *testing.T) {
    	// sign.input.gz is a selection of test cases from
    	// https://ed25519.cr.yp.to/python/sign.input
    	testDataZ, err := os.Open("testdata/sign.input.gz")
    	if err != nil {
    		t.Fatal(err)
    	}
    	defer testDataZ.Close()
    	testData, err := gzip.NewReader(testDataZ)
    	if err != nil {
    		t.Fatal(err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 10.9K bytes
    - Viewed (0)
Back to top