Exemplo n.º 1
0
 public SetupResponse(byte[] bytes)
 {
     SeedTyped = bytes[0] == 1;
     if (bytes.Length == 33)
     {
         TrustedInputKey = new Ledger3DESKey(bytes.Skip(1).Take(16).ToArray());
         WrappingKey     = new Ledger3DESKey(bytes.Skip(1 + 16).Take(16).ToArray());
     }
 }
Exemplo n.º 2
0
 public SetupResponse(byte[] bytes)
 {
     SeedTyped = bytes[0] == 1;
     if(bytes.Length == 33)
     {
         TrustedInputKey = new Ledger3DESKey(bytes.Skip(1).Take(16).ToArray());
         WrappingKey = new Ledger3DESKey(bytes.Skip(1 + 16).Take(16).ToArray());
     }
 }