Fix formatting of fuzzers
authorKurt Roeckx <kurt@roeckx.be>
Sat, 19 Nov 2016 16:10:35 +0000 (17:10 +0100)
committerKurt Roeckx <kurt@roeckx.be>
Fri, 2 Dec 2016 23:14:14 +0000 (00:14 +0100)
Reviewed-by: Rich Salz <rsalz@openssl.org>
GH: #2023

fuzz/asn1.c
fuzz/asn1parse.c
fuzz/bignum.c
fuzz/bndiv.c
fuzz/cms.c
fuzz/conf.c
fuzz/crl.c
fuzz/ct.c
fuzz/driver.c
fuzz/server.c
fuzz/x509.c

index 5125f363ffc0172810c7c50348c5cd3b0bf1fe7f..0644ed79e1328dc0ba20ed68fa84c721c5961844 100644 (file)
@@ -183,11 +183,13 @@ static ASN1_ITEM_EXP *item_type[] = {
     NULL
 };
 
-int FuzzerInitialize(int *argc, char ***argv) {
+int FuzzerInitialize(int *argc, char ***argv)
+{
     return 1;
 }
 
-int FuzzerTestOneInput(const uint8_t *buf, size_t len) {
+int FuzzerTestOneInput(const uint8_t *buf, size_t len)
+{
     int n;
 
     ASN1_PCTX *pctx = ASN1_PCTX_new();
index b3a6dab0ea4e3afd20ca96586834edf71a3b306b..2fba1c44b6a4ccb6a0d8eb8a5a7935210aa2739e 100644 (file)
 #include <openssl/x509v3.h>
 #include "fuzzer.h"
 
-int FuzzerInitialize(int *argc, char ***argv) {
+int FuzzerInitialize(int *argc, char ***argv)
+{
     return 1;
 }
 
-int FuzzerTestOneInput(const uint8_t *buf, size_t len) {
+int FuzzerTestOneInput(const uint8_t *buf, size_t len)
+{
     static BIO *bio_out;
 
     if (bio_out == NULL)
index 43e134bc141081db6fc0d7848fa828ada33a7263..9e110f65ef4d98265cb736037cd0fe1b6d6795bb 100644 (file)
 #include <openssl/bn.h>
 #include "fuzzer.h"
 
-int FuzzerInitialize(int *argc, char ***argv) {
+int FuzzerInitialize(int *argc, char ***argv)
+{
     return 1;
 }
 
-int FuzzerTestOneInput(const uint8_t *buf, size_t len) {
+int FuzzerTestOneInput(const uint8_t *buf, size_t len)
+{
     static BN_CTX *ctx;
     static BIGNUM *b1;
     static BIGNUM *b2;
index 45a3937992d23bf0ab4eddd132d278c2e9acb403..931987860797091079ca678fd7dd712d6051b234 100644 (file)
 #include <openssl/bn.h>
 #include "fuzzer.h"
 
-int FuzzerInitialize(int *argc, char ***argv) {
+int FuzzerInitialize(int *argc, char ***argv)
+{
     return 1;
 }
 
-int FuzzerTestOneInput(const uint8_t *buf, size_t len) {
+int FuzzerTestOneInput(const uint8_t *buf, size_t len)
+{
     static BN_CTX *ctx;
     static BIGNUM *b1;
     static BIGNUM *b2;
index 94390e7c91c5d4f936d223044c27f2458a120d2e..71d8b6953c998c6d339b8d46c0ee5ecf3db13a91 100644 (file)
 #include <openssl/cms.h>
 #include "fuzzer.h"
 
-int FuzzerInitialize(int *argc, char ***argv) {
+int FuzzerInitialize(int *argc, char ***argv)
+{
     return 1;
 }
 
-int FuzzerTestOneInput(const uint8_t *buf, size_t len) {
+int FuzzerTestOneInput(const uint8_t *buf, size_t len)
+{
     CMS_ContentInfo *i;
     BIO *in;
     if (!len) {
index 30b13c84f9f21e9e749c0290d88287f6bc0e4571..49edb3eaa6937347ca99e70bb134aeaca7cc3763 100644 (file)
 #include <openssl/conf.h>
 #include "fuzzer.h"
 
-int FuzzerInitialize(int *argc, char ***argv) {
+int FuzzerInitialize(int *argc, char ***argv)
+{
     return 1;
 }
 
-int FuzzerTestOneInput(const uint8_t *buf, size_t len) {
+int FuzzerTestOneInput(const uint8_t *buf, size_t len)
+{
     CONF *conf;
     BIO *in;
     long eline;
index 728943f551e68cfe39c0b6d9fd5c93bf975f5887..51d184363ad2ecf1a22eda16ff56f20ea4fec2db 100644 (file)
 #include <openssl/bio.h>
 #include "fuzzer.h"
 
-int FuzzerInitialize(int *argc, char ***argv) {
+int FuzzerInitialize(int *argc, char ***argv)
+{
     return 1;
 }
 
-int FuzzerTestOneInput(const uint8_t *buf, size_t len) {
+int FuzzerTestOneInput(const uint8_t *buf, size_t len)
+{
     const unsigned char *p = buf;
     unsigned char *der = NULL;
 
index 411ccef4a06e54cc53c8f7a2103d33ba9ed55519..636b19510996ff53dba115a15eeb10e9797a1917 100644 (file)
--- a/fuzz/ct.c
+++ b/fuzz/ct.c
 #include <openssl/ct.h>
 #include "fuzzer.h"
 
-int FuzzerInitialize(int *argc, char ***argv) {
+int FuzzerInitialize(int *argc, char ***argv)
+{
     return 1;
 }
 
-int FuzzerTestOneInput(const uint8_t *buf, size_t len) {
+int FuzzerTestOneInput(const uint8_t *buf, size_t len)
+{
     const uint8_t **pp = &buf;
     unsigned char *der = NULL;
     STACK_OF(SCT) *scts = d2i_SCT_LIST(NULL, pp, len);
index c530fedc844f1ec96823bd44018b13bae6211eb1..2c16a5e2e651a90ba0ac1dc849e81a31a0485222 100644 (file)
@@ -22,7 +22,8 @@ int LLVMFuzzerInitialize(int *argc, char ***argv)
     return 0;
 }
 
-int LLVMFuzzerTestOneInput(const uint8_t *buf, size_t len) {
+int LLVMFuzzerTestOneInput(const uint8_t *buf, size_t len)
+{
     return FuzzerTestOneInput(buf, len);
 }
 
index 35449d8caa8a769b68e10dfb52dee46ed0670499..26ef4da1e64e4609708b4852d4915f12d10289f4 100644 (file)
@@ -191,7 +191,8 @@ static const uint8_t kRSAPrivateKeyDER[] = {
 
 static SSL_CTX *ctx;
 
-int FuzzerInitialize(int *argc, char ***argv) {
+int FuzzerInitialize(int *argc, char ***argv)
+{
     const uint8_t *bufp = kRSAPrivateKeyDER;
     RSA *privkey;
     EVP_PKEY *pkey;
@@ -216,7 +217,8 @@ int FuzzerInitialize(int *argc, char ***argv) {
     return 1;
 }
 
-int FuzzerTestOneInput(const uint8_t *buf, size_t len) {
+int FuzzerTestOneInput(const uint8_t *buf, size_t len)
+{
     SSL *server;
     BIO *in;
     BIO *out;
index b2851f1e11480743fb530d7f9ab67e2b822165b7..4c5b73258d53f604ea817c3d930e6f676636ad1f 100644 (file)
 #include <openssl/bio.h>
 #include "fuzzer.h"
 
-int FuzzerInitialize(int *argc, char ***argv) {
+int FuzzerInitialize(int *argc, char ***argv)
+{
     return 1;
 }
 
-int FuzzerTestOneInput(const uint8_t *buf, size_t len) {
+int FuzzerTestOneInput(const uint8_t *buf, size_t len)
+{
     const unsigned char *p = buf;
     unsigned char *der = NULL;