Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for FuzzFindRootCertFromCertificateChainBytes (0.42 sec)

  1. tests/fuzz/regression_test.go

    		{"FuzzUpdateVerifiedKeyCertBundleFromFile", FuzzUpdateVerifiedKeyCertBundleFromFile},
    		{"FuzzJwtUtil", FuzzJwtUtil},
    		{"FuzzFindRootCertFromCertificateChainBytes", FuzzFindRootCertFromCertificateChainBytes},
    		{"FuzzCRDRoundtrip", FuzzCRDRoundtrip},
    	}
    	for _, tt := range cases {
    		if testedFuzzers.InsertContains(tt.name) {
    			t.Fatalf("dupliate fuzzer test %v", tt.name)
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 10 16:43:09 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  2. tests/fuzz/pki_fuzzer.go

    	return 1
    }
    
    // FindRootCertFromCertificateChainBytesFuzz implements a fuzzer
    // that tests util.FindRootCertFromCertificateChainBytes
    func FuzzFindRootCertFromCertificateChainBytes(data []byte) int {
    	_, _ = util.FindRootCertFromCertificateChainBytes(data)
    	return 1
    }
    
    func FuzzExtractIDs(data []byte) int {
    	f := fuzz.NewConsumer(data)
    	noOfExts, err := f.GetInt()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 05 14:00:25 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  3. tests/fuzz/oss_fuzz_build.sh

    compile_go_fuzzer istio.io/istio/tests/fuzz FuzzJwtUtil fuzz_jwt_util
    compile_go_fuzzer istio.io/istio/tests/fuzz FuzzVerifyCertificate fuzz_verify_certificate
    compile_go_fuzzer istio.io/istio/tests/fuzz FuzzFindRootCertFromCertificateChainBytes fuzz_find_root_cert_from_certificate_chain_bytes
    compile_go_fuzzer istio.io/istio/tests/fuzz FuzzAggregateController fuzz_aggregate_controller
    compile_go_fuzzer istio.io/istio/tests/fuzz FuzzKubeCRD fuzz_kube_crd
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 15:50:05 UTC 2024
    - 6.5K bytes
    - Viewed (0)
Back to top