Codebase list openssl / debian/openssl-1.0.2l-2+deb9u2_bpo8+1 ssl / ssl_stat.c
debian/openssl-1.0.2l-2+deb9u2_bpo8+1

Tree @debian/openssl-1.0.2l-2+deb9u2_bpo8+1 (Download .tar.gz)

ssl_stat.c @debian/openssl-1.0.2l-2+deb9u2_bpo8+1raw · history · blame

   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
/* ssl/ssl_stat.c */
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
 * All rights reserved.
 *
 * This package is an SSL implementation written
 * by Eric Young (eay@cryptsoft.com).
 * The implementation was written so as to conform with Netscapes SSL.
 *
 * This library is free for commercial and non-commercial use as long as
 * the following conditions are aheared to.  The following conditions
 * apply to all code found in this distribution, be it the RC4, RSA,
 * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
 * included with this distribution is covered by the same copyright terms
 * except that the holder is Tim Hudson (tjh@cryptsoft.com).
 *
 * Copyright remains Eric Young's, and as such any Copyright notices in
 * the code are not to be removed.
 * If this package is used in a product, Eric Young should be given attribution
 * as the author of the parts of the library used.
 * This can be in the form of a textual message at program startup or
 * in documentation (online or textual) provided with the package.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 * 3. All advertising materials mentioning features or use of this software
 *    must display the following acknowledgement:
 *    "This product includes cryptographic software written by
 *     Eric Young (eay@cryptsoft.com)"
 *    The word 'cryptographic' can be left out if the rouines from the library
 *    being used are not cryptographic related :-).
 * 4. If you include any Windows specific code (or a derivative thereof) from
 *    the apps directory (application code) you must include an acknowledgement:
 *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
 *
 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 * SUCH DAMAGE.
 *
 * The licence and distribution terms for any publically available version or
 * derivative of this code cannot be changed.  i.e. this code cannot simply be
 * copied and put under another distribution licence
 * [including the GNU Public Licence.]
 */
/* ====================================================================
 * Copyright 2005 Nokia. All rights reserved.
 *
 * The portions of the attached software ("Contribution") is developed by
 * Nokia Corporation and is licensed pursuant to the OpenSSL open source
 * license.
 *
 * The Contribution, originally written by Mika Kousa and Pasi Eronen of
 * Nokia Corporation, consists of the "PSK" (Pre-Shared Key) ciphersuites
 * support (see RFC 4279) to OpenSSL.
 *
 * No patent licenses or other rights except those expressly stated in
 * the OpenSSL open source license shall be deemed granted or received
 * expressly, by implication, estoppel, or otherwise.
 *
 * No assurances are provided by Nokia that the Contribution does not
 * infringe the patent or other intellectual property rights of any third
 * party or that the license provides you with all the necessary rights
 * to make use of the Contribution.
 *
 * THE SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. IN
 * ADDITION TO THE DISCLAIMERS INCLUDED IN THE LICENSE, NOKIA
 * SPECIFICALLY DISCLAIMS ANY LIABILITY FOR CLAIMS BROUGHT BY YOU OR ANY
 * OTHER ENTITY BASED ON INFRINGEMENT OF INTELLECTUAL PROPERTY RIGHTS OR
 * OTHERWISE.
 */

#include <stdio.h>
#include "ssl_locl.h"

