summaryrefslogtreecommitdiff
path: root/src/protocol/internal/ssh_rsa.h
blob: bccce00511cd31292b0bac0a880f51f143389298 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef SSH_RSA
#define SSH_RSA

#include "ssh_session.h"
#include <stdlib.h>
#include <stdint.h>

#ifdef __cplusplus
extern "C" {
#endif /* } */

enum { ESECRET = 1, ERSA };

int verifyRSAKey(ssh_session *ss, const uint8_t *data, size_t len);

#ifdef __cplusplus
}
#endif

#endif