mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-17 22:11:48 +08:00
12 lines
420 B
C#
12 lines
420 B
C#
namespace mRemoteNG.Specs.Utilities
|
|
{
|
|
public class CredRepoXmlFileBuilder
|
|
{
|
|
public string Build(string authHeader)
|
|
{
|
|
return "<?xml version=\"1.0\" encoding=\"utf-8\"?>" +
|
|
$"<Credentials EncryptionEngine=\"AES\" BlockCipherMode=\"GCM\" KdfIterations=\"1000\" Auth=\"{authHeader}\" SchemaVersion=\"1.0\">" +
|
|
"</Credentials>";
|
|
}
|
|
}
|
|
} |