const char *SSL_state_string_long(const SSL *s)
{
    const char *str;

    switch (s->state) {
    case SSL_ST_BEFORE:
        str = "before SSL initialization";
        break;
    case SSL_ST_ACCEPT:
        str = "before accept initialization";
        break;
    case SSL_ST_CONNECT:
        str = "before connect initialization";
        break;
    case SSL_ST_OK:
        str = "SSL negotiation finished successfully";
        break;
    case SSL_ST_RENEGOTIATE:
        str = "SSL renegotiate ciphers";
        break;
    case SSL_ST_BEFORE | SSL_ST_CONNECT:
        str = "before/connect initialization";
        break;
    case SSL_ST_OK | SSL_ST_CONNECT:
        str = "ok/connect SSL initialization";
        break;
    case SSL_ST_BEFORE | SSL_ST_ACCEPT:
        str = "before/accept initialization";
        break;
    case SSL_ST_OK | SSL_ST_ACCEPT:
        str = "ok/accept SSL initialization";
        break;
    case SSL_ST_ERR:
        str = "error";
        break;
#ifndef OPENSSL_NO_SSL2
    case SSL2_ST_CLIENT_START_ENCRYPTION:
        str = "SSLv2 client start encryption";
        break;
    case SSL2_ST_SERVER_START_ENCRYPTION:
        str = "SSLv2 server start encryption";
        break;
    case SSL2_ST_SEND_CLIENT_HELLO_A:
        str = "SSLv2 write client hello A";
        break;
    case SSL2_ST_SEND_CLIENT_HELLO_B:
        str = "SSLv2 write client hello B";
        break;
    case SSL2_ST_GET_SERVER_HELLO_A:
        str = "SSLv2 read server hello A";
        break;
    case SSL2_ST_GET_SERVER_HELLO_B:
        str = "SSLv2 read server hello B";
        break;
    case SSL2_ST_SEND_CLIENT_MASTER_KEY_A:
        str = "SSLv2 write client master key A";
        break;
    case SSL2_ST_SEND_CLIENT_MASTER_KEY_B:
        str = "SSLv2 write client master key B";
        break;
    case SSL2_ST_SEND_CLIENT_FINISHED_A:
        str = "SSLv2 write client finished A";
        break;
    case SSL2_ST_SEND_CLIENT_FINISHED_B:
        str = "SSLv2 write client finished B";
        break;
    case SSL2_ST_SEND_CLIENT_CERTIFICATE_A:
        str = "SSLv2 write client certificate A";
        break;
    case SSL2_ST_SEND_CLIENT_CERTIFICATE_B:
        str = "SSLv2 write client certificate B";
        break;
    case SSL2_ST_SEND_CLIENT_CERTIFICATE_C:
        str = "SSLv2 write client certificate C";
        break;
    case SSL2_ST_SEND_CLIENT_CERTIFICATE_D:
        str = "SSLv2 write client certificate D";
        break;
    case SSL2_ST_GET_SERVER_VERIFY_A:
        str = "SSLv2 read server verify A";
        break;
    case SSL2_ST_GET_SERVER_VERIFY_B:
        str = "SSLv2 read server verify B";
        break;
    case SSL2_ST_GET_SERVER_FINISHED_A:
        str = "SSLv2 read server finished A";
        break;
    case SSL2_ST_GET_SERVER_FINISHED_B:
        str = "SSLv2 read server finished B";
        break;
    case SSL2_ST_GET_CLIENT_HELLO_A:
        str = "SSLv2 read client hello A";
        break;
    case SSL2_ST_GET_CLIENT_HELLO_B:
        str = "SSLv2 read client hello B";
        break;
    case SSL2_ST_GET_CLIENT_HELLO_C:
        str = "SSLv2 read client hello C";
        break;
    case SSL2_ST_SEND_SERVER_HELLO_A:
        str = "SSLv2 write server hello A";
        break;
    case SSL2_ST_SEND_SERVER_HELLO_B:
        str = "SSLv2 write server hello B";
        break;
    case SSL2_ST_GET_CLIENT_MASTER_KEY_A:
        str = "SSLv2 read client master key A";
        break;
    case SSL2_ST_GET_CLIENT_MASTER_KEY_B:
        str = "SSLv2 read client master key B";
        break;
    case SSL2_ST_SEND_SERVER_VERIFY_A:
        str = "SSLv2 write server verify A";
        break;
    case SSL2_ST_SEND_SERVER_VERIFY_B:
        str = "SSLv2 write server verify B";
        break;
    case SSL2_ST_SEND_SERVER_VERIFY_C:
        str = "SSLv2 write server verify C";
        break;
    case SSL2_ST_GET_CLIENT_FINISHED_A:
        str = "SSLv2 read client finished A";
        break;
    case SSL2_ST_GET_CLIENT_FINISHED_B:
        str = "SSLv2 read client finished B";
        break;
    case SSL2_ST_SEND_SERVER_FINISHED_A:
        str = "SSLv2 write server finished A";
        break;
    case SSL2_ST_SEND_SERVER_FINISHED_B:
        str = "SSLv2 write server finished B";
        break;
    case SSL2_ST_SEND_REQUEST_CERTIFICATE_A:
        str = "SSLv2 write request certificate A";
        break;
    case SSL2_ST_SEND_REQUEST_CERTIFICATE_B:
        str = "SSLv2 write request certificate B";
        break;
    case SSL2_ST_SEND_REQUEST_CERTIFICATE_C:
        str = "SSLv2 write request certificate C";
        break;
    case SSL2_ST_SEND_REQUEST_CERTIFICATE_D:
        str = "SSLv2 write request certificate D";
        break;
    case SSL2_ST_X509_GET_SERVER_CERTIFICATE:
        str = "SSLv2 X509 read server certificate";
        break;
    case SSL2_ST_X509_GET_CLIENT_CERTIFICATE:
        str = "SSLv2 X509 read client certificate";
        break;
#endif

#ifndef OPENSSL_NO_SSL3
/* SSLv3 additions */
    case SSL3_ST_CW_CLNT_HELLO_A:
        str = "SSLv3 write client hello A";
        break;
    case SSL3_ST_CW_CLNT_HELLO_B:
        str = "SSLv3 write client hello B";
        break;
    case SSL3_ST_CR_SRVR_HELLO_A:
        str = "SSLv3 read server hello A";
        break;
    case SSL3_ST_CR_SRVR_HELLO_B:
        str = "SSLv3 read server hello B";
        break;
    case SSL3_ST_CR_CERT_A:
        str = "SSLv3 read server certificate A";
        break;
    case SSL3_ST_CR_CERT_B:
        str = "SSLv3 read server certificate B";
        break;
    case SSL3_ST_CR_KEY_EXCH_A:
        str = "SSLv3 read server key exchange A";
        break;
    case SSL3_ST_CR_KEY_EXCH_B:
        str = "SSLv3 read server key exchange B";
        break;
    case SSL3_ST_CR_CERT_REQ_A:
        str = "SSLv3 read server certificate request A";
        break;
    case SSL3_ST_CR_CERT_REQ_B:
        str = "SSLv3 read server certificate request B";
        break;
    case SSL3_ST_CR_SESSION_TICKET_A:
        str = "SSLv3 read server session ticket A";
        break;
    case SSL3_ST_CR_SESSION_TICKET_B:
        str = "SSLv3 read server session ticket B";
        break;
    case SSL3_ST_CR_SRVR_DONE_A:
        str = "SSLv3 read server done A";
        break;
    case SSL3_ST_CR_SRVR_DONE_B:
        str = "SSLv3 read server done B";
        break;
    case SSL3_ST_CW_CERT_A:
        str = "SSLv3 write client certificate A";
        break;
    case SSL3_ST_CW_CERT_B:
        str = "SSLv3 write client certificate B";
        break;
    case SSL3_ST_CW_CERT_C:
        str = "SSLv3 write client certificate C";
        break;
    case SSL3_ST_CW_CERT_D:
        str = "SSLv3 write client certificate D";
        break;
    case SSL3_ST_CW_KEY_EXCH_A:
        str = "SSLv3 write client key exchange A";
        break;
    case SSL3_ST_CW_KEY_EXCH_B:
        str = "SSLv3 write client key exchange B";
        break;
    case SSL3_ST_CW_CERT_VRFY_A:
        str = "SSLv3 write certificate verify A";
        break;
    case SSL3_ST_CW_CERT_VRFY_B:
        str = "SSLv3 write certificate verify B";
        break;

    case SSL3_ST_CW_CHANGE_A:
    case SSL3_ST_SW_CHANGE_A:
        str = "SSLv3 write change cipher spec A";
        break;
    case SSL3_ST_CW_CHANGE_B:
    case SSL3_ST_SW_CHANGE_B:
        str = "SSLv3 write change cipher spec B";
        break;
    case SSL3_ST_CW_FINISHED_A:
    case SSL3_ST_SW_FINISHED_A:
        str = "SSLv3 write finished A";
        break;
    case SSL3_ST_CW_FINISHED_B:
    case SSL3_ST_SW_FINISHED_B:
        str = "SSLv3 write finished B";
        break;
    case SSL3_ST_CR_CHANGE_A:
    case SSL3_ST_SR_CHANGE_A:
        str = "SSLv3 read change cipher spec A";
        break;
    case SSL3_ST_CR_CHANGE_B:
    case SSL3_ST_SR_CHANGE_B:
        str = "SSLv3 read change cipher spec B";
        break;
    case SSL3_ST_CR_FINISHED_A:
    case SSL3_ST_SR_FINISHED_A:
        str = "SSLv3 read finished A";
        break;
    case SSL3_ST_CR_FINISHED_B:
    case SSL3_ST_SR_FINISHED_B:
        str = "SSLv3 read finished B";
        break;

    case SSL3_ST_CW_FLUSH:
    case SSL3_ST_SW_FLUSH:
        str = "SSLv3 flush data";
        break;

    case SSL3_ST_SR_CLNT_HELLO_A:
        str = "SSLv3 read client hello A";
        break;
    case SSL3_ST_SR_CLNT_HELLO_B:
        str = "SSLv3 read client hello B";
        break;
    case SSL3_ST_SR_CLNT_HELLO_C:
        str = "SSLv3 read client hello C";
        break;
    case SSL3_ST_SW_HELLO_REQ_A:
        str = "SSLv3 write hello request A";
        break;
    case SSL3_ST_SW_HELLO_REQ_B:
        str = "SSLv3 write hello request B";
        break;
    case SSL3_ST_SW_HELLO_REQ_C:
        str = "SSLv3 write hello request C";
        break;
    case SSL3_ST_SW_SRVR_HELLO_A:
        str = "SSLv3 write server hello A";
        break;
    case SSL3_ST_SW_SRVR_HELLO_B:
        str = "SSLv3 write server hello B";
        break;
    case SSL3_ST_SW_CERT_A:
        str = "SSLv3 write certificate A";
        break;
    case SSL3_ST_SW_CERT_B:
        str = "SSLv3 write certificate B";
        break;
    case SSL3_ST_SW_KEY_EXCH_A:
        str = "SSLv3 write key exchange A";
        break;
    case SSL3_ST_SW_KEY_EXCH_B:
        str = "SSLv3 write key exchange B";
        break;
    case SSL3_ST_SW_CERT_REQ_A:
        str = "SSLv3 write certificate request A";
        break;
    case SSL3_ST_SW_CERT_REQ_B:
        str = "SSLv3 write certificate request B";
        break;
    case SSL3_ST_SW_SESSION_TICKET_A:
        str = "SSLv3 write session ticket A";
        break;
    case SSL3_ST_SW_SESSION_TICKET_B:
        str = "SSLv3 write session ticket B";
        break;
    case SSL3_ST_SW_SRVR_DONE_A:
        str = "SSLv3 write server done A";
        break;
    case SSL3_ST_SW_SRVR_DONE_B:
        str = "SSLv3 write server done B";
        break;
    case SSL3_ST_SR_CERT_A:
        str = "SSLv3 read client certificate A";
        break;
    case SSL3_ST_SR_CERT_B:
        str = "SSLv3 read client certificate B";
        break;
    case SSL3_ST_SR_KEY_EXCH_A:
        str = "SSLv3 read client key exchange A";
        break;
    case SSL3_ST_SR_KEY_EXCH_B:
        str = "SSLv3 read client key exchange B";
        break;
    case SSL3_ST_SR_CERT_VRFY_A:
        str = "SSLv3 read certificate verify A";
        break;
    case SSL3_ST_SR_CERT_VRFY_B:
        str = "SSLv3 read certificate verify B";
        break;
#endif

/* SSLv2/v3 compatibility states */
/* client */
    case SSL23_ST_CW_CLNT_HELLO_A:
        str = "SSLv2/v3 write client hello A";
        break;
    case SSL23_ST_CW_CLNT_HELLO_B:
        str = "SSLv2/v3 write client hello B";
        break;
    case SSL23_ST_CR_SRVR_HELLO_A:
        str = "SSLv2/v3 read server hello A";
        break;
    case SSL23_ST_CR_SRVR_HELLO_B:
        str = "SSLv2/v3 read server hello B";
        break;
/* server */
    case SSL23_ST_SR_CLNT_HELLO_A:
        str = "SSLv2/v3 read client hello A";
        break;
    case SSL23_ST_SR_CLNT_HELLO_B:
        str = "SSLv2/v3 read client hello B";
        break;

/* DTLS */
    case DTLS1_ST_CR_HELLO_VERIFY_REQUEST_A:
        str = "DTLS1 read hello verify request A";
        break;
    case DTLS1_ST_CR_HELLO_VERIFY_REQUEST_B:
        str = "DTLS1 read hello verify request B";
        break;
    case DTLS1_ST_SW_HELLO_VERIFY_REQUEST_A:
        str = "DTLS1 write hello verify request A";
        break;
    case DTLS1_ST_SW_HELLO_VERIFY_REQUEST_B:
        str = "DTLS1 write hello verify request B";
        break;

    default:
        str = "unknown state";
        break;
    }
    return (str);
}

