blob: 1cba8d34db3ca2455953971535b6a4203b91cfed (
plain)
1
2
3
4
5
6
7
8
|
#ifndef DROPBEAR_GENSIGNKEY_H
#define DROPBEAR_GENSIGNKEY_H
#include "signkey.h"
int signkey_generate(enum signkey_type type, int bits, const char* filename, int skip_exist);
#endif
|