blob: b892dbb9cff0d28bc9a0060fdd6b4c1a60fc4068 (
plain) (
blame)
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
|
using System.Text.Json;
using ArcaneLibs.Extensions;
using LibMatrix.Abstractions;
using LibMatrix.Federation.Extensions;
using LibMatrix.FederationTest.Utilities;
using Org.BouncyCastle.Crypto.Parameters;
namespace LibMatrix.FederationTest.Services;
public class FederationKeyStore(FederationTestConfiguration config) {
static FederationKeyStore() {
Console.WriteLine("INFO | FederationKeyStore initialized.");
}
private static (Ed25519PrivateKeyParameters privateKey, Ed25519PublicKeyParameters publicKey) currentKeyPair = default;
public class PrivateKeyCollection {
public required VersionedHomeserverPrivateKey CurrentSigningKey { get; set; }
}
public PrivateKeyCollection GetCurrentSigningKey() {
if (!Directory.Exists(config.KeyStorePath)) Directory.CreateDirectory(config.KeyStorePath);
var privateKeyPath = Path.Combine(config.KeyStorePath, "private-keys.json");
if (!File.Exists(privateKeyPath)) {
var keyPair = InternalGetSigningKey();
var privateKey = new PrivateKeyCollection() {
CurrentSigningKey = new VersionedHomeserverPrivateKey {
ServerName = config.ServerName,
KeyId = new() {
Algorithm = "ed25519",
KeyId = "0"
},
PrivateKey = keyPair.privateKey.ToUnpaddedBase64(),
PublicKey = keyPair.publicKey.ToUnpaddedBase64(),
}
};
File.WriteAllText(privateKeyPath, privateKey.ToJson());
}
return JsonSerializer.Deserialize<PrivateKeyCollection>(File.ReadAllText(privateKeyPath))!;
}
private (Ed25519PrivateKeyParameters privateKey, Ed25519PublicKeyParameters publicKey) InternalGetSigningKey() {
if (currentKeyPair != default) {
return currentKeyPair;
}
if (!Directory.Exists(config.KeyStorePath)) Directory.CreateDirectory(config.KeyStorePath);
var privateKeyPath = Path.Combine(config.KeyStorePath, "signing.key");
if (!File.Exists(privateKeyPath)) {
var keyPair = Ed25519Utils.GenerateKeyPair();
File.WriteAllBytes(privateKeyPath, keyPair.privateKey.GetEncoded());
return keyPair;
}
var privateKeyBytes = File.ReadAllBytes(privateKeyPath);
var privateKey = Ed25519Utils.LoadPrivateKeyFromEncoded(privateKeyBytes);
var publicKey = privateKey.GeneratePublicKey();
return currentKeyPair = (privateKey, publicKey);
}
}
|