Mercurial > dropbear
comparison svr-authpubkey.c @ 1276:9169e4e7cbee
fix empty C prototypes
author | Francois Perrad <francois.perrad@gadz.org> |
---|---|
date | Fri, 01 Jan 2016 16:30:31 +0100 |
parents | aaf576b27a10 |
children | 750ec4ec4cbe 0d889b068123 |
comparison
equal
deleted
inserted
replaced
1275:d49bda490798 | 1276:9169e4e7cbee |
---|---|
70 #define MIN_AUTHKEYS_LINE 10 /* "ssh-rsa AB" - short but doesn't matter */ | 70 #define MIN_AUTHKEYS_LINE 10 /* "ssh-rsa AB" - short but doesn't matter */ |
71 #define MAX_AUTHKEYS_LINE 4200 /* max length of a line in authkeys */ | 71 #define MAX_AUTHKEYS_LINE 4200 /* max length of a line in authkeys */ |
72 | 72 |
73 static int checkpubkey(char* algo, unsigned int algolen, | 73 static int checkpubkey(char* algo, unsigned int algolen, |
74 unsigned char* keyblob, unsigned int keybloblen); | 74 unsigned char* keyblob, unsigned int keybloblen); |
75 static int checkpubkeyperms(); | 75 static int checkpubkeyperms(void); |
76 static void send_msg_userauth_pk_ok(char* algo, unsigned int algolen, | 76 static void send_msg_userauth_pk_ok(char* algo, unsigned int algolen, |
77 unsigned char* keyblob, unsigned int keybloblen); | 77 unsigned char* keyblob, unsigned int keybloblen); |
78 static int checkfileperm(char * filename); | 78 static int checkfileperm(char * filename); |
79 | 79 |
80 /* process a pubkey auth request, sending success or failure message as | 80 /* process a pubkey auth request, sending success or failure message as |