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

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

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

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

#ifdef __cplusplus
}
#endif

#endif