mirror of https://github.com/duggerd/KFDtool.git
121 lines
2.7 KiB
C#
121 lines
2.7 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace KFDtool.P25.Kmm
|
|
{
|
|
/* TIA 102.AACA-A 10.2.19 and TIA 102.AACD-A 3.9.2.17 */
|
|
public class ModifyKeyCommand : KmmBody
|
|
{
|
|
private int _keysetId;
|
|
|
|
private int _algorithmId;
|
|
|
|
public int KeysetId
|
|
{
|
|
get
|
|
{
|
|
return _keysetId;
|
|
}
|
|
set
|
|
{
|
|
if (value < 0 || value > 0xFF)
|
|
{
|
|
throw new ArgumentOutOfRangeException();
|
|
}
|
|
|
|
_keysetId = value;
|
|
}
|
|
}
|
|
|
|
public int AlgorithmId
|
|
{
|
|
get
|
|
{
|
|
return _algorithmId;
|
|
}
|
|
set
|
|
{
|
|
if (value < 0 || value > 0xFF)
|
|
{
|
|
throw new ArgumentOutOfRangeException();
|
|
}
|
|
|
|
_algorithmId = value;
|
|
}
|
|
}
|
|
|
|
public List<KeyItem> KeyItems { get; set; }
|
|
|
|
public override MessageId MessageId
|
|
{
|
|
get
|
|
{
|
|
return MessageId.ModifyKeyCommand;
|
|
}
|
|
}
|
|
|
|
public override ResponseKind ResponseKind
|
|
{
|
|
get
|
|
{
|
|
return ResponseKind.Immediate;
|
|
}
|
|
}
|
|
|
|
public ModifyKeyCommand()
|
|
{
|
|
KeyItems = new List<KeyItem>();
|
|
}
|
|
|
|
public override byte[] ToBytes()
|
|
{
|
|
List<byte> keys = new List<byte>();
|
|
|
|
foreach (KeyItem key in KeyItems)
|
|
{
|
|
keys.AddRange(key.ToBytes());
|
|
}
|
|
|
|
List<byte> contents = new List<byte>();
|
|
|
|
/* decryption instruction format */
|
|
contents.Add(0x00);
|
|
|
|
/* extended decryption instruction format */
|
|
contents.Add(0x00);
|
|
|
|
/* algorithm id */
|
|
contents.Add(0x80);
|
|
|
|
/* key id */
|
|
contents.Add(0x00);
|
|
contents.Add(0x00);
|
|
|
|
/* keyset id */
|
|
contents.Add((byte)KeysetId);
|
|
|
|
/* algorithm id */
|
|
contents.Add((byte)AlgorithmId);
|
|
|
|
/* key length */
|
|
contents.Add((byte)KeyItems[0].Key.Length);
|
|
|
|
/* number of keys */
|
|
contents.Add((byte)KeyItems.Count);
|
|
|
|
/* key */
|
|
contents.AddRange(keys);
|
|
|
|
return contents.ToArray();
|
|
}
|
|
|
|
public override void Parse(byte[] contents)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|