33 lines
660 B
C#
33 lines
660 B
C#
|
|
using System;
|
|||
|
|
|
|||
|
|
namespace Xylem.ServiceFwUpdate.Common.FwUpdateSafe
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// Cordonel password container
|
|||
|
|
/// </summary>
|
|||
|
|
[Serializable]
|
|||
|
|
public class PasswordContainer
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// PCB identifier.
|
|||
|
|
/// </summary>
|
|||
|
|
public String PcbId;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Skeleton key
|
|||
|
|
/// </summary>
|
|||
|
|
public String SkeletonKey;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Password level 8
|
|||
|
|
/// </summary>
|
|||
|
|
public String PasswordLvl8;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Password file encrypted
|
|||
|
|
/// </summary>
|
|||
|
|
public Byte[] EncryptedPasswordFile;
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|