mirror of
https://github.com/ReneLergner/WPinternals.git
synced 2026-06-18 05:10:11 +10:00
Project Maintenance
This commit is contained in:
+2
-2
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user