const char *SSL_rstate_string_long(const SSL *s)
{
    const char *str;

    switch (s->rstate) {
    case SSL_ST_READ_HEADER:
        str = "read header";
        break;
    case SSL_ST_READ_BODY:
        str = "read body";
        break;
    case SSL_ST_READ_DONE:
        str = "read done";
        break;
    default:
        str = "unknown";
        break;
    }
    return (str);
}

const char *SSL_state_string(const SSL *s)
{
    const char *str;

    switch (s->state) {
    case SSL_ST_BEFORE:
        str = "PINIT ";
        break;
    case SSL_ST_ACCEPT:
        str = "AINIT ";
        break;
    case SSL_ST_CONNECT:
        str = "CINIT ";
        break;
    case SSL_ST_OK:
        str = "SSLOK ";
        break;
    case SSL_ST_ERR:
        str = "SSLERR";
        break;
#ifndef OPENSSL_NO_SSL2
    case SSL2_ST_CLIENT_START_ENCRYPTION:
        str = "2CSENC";
        break;
    case SSL2_ST_SERVER_START_ENCRYPTION:
        str = "2SSENC";
        break;
    case SSL2_ST_SEND_CLIENT_HELLO_A:
        str = "2SCH_A";
        break;
    case SSL2_ST_SEND_CLIENT_HELLO_B:
        str = "2SCH_B";
        break;
    case SSL2_ST_GET_SERVER_HELLO_A:
        str = "2GSH_A";
        break;
    case SSL2_ST_GET_SERVER_HELLO_B:
        str = "2GSH_B";
        break;
    case SSL2_ST_SEND_CLIENT_MASTER_KEY_A:
        str = "2SCMKA";
        break;
    case SSL2_ST_SEND_CLIENT_MASTER_KEY_B:
        str = "2SCMKB";
        break;
    case SSL2_ST_SEND_CLIENT_FINISHED_A:
        str = "2SCF_A";
        break;
    case SSL2_ST_SEND_CLIENT_FINISHED_B:
        str = "2SCF_B";
        break;
    case SSL2_ST_SEND_CLIENT_CERTIFICATE_A:
        str = "2SCC_A";
        break;
    case SSL2_ST_SEND_CLIENT_CERTIFICATE_B:
        str = "2SCC_B";
        break;
    case SSL2_ST_SEND_CLIENT_CERTIFICATE_C:
        str = "2SCC_C";
        break;
    case SSL2_ST_SEND_CLIENT_CERTIFICATE_D:
        str = "2SCC_D";
        break;
    case SSL2_ST_GET_SERVER_VERIFY_A:
        str = "2GSV_A";
        break;
    case SSL2_ST_GET_SERVER_VERIFY_B:
        str = "2GSV_B";
        break;
    case SSL2_ST_GET_SERVER_FINISHED_A:
        str = "2GSF_A";
        break;
    case SSL2_ST_GET_SERVER_FINISHED_B:
        str = "2GSF_B";
        break;
    case SSL2_ST_GET_CLIENT_HELLO_A:
        str = "2GCH_A";
        break;
    case SSL2_ST_GET_CLIENT_HELLO_B:
        str = "2GCH_B";
        break;
    case SSL2_ST_GET_CLIENT_HELLO_C:
        str = "2GCH_C";
        break;
    case SSL2_ST_SEND_SERVER_HELLO_A:
        str = "2SSH_A";
        break;
    case SSL2_ST_SEND_SERVER_HELLO_B:
        str = "2SSH_B";
        break;
    case SSL2_ST_GET_CLIENT_MASTER_KEY_A:
        str = "2GCMKA";
        break;
    case SSL2_ST_GET_CLIENT_MASTER_KEY_B:
        str = "2GCMKA";
        break;
    case SSL2_ST_SEND_SERVER_VERIFY_A:
        str = "2SSV_A";
        break;
    case SSL2_ST_SEND_SERVER_VERIFY_B:
        str = "2SSV_B";
        break;
    case SSL2_ST_SEND_SERVER_VERIFY_C:
        str = "2SSV_C";
        break;
    case SSL2_ST_GET_CLIENT_FINISHED_A:
        str = "2GCF_A";
        break;
    case SSL2_ST_GET_CLIENT_FINISHED_B:
        str = "2GCF_B";
        break;
    case SSL2_ST_SEND_SERVER_FINISHED_A:
        str = "2SSF_A";
        break;
    case SSL2_ST_SEND_SERVER_FINISHED_B:
        str = "2SSF_B";
        break;
    case SSL2_ST_SEND_REQUEST_CERTIFICATE_A:
        str = "2SRC_A";
        break;
    case SSL2_ST_SEND_REQUEST_CERTIFICATE_B:
        str = "2SRC_B";
        break;
    case SSL2_ST_SEND_REQUEST_CERTIFICATE_C:
        str = "2SRC_C";
        break;
    case SSL2_ST_SEND_REQUEST_CERTIFICATE_D:
        str = "2SRC_D";
        break;
    case SSL2_ST_X509_GET_SERVER_CERTIFICATE:
        str = "2X9GSC";
        break;
    case SSL2_ST_X509_GET_CLIENT_CERTIFICATE:
        str = "2X9GCC";
        break;
#endif

#ifndef OPENSSL_NO_SSL3
/* SSLv3 additions */
    case SSL3_ST_SW_FLUSH:
    case SSL3_ST_CW_FLUSH:
        str = "3FLUSH";
        break;
    case SSL3_ST_CW_CLNT_HELLO_A:
        str = "3WCH_A";
        break;
    case SSL3_ST_CW_CLNT_HELLO_B:
        str = "3WCH_B";
        break;
    case SSL3_ST_CR_SRVR_HELLO_A:
        str = "3RSH_A";
        break;
    case SSL3_ST_CR_SRVR_HELLO_B:
        str = "3RSH_B";
        break;
    case SSL3_ST_CR_CERT_A:
        str = "3RSC_A";
        break;
    case SSL3_ST_CR_CERT_B:
        str = "3RSC_B";
        break;
    case SSL3_ST_CR_KEY_EXCH_A:
        str = "3RSKEA";
        break;
    case SSL3_ST_CR_KEY_EXCH_B:
        str = "3RSKEB";
        break;
    case SSL3_ST_CR_CERT_REQ_A:
        str = "3RCR_A";
        break;
    case SSL3_ST_CR_CERT_REQ_B:
        str = "3RCR_B";
        break;
    case SSL3_ST_CR_SRVR_DONE_A:
        str = "3RSD_A";
        break;
    case SSL3_ST_CR_SRVR_DONE_B:
        str = "3RSD_B";
        break;
    case SSL3_ST_CW_CERT_A:
        str = "3WCC_A";
        break;
    case SSL3_ST_CW_CERT_B:
        str = "3WCC_B";
        break;
    case SSL3_ST_CW_CERT_C:
        str = "3WCC_C";
        break;
    case SSL3_ST_CW_CERT_D:
        str = "3WCC_D";
        break;
    case SSL3_ST_CW_KEY_EXCH_A:
        str = "3WCKEA";
        break;
    case SSL3_ST_CW_KEY_EXCH_B:
        str = "3WCKEB";
        break;
    case SSL3_ST_CW_CERT_VRFY_A:
        str = "3WCV_A";
        break;
    case SSL3_ST_CW_CERT_VRFY_B:
        str = "3WCV_B";
        break;

    case SSL3_ST_SW_CHANGE_A:
    case SSL3_ST_CW_CHANGE_A:
        str = "3WCCSA";
        break;
    case SSL3_ST_SW_CHANGE_B:
    case SSL3_ST_CW_CHANGE_B:
        str = "3WCCSB";
        break;
    case SSL3_ST_SW_FINISHED_A:
    case SSL3_ST_CW_FINISHED_A:
        str = "3WFINA";
        break;
    case SSL3_ST_SW_FINISHED_B:
    case SSL3_ST_CW_FINISHED_B:
        str = "3WFINB";
        break;
    case SSL3_ST_SR_CHANGE_A:
    case SSL3_ST_CR_CHANGE_A:
        str = "3RCCSA";
        break;
    case SSL3_ST_SR_CHANGE_B:
    case SSL3_ST_CR_CHANGE_B:
        str = "3RCCSB";
        break;
    case SSL3_ST_SR_FINISHED_A:
    case SSL3_ST_CR_FINISHED_A:
        str = "3RFINA";
        break;
    case SSL3_ST_SR_FINISHED_B:
    case SSL3_ST_CR_FINISHED_B:
        str = "3RFINB";
        break;

    case SSL3_ST_SW_HELLO_REQ_A:
        str = "3WHR_A";
        break;
    case SSL3_ST_SW_HELLO_REQ_B:
        str = "3WHR_B";
        break;
    case SSL3_ST_SW_HELLO_REQ_C:
        str = "3WHR_C";
        break;
    case SSL3_ST_SR_CLNT_HELLO_A:
        str = "3RCH_A";
        break;
    case SSL3_ST_SR_CLNT_HELLO_B:
        str = "3RCH_B";
        break;
    case SSL3_ST_SR_CLNT_HELLO_C:
        str = "3RCH_C";
        break;
    case SSL3_ST_SW_SRVR_HELLO_A:
        str = "3WSH_A";
        break;
    case SSL3_ST_SW_SRVR_HELLO_B:
        str = "3WSH_B";
        break;
    case SSL3_ST_SW_CERT_A:
        str = "3WSC_A";
        break;
    case SSL3_ST_SW_CERT_B:
        str = "3WSC_B";
        break;
    case SSL3_ST_SW_KEY_EXCH_A:
        str = "3WSKEA";
        break;
    case SSL3_ST_SW_KEY_EXCH_B:
        str = "3WSKEB";
        break;
    case SSL3_ST_SW_CERT_REQ_A:
        str = "3WCR_A";
        break;
    case SSL3_ST_SW_CERT_REQ_B:
        str = "3WCR_B";
        break;
    case SSL3_ST_SW_SRVR_DONE_A:
        str = "3WSD_A";
        break;
    case SSL3_ST_SW_SRVR_DONE_B:
        str = "3WSD_B";
        break;
    case SSL3_ST_SR_CERT_A:
        str = "3RCC_A";
        break;
    case SSL3_ST_SR_CERT_B:
        str = "3RCC_B";
        break;
    case SSL3_ST_SR_KEY_EXCH_A:
        str = "3RCKEA";
        break;
    case SSL3_ST_SR_KEY_EXCH_B:
        str = "3RCKEB";
        break;
    case SSL3_ST_SR_CERT_VRFY_A:
        str = "3RCV_A";
        break;
    case SSL3_ST_SR_CERT_VRFY_B:
        str = "3RCV_B";
        break;
#endif

/* SSLv2/v3 compatibility states */
/* client */
    case SSL23_ST_CW_CLNT_HELLO_A:
        str = "23WCHA";
        break;
    case SSL23_ST_CW_CLNT_HELLO_B:
        str = "23WCHB";
        break;
    case SSL23_ST_CR_SRVR_HELLO_A:
        str = "23RSHA";
        break;
    case SSL23_ST_CR_SRVR_HELLO_B:
        str = "23RSHA";
        break;
/* server */
    case SSL23_ST_SR_CLNT_HELLO_A:
        str = "23RCHA";
        break;
    case SSL23_ST_SR_CLNT_HELLO_B:
        str = "23RCHB";
        break;

/* DTLS */
    case DTLS1_ST_CR_HELLO_VERIFY_REQUEST_A:
        str = "DRCHVA";
        break;
    case DTLS1_ST_CR_HELLO_VERIFY_REQUEST_B:
        str = "DRCHVB";
        break;
    case DTLS1_ST_SW_HELLO_VERIFY_REQUEST_A:
        str = "DWCHVA";
        break;
    case DTLS1_ST_SW_HELLO_VERIFY_REQUEST_B:
        str = "DWCHVB";
        break;

    default:
        str = "UNKWN ";
        break;
    }
    return (str);
}

