ssl_cert_table_internal_test.c 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. /*
  2. * Copyright 2017-2018 The OpenSSL Project Authors. All Rights Reserved.
  3. *
  4. * Licensed under the OpenSSL license (the "License"). You may not use
  5. * this file except in compliance with the License. You can obtain a copy
  6. * in the file LICENSE in the source distribution or at
  7. * https://www.openssl.org/source/license.html
  8. */
  9. /* Internal tests for the x509 and x509v3 modules */
  10. #include <stdio.h>
  11. #include <string.h>
  12. #include <openssl/ssl.h>
  13. #include "testutil.h"
  14. #include "internal/nelem.h"
  15. #ifdef __VMS
  16. # pragma names save
  17. # pragma names as_is,shortened
  18. #endif
  19. #include "../ssl/ssl_locl.h"
  20. #include "../ssl/ssl_cert_table.h"
  21. #ifdef __VMS
  22. # pragma names restore
  23. #endif
  24. #define test_cert_table(nid, amask, idx) \
  25. do_test_cert_table(nid, amask, idx, #idx)
  26. static int do_test_cert_table(int nid, uint32_t amask, size_t idx,
  27. const char *idxname)
  28. {
  29. const SSL_CERT_LOOKUP *clu = &ssl_cert_info[idx];
  30. if (clu->nid == nid && clu->amask == amask)
  31. return 1;
  32. TEST_error("Invalid table entry for certificate type %s, index %zu",
  33. idxname, idx);
  34. if (clu->nid != nid)
  35. TEST_note("Expected %s, got %s\n", OBJ_nid2sn(nid),
  36. OBJ_nid2sn(clu->nid));
  37. if (clu->amask != amask)
  38. TEST_note("Expected auth mask 0x%x, got 0x%x\n", amask, clu->amask);
  39. return 0;
  40. }
  41. /* Sanity check of ssl_cert_table */
  42. static int test_ssl_cert_table(void)
  43. {
  44. TEST_size_t_eq(OSSL_NELEM(ssl_cert_info), SSL_PKEY_NUM);
  45. if (!test_cert_table(EVP_PKEY_RSA, SSL_aRSA, SSL_PKEY_RSA))
  46. return 0;
  47. if (!test_cert_table(EVP_PKEY_DSA, SSL_aDSS, SSL_PKEY_DSA_SIGN))
  48. return 0;
  49. if (!test_cert_table(EVP_PKEY_EC, SSL_aECDSA, SSL_PKEY_ECC))
  50. return 0;
  51. if (!test_cert_table(NID_id_GostR3410_2001, SSL_aGOST01, SSL_PKEY_GOST01))
  52. return 0;
  53. if (!test_cert_table(NID_id_GostR3410_2012_256, SSL_aGOST12,
  54. SSL_PKEY_GOST12_256))
  55. return 0;
  56. if (!test_cert_table(NID_id_GostR3410_2012_512, SSL_aGOST12,
  57. SSL_PKEY_GOST12_512))
  58. return 0;
  59. if (!test_cert_table(EVP_PKEY_ED25519, SSL_aECDSA, SSL_PKEY_ED25519))
  60. return 0;
  61. if (!test_cert_table(EVP_PKEY_ED448, SSL_aECDSA, SSL_PKEY_ED448))
  62. return 0;
  63. return 1;
  64. }
  65. int setup_tests(void)
  66. {
  67. ADD_TEST(test_ssl_cert_table);
  68. return 1;
  69. }