comparison Makefile.in @ 1347:b28624698130 fuzz

copy over some fuzzing code from AFL branch
author Matt Johnston <matt@ucc.asn.au>
date Fri, 12 May 2017 23:14:54 +0800
parents 3017bc7d6238
children 5c2899e35b63
comparison
equal deleted inserted replaced
1346:78b7e0634117 1347:b28624698130
221 -rm -f config.h 221 -rm -f config.h
222 -rm -f Makefile 222 -rm -f Makefile
223 223
224 tidy: 224 tidy:
225 -rm -f *~ *.gcov */*~ 225 -rm -f *~ *.gcov */*~
226
227 # run this manually for fuzzing. hostkeys.c is checked in.
228 hostkeys:
229 dropbearkey -t rsa -f keyr
230 dropbearkey -t dss -f keyd
231 dropbearkey -t ecdsa -size 256 -f keye
232 echo > hostkeys.c
233 /usr/bin/xxd -i -a keyr >> hostkeys.c
234 /usr/bin/xxd -i -a keye >> hostkeys.c
235 /usr/bin/xxd -i -a keyd >> hostkeys.c
236