const char *SSL_alert_type_string_long(int value)
{
    value >>= 8;
    if (value == SSL3_AL_WARNING)
        return ("warning");
    else if (value == SSL3_AL_FATAL)
        return ("fatal");
    else
        return ("unknown");
}

const char *SSL_alert_type_string(int value)
{
    value >>= 8;
    if (value == SSL3_AL_WARNING)
        return ("W");
    else if (value == SSL3_AL_FATAL)
        return ("F");
    else
        return ("U");
}

const char *SSL_alert_desc_string(int value)
{
    const char *str;

    switch (value & 0xff) {
    case SSL3_AD_CLOSE_NOTIFY:
        str = "CN";
        break;
    case SSL3_AD_UNEXPECTED_MESSAGE:
        str = "UM";
        break;
    case SSL3_AD_BAD_RECORD_MAC:
        str = "BM";
        break;
    case SSL3_AD_DECOMPRESSION_FAILURE:
        str = "DF";
        break;
    case SSL3_AD_HANDSHAKE_FAILURE:
        str = "HF";
        break;
    case SSL3_AD_NO_CERTIFICATE:
        str = "NC";
        break;
    case SSL3_AD_BAD_CERTIFICATE:
        str = "BC";
        break;
    case SSL3_AD_UNSUPPORTED_CERTIFICATE:
        str = "UC";
        break;
    case SSL3_AD_CERTIFICATE_REVOKED:
        str = "CR";
        break;
    case SSL3_AD_CERTIFICATE_EXPIRED:
        str = "CE";
        break;
    case SSL3_AD_CERTIFICATE_UNKNOWN:
        str = "CU";
        break;
    case SSL3_AD_ILLEGAL_PARAMETER:
        str = "IP";
        break;
    case TLS1_AD_DECRYPTION_FAILED:
        str = "DC";
        break;
    case TLS1_AD_RECORD_OVERFLOW:
        str = "RO";
        break;
    case TLS1_AD_UNKNOWN_CA:
        str = "CA";
        break;
    case TLS1_AD_ACCESS_DENIED:
        str = "AD";
        break;
    case TLS1_AD_DECODE_ERROR:
        str = "DE";
        break;
    case TLS1_AD_DECRYPT_ERROR:
        str = "CY";
        break;
    case TLS1_AD_EXPORT_RESTRICTION:
        str = "ER";
        break;
    case TLS1_AD_PROTOCOL_VERSION:
        str = "PV";
        break;
    case TLS1_AD_INSUFFICIENT_SECURITY:
        str = "IS";
        break;
    case TLS1_AD_INTERNAL_ERROR:
        str = "IE";
        break;
    case TLS1_AD_USER_CANCELLED:
        str = "US";
        break;
    case TLS1_AD_NO_RENEGOTIATION:
        str = "NR";
        break;
    case TLS1_AD_UNSUPPORTED_EXTENSION:
        str = "UE";
        break;
    case TLS1_AD_CERTIFICATE_UNOBTAINABLE:
        str = "CO";
        break;
    case TLS1_AD_UNRECOGNIZED_NAME:
        str = "UN";
        break;
    case TLS1_AD_BAD_CERTIFICATE_STATUS_RESPONSE:
        str = "BR";
        break;
    case TLS1_AD_BAD_CERTIFICATE_HASH_VALUE:
        str = "BH";
        break;
    case TLS1_AD_UNKNOWN_PSK_IDENTITY:
        str = "UP";
        break;
    default:
        str = "UK";
        break;
    }
    return (str);
}

