| 4052 | } |
| 4053 | |
| 4054 | static u8string GetPublicKeyPath(u8string_view playerName, u8string_view hash) |
| 4055 | { |
| 4056 | const auto filename = u8string(playerName) + u8"-" + u8string(hash) + u8".pubkey"; |
| 4057 | return Path::Combine(GetKeysDirectory(), filename); |
| 4058 | } |
| 4059 | |
| 4060 | u8string GetServerName() |
| 4061 | { |
no test coverage detected