mirror of https://github.com/duggerd/KFDtool.git
19 lines
411 B
C#
19 lines
411 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace KFDtool.P25.Kmm
|
|||
|
{
|
|||
|
public enum MessageId : byte
|
|||
|
{
|
|||
|
InventoryCommand = 0x0D,
|
|||
|
InventoryResponse = 0x0E,
|
|||
|
ModifyKeyCommand = 0x13,
|
|||
|
RekeyAcknowledgment = 0x1D,
|
|||
|
ZeroizeCommand = 0x21,
|
|||
|
ZeroizeResponse = 0x22
|
|||
|
}
|
|||
|
}
|