1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
#include "ssh_pubkey_crypto.h"
#include <stdlib.h>
struct ssh_pubkey_t*
ssh_pubkey_new(enum pubkey_type t)
{
struct ssh_pubkey_t *k = (struct ssh_pubkey_t*)
malloc(sizeof(struct ssh_pubkey_t));
k->key_type = t;
switch (t) {
case SSH_RSA:
k->key.ssh_rsa = RSA_new();
}
return k;
}
void
ssh_pubkey_free(struct ssh_pubkey_t *k)
{
switch (k->key_type) {
case SSH_RSA:
RSA_free(k->key.ssh_rsa);
}
free(k);
}
static int
ssh_pubkey_encrypt_rsa(RSA *k, BIGNUM *out, BIGNUM *in)
{
size_t len, ilen, olen;
olen = RSA_size(k);
ilen = BN_num_bytes(in);
unsigned char outbuf[olen], inbuf[ilen];
BN_bn2bin(in, inbuf);
len = RSA_public_encrypt(ilen, inbuf, outbuf, k,
RSA_PKCS1_PADDING);
if (len <= 0) {
return -1;
}
BN_bin2bn(outbuf, len, out);
return 0;
}
int
ssh_pubkey_encrypt(struct ssh_pubkey_t *k, BIGNUM *out, BIGNUM *in)
{
switch (k->key_type) {
case SSH_RSA:
return ssh_pubkey_encrypt_rsa(k->key.ssh_rsa, out, in);
}
}
#ifndef HAVE_OPAQUE_STRUCTS
int
ssh_pubkey_setrsa(struct ssh_pubkey_t *k, BIGNUM *n, BIGNUM *e, BIGNUM *d)
{
RSA *r = k->key.ssh_rsa;
r->n = n;
r->e = e;
r->d = d;
return 0;
}
int
ssh_pubkey_getrsa(struct ssh_pubkey_t *k, const BIGNUM **n, const BIGNUM **e, const BIGNUM **d)
{
RSA *r = k->key.ssh_rsa;
*n = r->n;
*e = r->e;
*d = r->d;
return 0;
}
#endif
|