1. 15 Apr, 2019 4 commits
  2. 14 Apr, 2019 1 commit
  3. 10 Apr, 2019 5 commits
  4. 09 Apr, 2019 1 commit
  5. 08 Apr, 2019 1 commit
  6. 06 Apr, 2019 1 commit
  7. 05 Apr, 2019 2 commits
  8. 04 Apr, 2019 1 commit
  9. 03 Apr, 2019 1 commit
  10. 02 Apr, 2019 3 commits
  11. 31 Mar, 2019 1 commit
  12. 30 Mar, 2019 1 commit
  13. 29 Mar, 2019 4 commits
  14. 28 Mar, 2019 3 commits
  15. 27 Mar, 2019 5 commits
  16. 25 Mar, 2019 1 commit
  17. 22 Mar, 2019 3 commits
  18. 21 Mar, 2019 1 commit
  19. 20 Mar, 2019 1 commit
    • Lorinczy Zsigmond's avatar
      Reorganized signature-scheme detection in 'apps/s_cb.c:security_callback_debug' callback-function. · 67114934
      Lorinczy Zsigmond authored
      
      
      So far, it only handled hash-and-algorithm pairs from TLS1.2,
      now it also handles 'schemes' defined in TLS1.3 like 0x0807=ed25519 or
      0x0809=rsa_pss_pss_sha256
      
      Now it prints information in one of these formats:
      
      ... Algorithm scheme=ecdsa_secp256r1_sha256, security bits=128 ... TLS1.3
      ... Algorithm digest=SHA384, algorithm=DSA, security bits=192  ... TLS1.2
      ... Algorithm scheme=unknown(0x0e01), security bits=128        ... unhandled case
      
      To implement this added three new lookup-tables: signature_tls13_scheme_list,
      signature_tls12_alg_list, signature_tls12_hash_list.
      
      Also minor changes in 'security_callback_debug', eg adding variable 'show_nm'
      to indicate if we should show 'nm'.
      
      Also coding-styles fixes from matcaswell
      
      Reviewed-by: default avatarPaul Dale <paul.dale@oracle.com>
      Reviewed-by: default avatarMatt Caswell <matt@openssl.org>
      (Merged from https://github.com/openssl/openssl/pull/8445)
      
      (cherry picked from commit 861e45624fe5f16adb11e041a7ac7a1b3229d756)
      67114934