‪Black Box
BBSensorDataEncrypDecrypKey.cs
Go to the documentation of this file.
1 /*
2 * FILE : BBSensorDataEncrypDecrypKey.cs
3 * PROJECT : Black Box
4 * PROGRAMMER : BRIAN HINDS
5 * FIRST VERSION : 1.0.0.0
6 * DATE : March 20, 2019
7 * DESCRIPTION : This file manages the encryption key.
8 */
9 
11 {
13  {
14  #region Variables
15 
16  private static readonly string ‪SensorKey = "n^1H047puT$An$%Z*#&^g1UO7";
17  private static readonly string ‪SensorIV = "9#Efr1kC5Ywj0%o8#P@z@Yw";
18 
19  #endregion Variables
20 
21  #region Encryption and Decryption Setters
22 
26  public static string ‪sKey()
27  {
28  return ‪SensorKey;
29  }
30 
34  public static string ‪sIV()
35  {
36  return ‪SensorIV;
37  }
38 
39  #endregion Encryption and Decryption Setters
40  }
41 }