comparison svr-authpubkey.c @ 1563:1cbb7b3d6703

Merge fuzzing branch
author Matt Johnston <matt@ucc.asn.au>
date Wed, 28 Feb 2018 22:12:05 +0800
parents 2f64cb3d3007
children 252b406d0e9a
comparison
equal deleted inserted replaced
1560:f5026f7486de 1563:1cbb7b3d6703
471 471
472 TRACE(("leave checkfileperm: success")) 472 TRACE(("leave checkfileperm: success"))
473 return DROPBEAR_SUCCESS; 473 return DROPBEAR_SUCCESS;
474 } 474 }
475 475
476 #if DROPBEAR_FUZZ
477 int fuzz_checkpubkey_line(buffer* line, int line_num, char* filename,
478 const char* algo, unsigned int algolen,
479 const unsigned char* keyblob, unsigned int keybloblen) {
480 return checkpubkey_line(line, line_num, filename, algo, algolen, keyblob, keybloblen);
481 }
476 #endif 482 #endif
483
484 #endif