From a9fc0c206a47600c71fa75e6e1af12312dbb2780 Mon Sep 17 00:00:00 2001 From: Matt Ames Date: Thu, 12 Apr 2018 11:34:06 +1000 Subject: [PATCH] Update AlgIDs to latest known values --- op25/gr-op25/lib/value_string.cc | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/op25/gr-op25/lib/value_string.cc b/op25/gr-op25/lib/value_string.cc index ce96dc3..3da0d1a 100644 --- a/op25/gr-op25/lib/value_string.cc +++ b/op25/gr-op25/lib/value_string.cc @@ -55,16 +55,19 @@ const value_string ALGIDS[] = { { 0x04, "SAVILLE" }, { 0x41, "BATON (Auto Odd)" }, /* Type III */ - { 0x80, "Plain" }, - { 0x81, "DES-OFB" }, - { 0x82, "2 key Triple DES" }, - { 0x83, "3 key Triple DES" }, + { 0x80, "Unencrypted" }, + { 0x81, "DES-OFB, 56 bit key" }, + { 0x83, "3 key Triple DES, 168 bit key" }, { 0x84, "AES-256" }, + { 0x85, "AES-128-ECB"}, + { 0x88, "AES-CBC"}, /* Motorola proprietary */ { 0x9F, "Motorola DES-XL" }, { 0xA0, "Motorola DVI-XL" }, { 0xA1, "Motorola DVP-XL" }, + { 0xA2, "Motorola DVI-SPFL"}, { 0xAA, "Motorola ADP" }, + { 0xB0, "Motorola DVP"}, }; const size_t ALGIDS_SZ = sizeof(ALGIDS) / sizeof(ALGIDS[0]);