Project Maintenance

This commit is contained in:
Gustave Monce
2021-08-09 20:21:09 +02:00
parent 9865ef7f79
commit 847ce0506d
411 changed files with 5922 additions and 54941 deletions
+2 -2
View File
@@ -27,7 +27,7 @@ namespace WPinternals
{
public static TerminalResponse Parse(byte[] Buffer, int Offset)
{
TerminalResponse Response = new TerminalResponse();
TerminalResponse Response = new();
// Get root node
if (Buffer.Length >= (Offset + 8))
@@ -61,7 +61,7 @@ namespace WPinternals
internal class TerminalResponse
{
public Dictionary<int, byte[]> RawEntries = new Dictionary<int, byte[]>();
public Dictionary<int, byte[]> RawEntries = new();
public byte[] PublicId = null;
public byte[] RootKeyHash = null;
}