-
Notifications
You must be signed in to change notification settings - Fork 0
/
formats.ts
224 lines (215 loc) · 5.46 KB
/
formats.ts
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
import { Reader } from "./reader.ts";
/**
* Represents an SSH public key.
*/
export type Pubkey = {
pk_algo: "ssh-rsa";
e: Uint8Array;
n: Uint8Array;
toString(): string;
} | {
pk_algo: "ssh-ed25519";
key: Uint8Array;
toString(): string;
} | {
pk_algo:
| "ecdsa-sha2-nistp256"
| "ecdsa-sha2-nistp384"
| "ecdsa-sha2-nistp521";
curve: string;
point: Uint8Array;
toString(): string;
} | {
pk_algo: "sk-ecdsa-sha2-nistp256@openssh.com";
curve: string;
point: Uint8Array;
// typically "ssh:"
application: string;
toString(): string;
} | {
pk_algo: "sk-ssh-ed25519@openssh.com";
key: Uint8Array;
// typically "ssh:"
application: string;
toString(): string;
};
export function parsePubkey(
pk_algo: string,
publickey: Reader,
raw_publickey: ArrayBuffer,
): Pubkey {
let pubkey: Pubkey;
if (pk_algo === "ssh-rsa") {
pubkey = {
pk_algo,
e: new Uint8Array(publickey.readString().bytes()),
n: new Uint8Array(publickey.readString().bytes()),
toString() {
return `${pk_algo} ${base64Encode(new Uint8Array(raw_publickey))}`;
},
};
} else if (pk_algo === "ssh-ed25519") {
pubkey = {
pk_algo,
key: new Uint8Array(publickey.readString().bytes()),
toString() {
return `${pk_algo} ${base64Encode(new Uint8Array(raw_publickey))}`;
},
};
} else if (pk_algo === "sk-ssh-ed25519@openssh.com") {
const key = new Uint8Array(publickey.readString().bytes());
const application = publickey.readString().toString();
pubkey = {
pk_algo,
key,
application,
toString() {
return `${pk_algo} ${base64Encode(new Uint8Array(raw_publickey))}`;
},
};
} else if (
pk_algo === "ecdsa-sha2-nistp256" || pk_algo === "ecdsa-sha2-nistp384" ||
pk_algo === "ecdsa-sha2-nistp521"
) {
const curve = publickey.readString().toString();
const point = new Uint8Array(publickey.readString().bytes());
pubkey = {
pk_algo,
curve,
point,
toString() {
return `${pk_algo} ${base64Encode(new Uint8Array(raw_publickey))}`;
},
};
} else if (pk_algo === "sk-ecdsa-sha2-nistp256@openssh.com") {
const curve = publickey.readString().toString();
const point = new Uint8Array(publickey.readString().bytes());
const application = publickey.readString().toString();
pubkey = {
pk_algo,
curve,
point,
application,
toString() {
return `${pk_algo} ${base64Encode(new Uint8Array(raw_publickey))}`;
},
};
} else {
throw new Error(`Unsupported pk_algo: ${pk_algo}`);
}
return pubkey;
}
function base64Encode(bytes: Uint8Array) {
return btoa(String.fromCharCode.apply(null, bytes as unknown as number[]));
}
function base64UrlEncode(bytes: Uint8Array) {
return base64Encode(bytes)
.replace(
/\+/g,
"-",
)
.replace(/\//g, "_")
.replace(/=/g, "");
}
export function convertPublicKey(publickey: Pubkey): {
format: "jwk";
keyData: JsonWebKey;
} | { format: "raw"; keyData: ArrayBuffer } {
const pk_algo = publickey.pk_algo;
if (pk_algo === "ssh-rsa") {
return {
keyData: {
kty: "RSA",
e: base64UrlEncode(publickey.e),
n: base64UrlEncode(publickey.n),
},
format: "jwk",
};
} else if (
pk_algo === "ssh-ed25519" || pk_algo === "sk-ssh-ed25519@openssh.com"
) {
return {
keyData: publickey.key.buffer,
format: "raw",
};
} else if (
pk_algo === "ecdsa-sha2-nistp256" || pk_algo === "ecdsa-sha2-nistp384" ||
pk_algo === "ecdsa-sha2-nistp521" ||
pk_algo === "sk-ecdsa-sha2-nistp256@openssh.com"
) {
if (publickey.point[0] !== 0x04) {
throw new Error("Only uncompressed (0x04) format is supported");
}
const point = publickey.point.slice(1);
let crv;
if (
pk_algo === "ecdsa-sha2-nistp256" ||
pk_algo === "sk-ecdsa-sha2-nistp256@openssh.com"
) {
crv = "P-256";
} else if (pk_algo === "ecdsa-sha2-nistp384") {
crv = "P-384";
}
{
crv = "P-521";
}
return {
keyData: {
kty: "EC",
crv,
x: base64UrlEncode(point.slice(0, point.length / 2)),
y: base64UrlEncode(point.slice(point.length / 2)),
},
format: "jwk",
};
} else {
throw new Error(`Unsupported algo: ${pk_algo}`);
}
}
export function convertAlgorithm(sig_algo: string) {
if (sig_algo === "rsa-sha2-512") {
return {
name: "RSASSA-PKCS1-v1_5",
hash: { name: "SHA-512" },
};
} else if (
sig_algo === "ssh-ed25519" || sig_algo === "sk-ssh-ed25519@openssh.com"
) {
return {
name: "Ed25519",
hash: { name: "SHA-512" },
};
} else if (
sig_algo === "ecdsa-sha2-nistp256" ||
sig_algo === "sk-ecdsa-sha2-nistp256@openssh.com"
) {
return {
name: "ECDSA",
namedCurve: "P-256",
hash: { name: "SHA-256" },
};
} else if (sig_algo === "ecdsa-sha2-nistp384") {
return {
name: "ECDSA",
namedCurve: "P-384",
hash: { name: "SHA-384" },
};
} else if (sig_algo === "ecdsa-sha2-nistp521") {
return {
name: "ECDSA",
namedCurve: "P-521",
hash: { name: "SHA-512" },
};
} else {
throw new Error(`Unsupported algo: ${sig_algo}`);
}
}
export function convertHash(hashName: string): string {
if (hashName === "sha256") {
return "SHA-256";
} else if (hashName === "sha512") {
return "SHA-512";
} else {
throw new Error(`Unknown hash: ${hashName}`);
}
}