Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for FuzzReadCACert (0.17 sec)

  1. security/pkg/k8s/chiron/fuzz_test.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package chiron
    
    import (
    	"os"
    	"testing"
    )
    
    func FuzzReadCACert(f *testing.F) {
    	f.Fuzz(func(t *testing.T, caCert []byte) {
    		// create ca file
    		caFile, err := os.Create("caFile")
    		if err != nil {
    			return
    		}
    		defer func() {
    			caFile.Close()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 12 14:51:41 UTC 2022
    - 988 bytes
    - Viewed (0)
Back to top