mirror of https://github.com/ntop/n2n.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
450 B
25 lines
450 B
8 years ago
|
#include "n2n.h"
|
||
|
#include "n2n_keyfile.h"
|
||
|
#include <assert.h>
|
||
|
#include <stdio.h>
|
||
|
#include <sys/stat.h>
|
||
|
|
||
|
int main(int arc, const char * argv[] )
|
||
|
{
|
||
|
int e;
|
||
|
n2n_cipherspec_t specs[N2N_MAX_NUM_CIPHERSPECS];
|
||
|
|
||
|
e = n2n_read_keyfile( specs, N2N_MAX_NUM_CIPHERSPECS, "keyctrl.conf" );
|
||
|
|
||
|
if ( e < 0 )
|
||
|
{
|
||
|
perror( "Failed to read keyfile" );
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
fprintf( stderr, "Stored %d keys.\n", e );
|
||
|
}
|
||
|
|
||
|
return 0;
|
||
|
}
|