gnatprove_13.2.1_28fc3583/share/examples/spark/tokeneer/certproc.adb

   1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
------------------------------------------------------------------
-- Tokeneer ID Station Support Software
--
-- Copyright (2003) United States Government, as represented
-- by the Director, National Security Agency. All rights reserved.
--
-- This material was originally developed by Praxis High Integrity
-- Systems Ltd. under contract to the National Security Agency.
------------------------------------------------------------------

------------------------------------------------------------------
-- CertProc
--
-- Implementation Notes:
--    None.
--
------------------------------------------------------------------

with CommonTypes;
with MsgProc;
with CryptoTypes;
with Ada.Strings.Fixed;
with Ada.Strings;

use type CommonTypes.Unsigned32T;
use type CryptoTypes.AlgorithmT;
use type CryptoTypes.IssuerT;

package body CertProc
  with SPARK_Mode => Off  --  exception handlers
is

   ------------------------------------------------------------------
   -- Types
   --
   ------------------------------------------------------------------
   ------------------------------------------------------------------
   -- State
   --
   ------------------------------------------------------------------
   CryptoControlData : CryptoControlDataT := NullCryptoControl;

   subtype RoleValues is Integer range 0..3;
   type RoleFromT is array(RoleValues) of PrivTypes.PrivilegeT;
   type RoleToT is array(PrivTypes.PrivilegeT) of RoleValues;

   subtype ClassValues is Integer range 0..5;
   type ClassFromT is array(ClassValues) of PrivTypes.ClassT;
   type ClassToT is array (PrivTypes.ClassT) of ClassValues;

   RoleFrom : constant RoleFromT := (
       0 => PrivTypes.UserOnly,
       1 => PrivTypes.Guard,
       2 => PrivTypes.SecurityOfficer,
       3 => PrivTypes.AuditManager
      );

   RoleTo : constant RoleToT := (
       PrivTypes.UserOnly        => 0,
       PrivTypes.Guard           => 1,
       PrivTypes.SecurityOfficer => 2,
       PrivTypes.AuditManager    => 3
      );

   ClassFrom : constant ClassFromT := (
       0 => PrivTypes.Unmarked,
       1 => PrivTypes.Unclassified,
       2 => PrivTypes.Restricted,
       3 => PrivTypes.Confidential,
       4 => PrivTypes.Secret,
       5 => PrivTypes.Topsecret
      );

   ClassTo : constant ClassToT := (
       PrivTypes.Unmarked => 0,
       PrivTypes.Unclassified => 1,
       PrivTypes.Restricted => 2,
       PrivTypes.Confidential => 3,
       PrivTypes.Secret => 4,
       PrivTypes.Topsecret => 5
      );

   ------------------------------------------------------------------
   -- Local Subprograms
   ------------------------------------------------------------------
   ------------------------------------------------------------------
   -- Extractname
   --
   -- Description:
   --    Extracts the values from TheDict and checks the values are
   --    in type. If values are invalid, or there is a problem extracting
   --    the values, then NullIssuer is returned.
   --
   -- Implementation Notes:
   --    None.
   --
   ------------------------------------------------------------------
   procedure ExtractName(TheDict : in     MsgProc.DictionaryT;
                         TheName :    out CryptoTypes.IssuerT)
   is
      TheNameString : String := MsgProc.GetStringByKey(
                                     Dic => TheDict,
                                     Key => "Text");
      TheNameLength : Integer;
   begin
      TheNameLength := Integer'Value(
                          MsgProc.GetStringByKey(
                                     Dic => TheDict,
                                     Key => "TextLength"));

      if TheNameLength <= CryptoTypes.NameI'Last then

         TheName.NameLength := TheNameLength;
         TheName.Name :=
                -- Truncate the name if it is longer than the length
                -- given
                Ada.Strings.Fixed.Overwrite(
                           CryptoTypes.BlankName,
                           1,
                           Ada.Strings.Fixed.Head(TheNameString,
                                                  TheNameLength));

         TheName.ID := CryptoTypes.IssuerIDT'Value(
                          MsgProc.GetStringByKey(
                                Dic => TheDict,
                                Key => "ID"));
      else
         TheName := CryptoTypes.NullIssuer;
      end if;

   exception
      when E : others =>
         TheName := CryptoTypes.NullIssuer;
   end ExtractName;

   ------------------------------------------------------------------
   -- ExtractValidity
   --
   -- Description:
   --    Extracts the NotBefore and NotAfter dictionaries from TheDict
   --    and checks the values are in type. If values are invalid, or
   --    there is a problem extracting the values, then
   --    a default value is set, and success is set False
   --
   -- Implementation Notes:
   --    None.
   --
   ------------------------------------------------------------------
   procedure ExtractValidity(TheDict     : in     MsgProc.DictionaryT;
                             TheValidity :    out ValidityT;
                             Ok          :    out Boolean)
   is
      NB : MsgProc.DictionaryT :=
              MsgProc.GetDictionaryByKey(Dic => TheDict,
                                         Key => "NotBefore");
      NA : MsgProc.DictionaryT :=
              MsgProc.GetDictionaryByKey(Dic => TheDict,
                                         Key => "NotAfter");

      ------------------------------------------------------------------
      -- DateNotInType
      --
      -- Description:
      --    Checks that the values are appropriate.
      --       Minute in 0..59
      --       Hour   in 0..23
      --       Day    in 1..31
      --       Month  in 1..12
      --       Year   in 1901..2099
      --    NB does not check that values are consistent with each other
      --    (e.g. if Month is April, does not check that Day is 1..30)
      --
      -- Implementation Notes:
      --    None.
      --
      ------------------------------------------------------------------
      function DateNotInType(TheDate : TimeT) return Boolean
      is
      begin
         return TheDate.Year < 1901 or
                TheDate.Year > 2099 or
                   TheDate.Month < 1 or
                   TheDate.Month > 12 or
                      TheDate.Day < 1 or
                      TheDate.Day > 31 or
                         TheDate.Hour > 23 or
                            TheDate.Minute > 59;
      end DateNotInType;

   begin
      TheValidity.NotBefore.Minute := CommonTypes.Unsigned32T'Value(
                                         MsgProc.GetStringByKey(
                                             Dic => NB,
                                             Key => "Minute"));
      TheValidity.NotBefore.Hour   := CommonTypes.Unsigned32T'Value(
                                         MsgProc.GetStringByKey(
                                             Dic => NB,
                                             Key => "Hour"));
      TheValidity.NotBefore.Day    := CommonTypes.Unsigned32T'Value(
                                         MsgProc.GetStringByKey(
                                             Dic => NB,
                                             Key => "Day"));
      TheValidity.NotBefore.Month  := CommonTypes.Unsigned32T'Value(
                                         MsgProc.GetStringByKey(
                                             Dic => NB,
                                             Key => "Month"));
      TheValidity.NotBefore.Year   := CommonTypes.Unsigned32T'Value(
                                         MsgProc.GetStringByKey(
                                             Dic => NB,
                                             Key => "Year"));

      TheValidity.NotAfter.Minute := CommonTypes.Unsigned32T'Value(
                                         MsgProc.GetStringByKey(
                                             Dic => NA,
                                             Key => "Minute"));
      TheValidity.NotAfter.Hour   := CommonTypes.Unsigned32T'Value(
                                         MsgProc.GetStringByKey(
                                             Dic => NA,
                                             Key => "Hour"));
      TheValidity.NotAfter.Day    := CommonTypes.Unsigned32T'Value(
                                         MsgProc.GetStringByKey(
                                             Dic => NA,
                                             Key => "Day"));
      TheValidity.NotAfter.Month  := CommonTypes.Unsigned32T'Value(
                                         MsgProc.GetStringByKey(
                                             Dic => NA,
                                             Key => "Month"));
      TheValidity.NotAfter.Year   := CommonTypes.Unsigned32T'Value(
                                         MsgProc.GetStringByKey(
                                             Dic => NA,
                                             Key => "Year"));

      if DateNotInType(TheValidity.NotAfter) or
         DateNotInType(TheValidity.NotBefore) then

         Ok := False;
         TheValidity := (NotBefore => (Minute => 0,
                                       Hour   => 0,
                                       Day    => 1,
                                       Month  => 1,
                                       Year   => 1901),
                         NotAfter  => (Minute => 0,
                                       Hour   => 0,
                                       Day    => 1,
                                       Month  => 1,
                                       Year   => 1901));
      else
         Ok := True;
      end if;
   end ExtractValidity;


   ------------------------------------------------------------------
   -- RemoveHolder
   --
   -- Description:
   --    Removes the Holder dictionary from the certificate.
   --    Required when attempting to extract the Issuer, or the
   --    SerialNumber.
   --
   -- Implementation Notes:
   --    None.
   --
   ------------------------------------------------------------------
   procedure RemoveHolder(TheCert : in out CertTypes.RawCertificateT)
   is
      HolderDict : MsgProc.DictionaryT :=
                      MsgProc.GetDictionaryByKey(
                              Dic => MsgProc.DictionaryT(TheCert),
                              Key => "Holder");
      HolderStart : Natural;
   begin
      HolderStart := Ada.Strings.Fixed.Index(TheCert,
                                             String(HolderDict));
      -- leave both braces, to ensure any further searches
      -- will not be broken.
      Ada.Strings.Fixed.Delete(TheCert,
                               HolderStart,
                               HolderStart + HolderDict'Length - 1);

   exception
      when E : others =>
         TheCert := (others => ' ');
   end RemoveHolder;


   ------------------------------------------------------------------
   -- CheckCertLength
   --
   -- Description:
   --    Checks the CertLength is consistent with the length
   --    of the CertData dictionary.
   --
   -- Implementation Notes:
   --    None.
   --
   ------------------------------------------------------------------
   procedure CheckCertLength (TheCert  : in     CertTypes.RawCertificateT;
                              Success  :    out Boolean)
   is
      TheCertLength : Integer;
      TheCertData : constant String :=
                       String(MsgProc.GetDictionaryByKey(
                                 MsgProc.DictionaryT(TheCert),
                                 "CertDataT"));
   begin
      -- The CertLength field includes the braces enclosing the CertData dictionary
      -- so subtract 2 from the length.
      TheCertLength  := Integer'Value(MsgProc.GetStringByKey(
                                          MsgProc.DictionaryT(TheCert),
                                          "CertLength")) - 2;
      Success := TheCertData'Length = TheCertLength;
   exception
      when E : others =>
         Success := False;
   end CheckCertLength;


   ------------------------------------------------------------------
   -- GetCertType
   --
   -- Description:
   --    Determines the Certificate Type.
   --    If Actual CertType found is not the same as the Expected
   --    CertType, Success is set to False.
   --    If the CertType is not found, Actual is set to an invalid
   --    value, and Success is set to False.
   --
   -- Implementation Notes:
   --    None.
   --
   ------------------------------------------------------------------
   procedure GetCertType (TheCert  : in     CertTypes.RawCertificateT;
                          Expected : in     CommonTypes.Unsigned32T;
                          Actual   :    out CommonTypes.Unsigned32T;
                          Success  :    out Boolean)
   is
   begin
      Actual  := CommonTypes.Unsigned32T'Value(
                    MsgProc.GetStringByKey(
                              Dic => MsgProc.DictionaryT(TheCert),
                              Key => "CertType"));
      Success := Expected = Actual;
   exception
      when E : others =>
         Actual  := CommonTypes.Unsigned32T'Last;
         Success := False;
   end GetCertType;


   ------------------------------------------------------------------
   -- GetSerialNumber
   --
   -- Description:
   --    Attempts to extract the Certificate's Serial Number.
   --    Success is set False if it is not found, or if it is invalid.
   --
   -- Implementation Notes:
   --    None.
   --
   ------------------------------------------------------------------
   procedure GetSerialNumber (TheCert  : in     CertTypes.RawCertificateT;
                              CertType : in     CommonTypes.Unsigned32T;
                              SerialNo :    out CommonTypes.Unsigned32T;
                              Success  :    out Boolean)
   is
      LocalCert : CertTypes.RawCertificateT := TheCert;
   begin
      if CertType /= IDCertType then
         -- Need to remove the 'Holder' dictionary from the certificate,
         -- since this also contains a 'SerialNumber'.
         RemoveHolder(LocalCert);
      end if;

      SerialNo := CommonTypes.Unsigned32T'Value(
                    MsgProc.GetStringByKey(
                              Dic => MsgProc.DictionaryT(LocalCert),
                              Key => "SerialNumber"));
      Success  := True;
   exception
      when E : others =>
         SerialNo := CommonTypes.Unsigned32T'Last;
         Success  := False;
   end GetSerialNumber;


   ------------------------------------------------------------------
   -- GetSigAlgID
   --
   -- Description:
   --    Attempts to extract the Certificate's SigAlgID field.
   --    A check is made that it is equal to the AlgorithmID held in
   --    the SignatureDate field.
   --    Success is set False if it is not found, or if it is not
   --    equal to the 'SignatureData' algorithm.
   --    If either algortihm ID is not found, ID is set to 'First, and
   --    Success to false.
   --
   -- Implementation Notes:
   --    None.
   --
   ------------------------------------------------------------------
   procedure GetSigAlgID (TheCert  : in     CertTypes.RawCertificateT;
                          ID       :    out CryptoTypes.AlgorithmT;
                          Success  :    out Boolean)
   is
      SigDict : MsgProc.DictionaryT :=
                   MsgProc.GetDictionaryByKey(
                            Dic => MsgProc.DictionaryT(TheCert),
                            Key => "SignatureData");
      IDFromSig : CryptoTypes.AlgorithmT;
   begin
      ID       := CryptoTypes.AlgorithmT'Value(
                     MsgProc.GetStringByKey(
                               Dic => MsgProc.DictionaryT(TheCert),
                               Key => "SigAlgID"));

      IDFromSig := CryptoTypes.AlgorithmT'Value(
                      MsgProc.GetStringByKey(
                                Dic => SigDict,
                                Key => "AlgoRithmID"));

      Success := ID = IDFromSig;
   exception
      when E : others =>
         ID := CryptoTypes.AlgorithmT'First;
         Success  := False;
   end GetSigAlgID;


   ------------------------------------------------------------------
   -- GetName
   --
   -- Description:
   --    Attempts to extract the Certificate's Issuer field, or
   --    Subject field, depending on CertType and IsSubject.
   --    If values are invalid, or there is a problem extracting
   --    the values, then NullIssuer is returned, and Success is set
   --    to False.
   --
   -- Implementation Notes:
   --    None.
   --
   ------------------------------------------------------------------
   procedure GetName (TheCert   : in     CertTypes.RawCertificateT;
                      CertType  : in     CommonTypes.Unsigned32T;
                      IsSubject : in     Boolean;
                      TheName   :    out CryptoTypes.IssuerT;
                      Success   :    out Boolean)
   is
      LocalCert : CertTypes.RawCertificateT := TheCert;
   begin
      if CertType /= IDCertType and
         not IsSubject then
         -- Need to remove the 'Holder' dictionary from the certificate,
         -- since this also contains an 'Issuer'.
         RemoveHolder(LocalCert);
      end if;

      if IsSubject then
         declare
            TheDict : MsgProc.DictionaryT :=
                         MsgProc.GetDictionaryByKey(
                                    Dic => MsgProc.DictionaryT(LocalCert),
                                    Key => "Subject");
         begin
            ExtractName(TheDict, TheName);
         end;
      else
         declare
            TheDict : MsgProc.DictionaryT :=
                         MsgProc.GetDictionaryByKey(
                                    Dic => MsgProc.DictionaryT(LocalCert),
                                    Key => "Issuer");
         begin
            ExtractName(TheDict, TheName);
         end;
      end if;
      Success := TheName /= CryptoTypes.NullIssuer;
   end GetName;


   ------------------------------------------------------------------
   -- GetHolder
   --
   -- Description:
   --    Attempts to extract the Certificate's Holder field.
   --    If values are invalid, or there is a problem extracting
   --    the values, then a Null holder is returned, and Success is set
   --    to False.
   --
   -- Implementation Notes:
   --    None.
   --
   ------------------------------------------------------------------
   procedure GetHolder (TheCert   : in     CertTypes.RawCertificateT;
                        TheHolder :    out CertTypes.IDT;
                        Success   :    out Boolean)
   is
      HolderDict : MsgProc.DictionaryT :=
                      MsgProc.GetDictionaryByKey(
                              Dic => MsgProc.DictionaryT(TheCert),
                              Key => "Holder");
   begin
      ExtractName(HolderDict, TheHolder.Issuer);
      TheHolder.SerialNumber := CertTypes.SerialNumberT'Value(
                                   MsgProc.GetStringByKey(
                                      Dic => HolderDict,
                                      Key => "SerialNumber"));
      Success  := TheHolder.Issuer /= CryptoTypes.NullIssuer;
   exception
      when E : others =>
         TheHolder := (Issuer       => CryptoTypes.NullIssuer,
                       SerialNumber => CertTypes.SerialNumberT'Last);
         Success  := False;
   end GetHolder;


   ------------------------------------------------------------------
   -- GetValidity
   --
   -- Description:
   --    Attempts to extract the Certificate's Validity field, or
   --    AttCertValidity field, depending on CertType.
   --    If values are invalid, or there is a problem extracting
   --    the values, then each value is set to 'First, and Success is
   --    set to False.
   --
   -- Implementation Notes:
   --    None.
   --
   ------------------------------------------------------------------
   procedure GetValidity (TheCert   : in     CertTypes.RawCertificateT;
                          CertType  : in     CommonTypes.Unsigned32T;
                          Validity  :    out ValidityT;
                          Success   :    out Boolean)
   is
   begin
      if CertType = IDCertType then
         declare
            TheDict : MsgProc.DictionaryT :=
                         MsgProc.GetDictionaryByKey(
                                    Dic => MsgProc.DictionaryT(TheCert),
                                    Key => "Validity");
         begin
            ExtractValidity(TheDict, Validity, Success);
         end;
      else
         declare
            TheDict : MsgProc.DictionaryT :=
                         MsgProc.GetDictionaryByKey(
                                    Dic => MsgProc.DictionaryT(TheCert),
                                    Key => "AttCertValidity");
         begin
            ExtractValidity(TheDict, Validity, Success);
         end;
      end if;
   exception
      when E : others =>
         Success := False;
         Validity := (NotBefore => (Minute => 0,
                                    Hour   => 0,
                                    Day    => 1,
                                    Month  => 1,
                                    Year   => 1901),
                      NotAfter  => (Minute => 0,
                                    Hour   => 0,
                                    Day    => 1,
                                    Month  => 1,
                                    Year   => 1901));
   end GetValidity;


   ------------------------------------------------------------------
   -- GetKeyInfo
   --
   -- Description:
   --    Attempts to extract the Certificate's SubjectPublicKeyInfo
   --    field.
   --    If there is a problem extracting the values, then 'First values
   --    are returned, and Success is set to False.
   --    If the KeyLength field is not in range, then Success is set
   --    to False.
   --
   -- Implementation Notes:
   --    None.
   --
   ------------------------------------------------------------------
   procedure GetKeyInfo (TheCert : in     CertTypes.RawCertificateT;
                         TheKey  :    out PublicKeyInfoT;
                         Success :    out Boolean)
   is
      KeyDict : MsgProc.DictionaryT :=
                      MsgProc.GetDictionaryByKey(
                              Dic => MsgProc.DictionaryT(TheCert),
                              Key => "SubjectPublicKeyInfo");
   begin
      TheKey.AlgorithmID := CryptoTypes.AlgorithmT'Value(
                               MsgProc.GetStringByKey(
                                  Dic => KeyDict,
                                  Key => "AlgoRithmID"));
      TheKey.KeyLength   := CommonTypes.Unsigned32T'Value(
                               MsgProc.GetStringByKey(
                                  Dic => KeyDict,
                                  Key => "KeyLength"));
      TheKey.KeyID       := CommonTypes.Unsigned32T'Value(
                               MsgProc.GetStringByKey(
                                  Dic => KeyDict,
                                  Key => "KeyID"));
      if TheKey.KeyLength <= 128 then
         Success := True;
      else
         Success := False;
         TheKey.KeyLength := CommonTypes.Unsigned32T'First;
      end if;
   exception
      when E : others =>
         Success := False;
         TheKey := (AlgorithmID => CryptoTypes.AlgorithmT'First,
                    KeyLength   => CommonTypes.Unsigned32T'First,
                    KeyID       => CommonTypes.Unsigned32T'First);
   end GetKeyInfo;


   ------------------------------------------------------------------
   -- GetPrivilege
   --
   -- Description:
   --    Attempts to extract the Certificate's Privilege
   --    field.
   --    If there is a problem extracting the values, then 'First values
   --    are returned, and Success is set to False.
   --
   -- Implementation Notes:
   --    None.
   --
   ------------------------------------------------------------------
   procedure GetPrivilege(TheCert : in     CertTypes.RawCertificateT;
                          ThePriv :    out PrivilegeT;
                          Success :    out Boolean)
   is
      PrivDict : MsgProc.DictionaryT :=
                    MsgProc.GetDictionaryByKey(
                            Dic => MsgProc.DictionaryT(TheCert),
                            Key => "Privilege");
   begin
      ThePriv.Role  := RoleFrom(
                          RoleValues'Value(
                             MsgProc.GetStringByKey(
                                Dic => PrivDict,
                                Key => "Role")));
      ThePriv.Class := ClassFrom(
                          ClassValues'Value(
                             MsgProc.GetStringByKey(
                                Dic => PrivDict,
                                Key => "Class")));
      Success := True;
   exception
      when E : others =>
         ThePriv := (PrivTypes.PrivilegeT'First,
                     PrivTypes.ClassT'First);
         Success := False;
   end GetPrivilege;


   ------------------------------------------------------------------
   -- GetPrivilege
   --
   -- Description:
   --    Attempts to extract the Certificate's Fingerprint Template
   --    field.
   --    If there is a problem extracting the values, then 'First values
   --    are returned, and Success is set to False.
   --
   -- Implementation Notes:
   --    None.
   --
   ------------------------------------------------------------------
   procedure GetTemplate(TheCert  : in     CertTypes.RawCertificateT;
                         Template :    out IandATypes.TemplateT;
                         Success  :    out Boolean)
   is
      TemplateDict : MsgProc.DictionaryT :=
                        MsgProc.GetDictionaryByKey(
                              Dic => MsgProc.DictionaryT(TheCert),
                              Key => "Template");
   begin

      Template.ID  := Ada.Strings.Fixed.Overwrite(
                          IandATypes.TemplateIDT'(others => ' '),
                          1,
                          MsgProc.GetStringByKey(
                             Dic => TemplateDict,
                             Key => "TemplateID"));
      Template.Length := CommonTypes.Unsigned32T'Value(
                          MsgProc.GetStringByKey(
                             Dic => TemplateDict,
                             Key => "TemplateLength"));
      Template.RequiredMaxFAR := IandATypes.FarT'Value(
                                    MsgProc.GetStringByKey(
                                       Dic => TemplateDict,
                                       Key => "RequiredMaxFAR"));
      Success := True;
   exception
      when E : others =>
         Template := IandATypes.NullTemplate;
         Success := False;
   end GetTemplate;


   ------------------------------------------------------------------
   -- OverwriteDigestID
   --
   -- Description:
   --    Overwrites the DigestID in the Crypto string with NewID.
   --    If there is a problem, then the Crypto string remains
   --    unchanged.
   --
   -- Implementation Notes:
   --    None.
   --
   ------------------------------------------------------------------
   procedure OverwriteDigestID(Crypto : in out String;
                               NewID  : in     CommonTypes.Unsigned32T)
   is
      LocalCrypto : String := Crypto;
      DigestIDKeyEnd,
      DigestIDStart,
      DigestIDEnd : Natural := 0;
   begin
      -- Delete the old DigestID
      DigestIDKeyEnd := Ada.Strings.Fixed.Index(LocalCrypto,
                                                  "DigestID") +
                        9;
      for i in DigestIDKeyEnd..LocalCrypto'Length loop
         if LocalCrypto(i) = ''' then
            if DigestIDStart = 0 then
               DigestIDStart := i + 1;
            else
               DigestIDEnd := i - 1;
               exit;
            end if;
         end if;
      end loop;

      Ada.Strings.Fixed.Delete(LocalCrypto,
                               DigestIDStart,
                               DigestIDEnd);

      -- and insert 'NewID'
      Ada.Strings.Fixed.Insert(LocalCrypto,
                               DigestIDStart,
                               MsgProc.StringFrom32(NewID));
      Crypto := LocalCrypto;
   exception
      when E : others =>
         Null;
   end OverwriteDigestID;


   ------------------------------------------------------------------
   -- ExtractCryptoControlData
   --
   -- Description:
   --    Attempts to extract the Certificate's Fictional Crypto Control
   --    Data, and overwrites the DigestID with 0.
   --    If there is a problem extracting the values, then null
   --    values are returned.
   --
   -- Implementation Notes:
   --    None.
   --
   ------------------------------------------------------------------
   procedure ExtractCryptoControlData(ThePrivCert : CertTypes.RawCertificateT)
   is
      CryptoDict : MsgProc.DictionaryT :=
                      MsgProc.GetDictionaryByKey(
                              Dic => MsgProc.DictionaryT(ThePrivCert),
                              Key => "CryptoControlData");
   begin
      CryptoControlData := Ada.Strings.Fixed.Overwrite(
                                 NullCryptoControl,
                                 1,
                                 String(CryptoDict));

      OverwriteDigestID(CryptoControlData, 0);

   exception
      when E : others =>
         CryptoControlData := NullCryptoControl;
   end ExtractCryptoControlData;


   ------------------------------------------------------------------
   -- Exported Subprograms
   ------------------------------------------------------------------
   ------------------------------------------------------------------
   -- ExtractIDCertData
   --
   -- Implementation Notes:
   --    None.
   --
   ------------------------------------------------------------------

   procedure ExtractIDCertData(
                   RawIDCert      : in     CertTypes.RawCertificateT;
                   IDCert         :    out IDCertDataT;
                   ExtractSuccess :    out Boolean
                   )
   is
      LengthOK,
      TypeOK,
      SerialOK,
      AlgOK,
      IssuerOK,
      ValidityOK,
      SubjectOK,
      KeyOK      : Boolean;

      TheCertType     : CommonTypes.Unsigned32T;
      TheSerialNumber : CommonTypes.Unsigned32T;
      TheSigAlgId     : CryptoTypes.AlgorithmT;
      TheIssuer       : CryptoTypes.IssuerT;
      TheValidity     : ValidityT;
      TheSubject      : CryptoTypes.IssuerT;
      TheSubjectPublicKey : PublicKeyInfoT;

   begin
      CheckCertLength(RawIDCert, LengthOK);
      GetCertType (RawIDCert, IDCertType, TheCertType, TypeOK);
      GetSerialNumber (RawIDCert, IDCertType, TheSerialNumber, SerialOK);
      GetSigAlgID (RawIDCert, TheSigAlgID, AlgOK);
      GetName (RawIDCert, IDCertType, False, TheIssuer, IssuerOK);
      GetValidity (RawIDCert, IDCertType, TheValidity, ValidityOK);
      GetName (RawIDCert, IDCertType, True, TheSubject, SubjectOK);
      GetKeyInfo (RawIDCert, TheSubjectPublicKey, KeyOK);

      IDCert := (CertType     => TheCertType,
                 SerialNumber => TheSerialNumber,
                 SigAlgId     => TheSigAlgID,
                 Issuer       => TheIssuer,
                 Validity     => TheValidity,
                 Subject      => TheSubject,
                 SubjectPublicKeyInfo => TheSubjectPublicKey);

      ExtractSuccess := LengthOK and
                        TypeOK and
                        SerialOK and
                        AlgOK and
                        IssuerOK and
                        ValidityOK and
                        SubjectOK and
                        KeyOK;
   end ExtractIDCertData;


   ------------------------------------------------------------------
   -- ExtractPrivCertData
   --
   -- Description:
   --    Takes the raw certificate data extracted from the user's token, and
   --    converts into the correct (Priv) certificate structure.
   --
   ------------------------------------------------------------------

   procedure ExtractPrivCertData(
                   RawPrivCert    : in     CertTypes.RawCertificateT;
                   PrivCert       :    out PrivCertDataT;
                   ExtractSuccess :    out Boolean
                   )
   is
      LengthOK,
      TypeOK,
      SerialOK,
      AlgOK,
      IssuerOK,
      ValidityOK,
      HolderOK,
      PrivilegeOK     : Boolean;

      TheCertType     : CommonTypes.Unsigned32T;
      TheSerialNumber : CommonTypes.Unsigned32T;
      TheSigAlgId     : CryptoTypes.AlgorithmT;
      TheIssuer       : CryptoTypes.IssuerT;
      TheValidity     : ValidityT;
      TheHolder       : CertTypes.IDT;
      ThePrivilege    : PrivilegeT;

   begin

      CheckCertLength(RawPrivCert, LengthOK);
      GetCertType (RawPrivCert, PrivCertType, TheCertType, TypeOK);
      GetSerialNumber (RawPrivCert, PrivCertType, TheSerialNumber, SerialOK);
      GetSigAlgID (RawPrivCert, TheSigAlgID, AlgOK);
      GetName (RawPrivCert, PrivCertType, False, TheIssuer, IssuerOK);
      GetValidity (RawPrivCert, PrivCertType, TheValidity, ValidityOK);
      GetHolder (RawPrivCert, TheHolder, HolderOK);
      GetPrivilege (RawPrivCert, ThePrivilege, PrivilegeOK);

      PrivCert := (CertType        => TheCertType,
                   SerialNumber    => TheSerialNumber,
                   SigAlgId        => TheSigAlgID,
                   Issuer          => TheIssuer,
                   AttCertValidity => TheValidity,
                   Holder          => TheHolder,
                   Privilege       => ThePrivilege);

      ExtractSuccess := LengthOK and
                        TypeOK and
                        SerialOK and
                        AlgOK and
                        IssuerOK and
                        ValidityOK and
                        HolderOK and
                        PrivilegeOK;

      -- Now we need to extract the CryptoControl data, to insert
      -- into the next created auth cert.
      ExtractCryptoControlData(RawPrivCert);

   end ExtractPrivCertData;


   ------------------------------------------------------------------
   -- ExtractIACertData
   --
   -- Description:
   --    Takes the raw certificate data extracted from the user's token, and
   --    converts into the correct (I&A) certificate structure.
   --
   ------------------------------------------------------------------

   procedure ExtractIACertData(
                   RawIACert      : in     CertTypes.RawCertificateT;
                   IACert         :    out IACertDataT;
                   ExtractSuccess :    out Boolean
                   )
   is
      LengthOK,
      TypeOK,
      SerialOK,
      AlgOK,
      IssuerOK,
      ValidityOK,
      HolderOK,
      TemplateOK     : Boolean;

      TheCertType     : CommonTypes.Unsigned32T;
      TheSerialNumber : CommonTypes.Unsigned32T;
      TheSigAlgId     : CryptoTypes.AlgorithmT;
      TheIssuer       : CryptoTypes.IssuerT;
      TheValidity     : ValidityT;
      TheHolder       : CertTypes.IDT;
      TheTemplate     : IandATypes.TemplateT;

   begin
      CheckCertLength(RawIACert, LengthOK);
      GetCertType (RawIACert, IACertType, TheCertType, TypeOK);
      GetSerialNumber (RawIACert, IACertType, TheSerialNumber, SerialOK);
      GetSigAlgID (RawIACert, TheSigAlgID, AlgOK);
      GetName (RawIACert, IACertType, False, TheIssuer, IssuerOK);
      GetValidity (RawIACert, IACertType, TheValidity, ValidityOK);
      GetHolder (RawIACert, TheHolder, HolderOK);
      GetTemplate (RawIACert, TheTemplate, TemplateOK);

      IACert := (CertType        => TheCertType,
                 SerialNumber    => TheSerialNumber,
                 SigAlgId        => TheSigAlgID,
                 Issuer          => TheIssuer,
                 AttCertValidity => TheValidity,
                 Holder          => TheHolder,
                 Template        => TheTemplate);

      ExtractSuccess := LengthOK and
                        TypeOK and
                        SerialOK and
                        AlgOK and
                        IssuerOK and
                        ValidityOK and
                        HolderOK and
                        TemplateOK;
   end ExtractIACertData;


   ------------------------------------------------------------------
   -- ExtractAuthCertData
   --
   -- Description:
   --    Takes the raw certificate data extracted from the user's token, and
   --    converts into the correct (Auth) certificate structure.
   --
   ------------------------------------------------------------------

   procedure ExtractAuthCertData(
                   RawAuthCert    : in     CertTypes.RawCertificateT;
                   AuthCert       :    out AuthCertDataT;
                   ExtractSuccess :    out Boolean
                   )
   is
      LengthOK,
      TypeOK,
      SerialOK,
      AlgOK,
      IssuerOK,
      ValidityOK,
      HolderOK,
      PrivilegeOK     : Boolean;

      TheCertType     : CommonTypes.Unsigned32T;
      TheSerialNumber : CommonTypes.Unsigned32T;
      TheSigAlgId     : CryptoTypes.AlgorithmT;
      TheIssuer       : CryptoTypes.IssuerT;
      TheValidity     : ValidityT;
      TheHolder       : CertTypes.IDT;
      ThePrivilege    : PrivilegeT;

   begin
      CheckCertLength(RawAuthCert, LengthOK);
      GetCertType (RawAuthCert, AuthCertType, TheCertType, TypeOK);
      GetSerialNumber (RawAuthCert, AuthCertType, TheSerialNumber, SerialOK);
      GetSigAlgID (RawAuthCert, TheSigAlgID, AlgOK);
      GetName (RawAuthCert, AuthCertType, False, TheIssuer, IssuerOK);
      GetValidity (RawAuthCert, AuthCertType, TheValidity, ValidityOK);
      GetHolder (RawAuthCert, TheHolder, HolderOK);
      GetPrivilege (RawAuthCert, ThePrivilege, PrivilegeOK);

      AuthCert := (CertType        => TheCertType,
                   SerialNumber    => TheSerialNumber,
                   SigAlgId        => TheSigAlgID,
                   Issuer          => TheIssuer,
                   AttCertValidity => TheValidity,
                   Holder          => TheHolder,
                   Privilege       => ThePrivilege);

      ExtractSuccess := LengthOK and
                        TypeOK and
                        SerialOK and
                        AlgOK and
                        IssuerOK and
                        ValidityOK and
                        HolderOK and
                        PrivilegeOK;

   end ExtractAuthCertData;



   ------------------------------------------------------------------
   -- ObtainRawData
   --
   -- Implementation Notes:
   --    Raw Data is determined by removing the SignatureData from
   --    the CertData dictionary.
   --    The signature may be anywhere in the certificate(!), so need
   --    to find the signature, and delete this along with its key.
   --    If the SignatureData is not found, then return the whole certificate
   --    (it may not have been signed).
   --
   ------------------------------------------------------------------

   procedure ObtainRawData(
                   RawCert       : in     CertTypes.RawCertificateT;
                   RawData       :    out CertTypes.RawDataT;
                   ObtainSuccess :    out Boolean
                   )
   is
      -- Without enclosing braces...
      SigDict      : MsgProc.DictionaryT :=
                        MsgProc.GetDictionaryByKey(
                            Dic => MsgProc.DictionaryT(RawCert),
                            Key => "SignatureData");
      SigDictStart,
      SigKeyStart  : Integer := 0;
      CertData     : MsgProc.DictionaryT :=
                        MsgProc.GetDictionaryByKey(
                            Dic => MsgProc.DictionaryT(RawCert),
                            Key => "CertDataT");

   begin
      SigDictStart := Ada.Strings.Fixed.Index(String(CertData),
                                              String(SigDict));

      SigKeyStart := Ada.Strings.Fixed.Index(String(CertData),
                                             "'SignatureData'");

      if SigKeyStart /= 0 and SigDictStart /= 0 then
         Ada.Strings.Fixed.Delete(String(CertData),
                                  -- From 'SignatureData': ...
                                  SigKeyStart,
                                  -- ... to the enclosing }
                                  SigDictStart + SigDict'Length);
      end if;

      -- If signature data not found, return all of CertData
      RawData.RawData := Ada.Strings.Fixed.Overwrite(
                                CertTypes.NullRawCertificate,
                                1,
                                String(CertData));

      RawData.DataLength := Ada.Strings.Fixed.Trim(
                                      RawData.RawData,
                                      Ada.Strings.Right)'Length;
      ObtainSuccess := True;
   exception
      when E : others =>
         -- return whole certificate
         ObtainSuccess := True;
         RawData := (RawCert,
                     Ada.Strings.Fixed.Trim(
                            RawCert,
                            Ada.Strings.Right)'Length);
   end ObtainRawData;


   ------------------------------------------------------------------
   -- ObtainSignatureData
   --
   -- Implementation Notes:
   --    None.
   --
   ------------------------------------------------------------------

   procedure ObtainSignatureData(
                   RawCert       : in     CertTypes.RawCertificateT;
                   SignatureData :    out CertTypes.SignatureT;
                   ObtainSuccess :    out Boolean
                   )
   is
      SigDict : MsgProc.DictionaryT :=
                   MsgProc.GetDictionaryByKey(
                            Dic => MsgProc.DictionaryT(RawCert),
                            Key => "SignatureData");
   begin
      SignatureData := (SigData   => (others => ' '),
                        SigLength => CertTypes.SigDataI'First);

      if SigDict'Length /= 0 then
         Ada.Strings.Fixed.Overwrite(SignatureData.SigData,
                                     1,
                                     String(SigDict));
         if SigDict'Length <= CertTypes.SigDataI'Last then
            SignatureData.SigLength := SigDict'Length;
         else
            SignatureData.SigLength := CertTypes.SigDataI'Last;
         end if;
         ObtainSuccess := True;
      else
         ObtainSuccess := False;
      end if;
   end ObtainSignatureData;



   ------------------------------------------------------------------
   -- ConstructAuthCert
   --
   -- Implementation Notes:
   --    Adds the fictional Crypto dictionary (copied from the Priv Cert)
   --
   ------------------------------------------------------------------

   procedure ConstructAuthCert(
                   AuthCert            : in     AuthCertDataT;
                   UnsignedRawAuthCert :    out CertTypes.RawCertificateT
                   )
   is
      CertTypeString : String :=
                          "'CertType': '" &
                          MsgProc.StringFrom32(AuthCert.CertType) &
                          "', ";
      SerialNoString : String :=
                          "'SerialNumber': '" &
                          MsgProc.StringFrom32(AuthCert.SerialNumber) &
                          "', ";
      SigAlgIDString : String :=
                          "'SigAlgID': '" &
                          CryptoTypes.AlgorithmT'Image(AuthCert.SigAlgID) &
                          "', ";
      IssuerString   : String :=
                          "'Issuer': {'Text': '" &
                          AuthCert.Issuer.Name(1..AuthCert.Issuer.NameLength) &
                          "', 'ID': '" &
                          MsgProc.StringFrom32(CommonTypes.Unsigned32T(AuthCert.Issuer.ID)) &
                          "', 'TextLength': '" &
                          MsgProc.StringFromInt(AuthCert.Issuer.NameLength) &
                          "'}, ";
      ValidityString : String :=
                          "'AttCertValidity': {'NotBefore': {'Minute': '" &
                          MsgProc.StringFrom32(
                             AuthCert.AttCertValidity.NotBefore.Minute) &
                          "', 'Hour': '" &
                          MsgProc.StringFrom32(
                             AuthCert.AttCertValidity.NotBefore.Hour) &
                          "', 'Day': '" &
                          MsgProc.StringFrom32(
                             AuthCert.AttCertValidity.NotBefore.Day) &
                          "', 'Month': '" &
                          MsgProc.StringFrom32(
                             AuthCert.AttCertValidity.NotBefore.Month) &
                          "', 'Year': '" &
                          MsgProc.StringFrom32(
                             AuthCert.AttCertValidity.NotBefore.Year) &
                          "'}, 'NotAfter': {'Minute': '" &
                          MsgProc.StringFrom32(
                             AuthCert.AttCertValidity.NotAfter.Minute) &
                          "', 'Hour': '" &
                          MsgProc.StringFrom32(
                             AuthCert.AttCertValidity.NotAfter.Hour) &
                          "', 'Day': '" &
                          MsgProc.StringFrom32(
                             AuthCert.AttCertValidity.NotAfter.Day) &
                          "', 'Month': '" &
                          MsgProc.StringFrom32(
                             AuthCert.AttCertValidity.NotAfter.Month) &
                          "', 'Year': '" &
                          MsgProc.StringFrom32(
                             AuthCert.AttCertValidity.NotAfter.Year) &
                          "'}}, ";
      HolderString   : String :=
                          "'Holder': {'SerialNumber': '" &
                          MsgProc.StringFrom32(CommonTypes.Unsigned32T(
                             AuthCert.Holder.SerialNumber)) &
                          "', 'Issuer': {'Text': '" &
                          AuthCert.Holder.Issuer.Name(
                                    1..AuthCert.Holder.Issuer.NameLength) &
                          "', 'ID': '" &
                          MsgProc.StringFrom32(CommonTypes.Unsigned32T(
                                    AuthCert.Holder.Issuer.ID)) &
                          "', 'TextLength': '" &
                          MsgProc.StringFromInt(AuthCert.Holder.Issuer.NameLength) &
                          "'}}, ";
      PriviString    : String :=
                          "'Privilege': {'Pad': '??????????', 'Role': '" &
                          MsgProc.StringFrom32(CommonTypes.Unsigned32T(
                            RoleTo(AuthCert.Privilege.Role))) &
                          "', 'Class': '" &
                          MsgProc.StringFrom32(CommonTypes.Unsigned32T(
                            ClassTo(AuthCert.Privilege.Class))) &
                          "'}, ";
      CryptoString   : String :=
                          "'CryptoControlData': {" &
                          Ada.Strings.Fixed.Trim(CryptoControlData, Ada.Strings.
                          Both) &
                          "}, ";
      SigString      : String :=
                          "'SignatureData': {}";

      TheAuthData    : String :=
                          CertTypeString &
                          SerialNoString &
                          SigAlgIDString &
                          IssuerSTring   &
                          ValidityString &
                          HolderString   &
                          PriviString    &
                          CryptoString   &
                          SigString;

      -- Include braces in length, so add 2
      TheAuthLength  : String :=
                          "'CertLength': '" &
                          MsgProc.StringFromInt(TheAuthData'Length + 2) &
                          "', ";

      TheAuthString  : String :=
                          TheAuthLength &
                          "'CertDataT': {" &
                          TheAuthData &
                          "}";


   begin
      UnsignedRawAuthCert := Ada.Strings.Fixed.Overwrite(
                                  CertTypes.NullRawCertificate,
                                  1,
                                  TheAuthString);
   end ConstructAuthCert;



   ------------------------------------------------------------------
   -- AddAuthSignature
   --
   -- Implementation Notes:
   --    Adds the SignatureData to the empty dictionary created in
   --    ConstructAuthCert.
   --    Digest ID in SignatureData is the 'correct' ID - i.e. the ID created
   --    from digesting the unsigned cert. This needs to overwrite the
   --    DigestID in the fictional Crypto dictionary.
   --
   ------------------------------------------------------------------

   procedure AddAuthSignature(
                   UnsignedRawAuthCert : in     CertTypes.RawCertificateT;
                   SignatureData       : in     CertTypes.SignatureT;
                   SignedRawAuthCert   :    out CertTypes.RawCertificateT)
   is
      NewID : CommonTypes.Unsigned32T;

      SigDataString  : String := SignatureData.SigData(
                                    1..SignatureData.SigLength);
      SigDictStart   : Natural;

      CertLengthKey  : String := "'CertLength':";

      LengthKeyStart : Natural;
      LengthValStart,
      LengthValEnd   : Natural := 0;

   begin
      SignedRawAuthCert := UnsignedRawAuthCert;

      -- Attempt to replace the old DigestID with the new one
      begin
         NewID := CommonTypes.Unsigned32T'Value(
                     MsgProc.GetStringByKey(
                        MsgProc.DictionaryT(SigDataString),
                        "DigestID"));
         OverwriteDigestID(SignedRawAuthCert, NewID);
      exception
         when E : others =>
            Null;
      end;

      -- Find and overwrite the blank signature
      SigDictStart := Ada.Strings.Fixed.Index(SignedRawAuthCert, "{}");

      if SigDictStart /= 0 then
         Ada.Strings.Fixed.Insert(SignedRawAuthCert,
                                  SigDictStart + 1,
                                  SigDataString,
                                  Ada.Strings.Right);
      end if; -- else would only occur if UnsignedRawAuthCert is
              -- not that contructed by ConstructAuthCert

      -- Determine the new CertLength, and overwrite old one
      declare
         TheCertData  : MsgProc.DictionaryT :=
                           MsgProc.GetDictionaryByKey(
                              MsgProc.DictionaryT(SignedRawAuthCert),
                              "CertDataT");

      begin
         LengthKeyStart := Ada.Strings.Fixed.Index(SignedRawAuthCert,
                                                   CertLengthKey);

         for i in CertTypes.RawCertificateI range
            LengthKeyStart + CertLengthKey'Length-1 .. CertTypes.RawCertificateI'Last loop
            if SignedRawAuthCert(i) = ''' then
               if LengthValStart = 0 then
                  LengthValStart := i + 1;
               else
                  LengthValEnd := i - 1;
                  exit;
               end if;
            end if;
         end loop;

         -- Include braces in length, so add 2
         Ada.Strings.Fixed.Replace_Slice(SignedRawAuthCert,
                                        LengthValStart,
                                        LengthValEnd,
                                        MsgProc.StringFromInt(TheCertData'Length + 2),
                                        Ada.Strings.Right);
      end;

   end AddAuthSignature;

end CertProc;