-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
/
Copy pathOpenSSHKeyGen.cpp
146 lines (126 loc) · 5.09 KB
/
OpenSSHKeyGen.cpp
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
/*
* Copyright (C) 2021 KeePassXC Team <team@keepassxc.org>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 or (at your option)
* version 3 of the License.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "OpenSSHKeyGen.h"
#include "BinaryStream.h"
#include "OpenSSHKey.h"
#include "config-keepassx.h"
#include "crypto/Random.h"
#include <botan/ecdsa.h>
#include <botan/ed25519.h>
#include <botan/rsa.h>
namespace OpenSSHKeyGen
{
namespace
{
void bigIntToStream(const Botan::BigInt& i, BinaryStream& stream, int padding = 0)
{
QByteArray ba(i.bytes() + padding, 0);
i.binary_encode(reinterpret_cast<uint8_t*>(ba.data() + padding), ba.size() - padding);
stream.writeString(ba);
}
void vectorToStream(const std::vector<uint8_t>& v, BinaryStream& stream)
{
QByteArray ba(reinterpret_cast<const char*>(v.data()), v.size());
stream.writeString(ba);
}
void vectorToStream(const Botan::secure_vector<uint8_t>& v, BinaryStream& stream)
{
QByteArray ba(reinterpret_cast<const char*>(v.data()), v.size());
stream.writeString(ba);
}
} // namespace
bool generateRSA(OpenSSHKey& key, int bits)
{
auto rng = randomGen()->getRng();
try {
Botan::RSA_PrivateKey rsaKey(*rng, bits);
QByteArray publicData;
BinaryStream publicStream(&publicData);
// intentionally flipped n e -> e n
bigIntToStream(rsaKey.get_e(), publicStream);
bigIntToStream(rsaKey.get_n(), publicStream, 1);
QByteArray privateData;
BinaryStream privateStream(&privateData);
bigIntToStream(rsaKey.get_n(), privateStream, 1);
bigIntToStream(rsaKey.get_e(), privateStream);
bigIntToStream(rsaKey.get_d(), privateStream, 1);
bigIntToStream(rsaKey.get_c(), privateStream, 1);
bigIntToStream(rsaKey.get_p(), privateStream, 1);
bigIntToStream(rsaKey.get_q(), privateStream, 1);
key.setType("ssh-rsa");
key.setCheck(randomGen()->randomUInt(std::numeric_limits<quint32>::max() - 1) + 1);
key.setPublicData(publicData);
key.setPrivateData(privateData);
key.setComment("id_rsa");
return true;
} catch (std::exception& e) {
return false;
}
}
bool generateECDSA(OpenSSHKey& key, int bits)
{
auto rng = randomGen()->getRng();
QString group = QString("nistp%1").arg(bits);
try {
Botan::EC_Group domain(QString("secp%1r1").arg(bits).toStdString());
Botan::ECDSA_PrivateKey ecdsaKey(*rng, domain);
QByteArray publicData;
BinaryStream publicStream(&publicData);
publicStream.writeString(group);
vectorToStream(ecdsaKey.public_key_bits(), publicStream);
QByteArray privateData;
BinaryStream privateStream(&privateData);
privateStream.writeString(group);
vectorToStream(ecdsaKey.public_key_bits(), privateStream);
bigIntToStream(ecdsaKey.private_value(), privateStream, 1);
key.setType("ecdsa-sha2-" + group);
key.setCheck(randomGen()->randomUInt(std::numeric_limits<quint32>::max() - 1) + 1);
key.setPublicData(publicData);
key.setPrivateData(privateData);
key.setComment("id_ecdsa");
return true;
} catch (std::exception& e) {
return false;
}
}
bool generateEd25519(OpenSSHKey& key)
{
auto rng = randomGen()->getRng();
try {
Botan::Ed25519_PrivateKey ed25519Key(*rng);
QByteArray publicData;
BinaryStream publicStream(&publicData);
vectorToStream(ed25519Key.get_public_key(), publicStream);
QByteArray privateData;
BinaryStream privateStream(&privateData);
vectorToStream(ed25519Key.get_public_key(), privateStream);
#ifdef WITH_XC_BOTAN3
vectorToStream(ed25519Key.raw_private_key_bits(), privateStream);
#else
vectorToStream(ed25519Key.get_private_key(), privateStream);
#endif
key.setType("ssh-ed25519");
key.setCheck(randomGen()->randomUInt(std::numeric_limits<quint32>::max() - 1) + 1);
key.setPublicData(publicData);
key.setPrivateData(privateData);
key.setComment("id_ed25519");
return true;
} catch (std::exception& e) {
return false;
}
}
} // namespace OpenSSHKeyGen