‪Black Box
BBThermostatDataEncypDecrypKey.cs
Go to the documentation of this file.
1 /*
2 * FILE : BBthermostatDataEncrypDecrypKey.cs
3 * PROJECT : Black Box
4 * PROGRAMMER : BRIAN HINDS
5 * FIRST VERSION : 1.0.0.0
6 * DESCRIPTION : This library file manage the encryption of the thermostat data.
7 */
8 
10 {
12  {
13  private static readonly string ‪SensorKey = "n^1H047puT$An$%Z*#&^g1UO7";
14  private static readonly string ‪SensorIV = "9#Efr1kC5Ywj0%o8#P@z@Yw";
15 
20  public static string ‪sKey()
21  {
22  return ‪SensorKey;
23  }
24 
29  public static string ‪sIV()
30  {
31  return ‪SensorIV;
32  }
33  }
34 }