This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Fuzz test for Jsonic | |
// $ afl-gcc -m32 -fsanitize=address,undefined fuzz.c jsonic.c | |
// $ afl-fuzz -m800 -iexamples/heroes -oout ./a.out | |
// https://github.com/rohanrhu/jsonic | |
// This is free and unencumbered software released into the public domain. | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include "jsonic.h" | |
static int explore(jsonic_node_t *root, char *buf) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <boost/json.hpp> | |
#include <QDebug> | |
#include <QElapsedTimer> | |
#include <QFile> | |
#include "jsonic.c" | |
#include "jsonic.h" | |
#include "fmt/format.h" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package de.martinfunk; | |
import java.io.IOException; | |
import java.io.InputStream; | |
import java.net.Authenticator; | |
import java.net.PasswordAuthentication; | |
import java.net.URISyntaxException; | |
import java.net.URL; | |
import java.net.URLConnection; | |
import java.security.KeyManagementException; |