mirror of
https://github.com/openssh/libopenssh
synced 2026-04-17 02:06:45 +00:00
17 lines
331 B
C
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);
|
|
|