mdc2test.c 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. /*
  2. * Copyright 1995-2017 The OpenSSL Project Authors. All Rights Reserved.
  3. *
  4. * Licensed under the Apache License 2.0 (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. #include <string.h>
  10. #include <openssl/provider.h>
  11. #include <openssl/params.h>
  12. #include <openssl/types.h>
  13. #include <openssl/core_names.h>
  14. #include "internal/nelem.h"
  15. #include "testutil.h"
  16. #if defined(OPENSSL_NO_DES) && !defined(OPENSSL_NO_MDC2)
  17. # define OPENSSL_NO_MDC2
  18. #endif
  19. #ifndef OPENSSL_NO_MDC2
  20. # include <openssl/evp.h>
  21. # include <openssl/mdc2.h>
  22. # ifdef CHARSET_EBCDIC
  23. # include <openssl/ebcdic.h>
  24. # endif
  25. static unsigned char pad1[16] = {
  26. 0x42, 0xE5, 0x0C, 0xD2, 0x24, 0xBA, 0xCE, 0xBA,
  27. 0x76, 0x0B, 0xDD, 0x2B, 0xD4, 0x09, 0x28, 0x1A
  28. };
  29. static unsigned char pad2[16] = {
  30. 0x2E, 0x46, 0x79, 0xB5, 0xAD, 0xD9, 0xCA, 0x75,
  31. 0x35, 0xD8, 0x7A, 0xFE, 0xAB, 0x33, 0xBE, 0xE2
  32. };
  33. static int test_mdc2(void)
  34. {
  35. int testresult = 0;
  36. unsigned int pad_type = 2;
  37. unsigned char md[MDC2_DIGEST_LENGTH];
  38. EVP_MD_CTX *c;
  39. static char text[] = "Now is the time for all ";
  40. size_t tlen = strlen(text), i = 0;
  41. OSSL_PROVIDER *prov = NULL;
  42. OSSL_PARAM params[2];
  43. params[i++] = OSSL_PARAM_construct_uint(OSSL_DIGEST_PARAM_PAD_TYPE,
  44. &pad_type),
  45. params[i++] = OSSL_PARAM_construct_end();
  46. prov = OSSL_PROVIDER_load(NULL, "legacy");
  47. # ifdef CHARSET_EBCDIC
  48. ebcdic2ascii(text, text, tlen);
  49. # endif
  50. c = EVP_MD_CTX_new();
  51. if (!TEST_ptr(c)
  52. || !TEST_true(EVP_DigestInit_ex(c, EVP_mdc2(), NULL))
  53. || !TEST_true(EVP_DigestUpdate(c, (unsigned char *)text, tlen))
  54. || !TEST_true(EVP_DigestFinal_ex(c, &(md[0]), NULL))
  55. || !TEST_mem_eq(md, MDC2_DIGEST_LENGTH, pad1, MDC2_DIGEST_LENGTH)
  56. || !TEST_true(EVP_DigestInit_ex(c, EVP_mdc2(), NULL)))
  57. goto end;
  58. if (!TEST_int_gt(EVP_MD_CTX_set_params(c, params), 0)
  59. || !TEST_true(EVP_DigestUpdate(c, (unsigned char *)text, tlen))
  60. || !TEST_true(EVP_DigestFinal_ex(c, &(md[0]), NULL))
  61. || !TEST_mem_eq(md, MDC2_DIGEST_LENGTH, pad2, MDC2_DIGEST_LENGTH))
  62. goto end;
  63. testresult = 1;
  64. end:
  65. EVP_MD_CTX_free(c);
  66. OSSL_PROVIDER_unload(prov);
  67. return testresult;
  68. }
  69. #endif
  70. int setup_tests(void)
  71. {
  72. #ifndef OPENSSL_NO_MDC2
  73. ADD_TEST(test_mdc2);
  74. #endif
  75. return 1;
  76. }