Files
libopenssh/unittests/sshkey/common.h
Damien Miller d19d229054 flesh out sshkey tests substantially
use new fuzz framework to fuzz private and pubkey parsing

test loading of RSA1 keys
2012-03-04 21:19:23 +01:00

17 lines
331 B
C

/* $OpenBSD$ */
/*
* Helpers for key API tests
*
* Placed in the public domain
*/
/* Load a binary file into a buffer */
struct sshbuf *load_file(const char *name);
/* Load a text file into a buffer */
struct sshbuf *load_text_file(const char *name);
/* Load a bignum from a file */
BIGNUM *load_bignum(const char *name);