const char *SSL_alert_desc_string_long(int value)
{
    const char *str;

    switch (value & 0xff) {
    case SSL3_AD_CLOSE_NOTIFY:
        str = "close notify";
        break;
    case SSL3_AD_UNEXPECTED_MESSAGE:
        str = "unexpected_message";
        break;
    case SSL3_AD_BAD_RECORD_MAC:
        str = "bad record mac";
        break;
    case SSL3_AD_DECOMPRESSION_FAILURE:
        str = "decompression failure";
        break;
    case SSL3_AD_HANDSHAKE_FAILURE:
        str = "handshake failure";
        break;
    case SSL3_AD_NO_CERTIFICATE:
        str = "no certificate";
        break;
    case SSL3_AD_BAD_CERTIFICATE:
        str = "bad certificate";
        break;
    case SSL3_AD_UNSUPPORTED_CERTIFICATE:
        str = "unsupported certificate";
        break;
    case SSL3_AD_CERTIFICATE_REVOKED:
        str = "certificate revoked";
        break;
    case SSL3_AD_CERTIFICATE_EXPIRED:
        str = "certificate expired";
        break;
    case SSL3_AD_CERTIFICATE_UNKNOWN:
        str = "certificate unknown";
        break;
    case SSL3_AD_ILLEGAL_PARAMETER:
        str = "illegal parameter";
        break;
    case TLS1_AD_DECRYPTION_FAILED:
        str = "decryption failed";
        break;
    case TLS1_AD_RECORD_OVERFLOW:
        str = "record overflow";
        break;
    case TLS1_AD_UNKNOWN_CA:
        str = "unknown CA";
        break;
    case TLS1_AD_ACCESS_DENIED:
        str = "access denied";
        break;
    case TLS1_AD_DECODE_ERROR:
        str = "decode error";
        break;
    case TLS1_AD_DECRYPT_ERROR:
        str = "decrypt error";
        break;
    case TLS1_AD_EXPORT_RESTRICTION:
        str = "export restriction";
        break;
    case TLS1_AD_PROTOCOL_VERSION:
        str = "protocol version";
        break;
    case TLS1_AD_INSUFFICIENT_SECURITY:
        str = "insufficient security";
        break;
    case TLS1_AD_INTERNAL_ERROR:
        str = "internal error";
        break;
    case TLS1_AD_USER_CANCELLED:
        str = "user canceled";
        break;
    case TLS1_AD_NO_RENEGOTIATION:
        str = "no renegotiation";
        break;
    case TLS1_AD_UNSUPPORTED_EXTENSION:
        str = "unsupported extension";
        break;
    case TLS1_AD_CERTIFICATE_UNOBTAINABLE:
        str = "certificate unobtainable";
        break;
    case TLS1_AD_UNRECOGNIZED_NAME:
        str = "unrecognized name";
        break;
    case TLS1_AD_BAD_CERTIFICATE_STATUS_RESPONSE:
        str = "bad certificate status response";
        break;
    case TLS1_AD_BAD_CERTIFICATE_HASH_VALUE:
        str = "bad certificate hash value";
        break;
    case TLS1_AD_UNKNOWN_PSK_IDENTITY:
        str = "unknown PSK identity";
        break;
    default:
        str = "unknown";
        break;
    }
    return (str);
}

const char *SSL_rstate_string(const SSL *s)
{
    const char *str;

    switch (s->rstate) {
    case SSL_ST_READ_HEADER:
        str = "RH";
        break;
    case SSL_ST_READ_BODY:
        str = "RB";
        break;
    case SSL_ST_READ_DONE:
        str = "RD";
        break;
    default:
        str = "unknown";
        break;
    }
    return (str);
}