md2test.c 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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 "internal/nelem.h"
  11. #include "testutil.h"
  12. #ifndef OPENSSL_NO_MD2
  13. # include <openssl/evp.h>
  14. # include <openssl/md2.h>
  15. # ifdef CHARSET_EBCDIC
  16. # include <openssl/ebcdic.h>
  17. # endif
  18. static char *test[] = {
  19. "",
  20. "a",
  21. "abc",
  22. "message digest",
  23. "abcdefghijklmnopqrstuvwxyz",
  24. "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789",
  25. "12345678901234567890123456789012345678901234567890123456789012345678901234567890",
  26. };
  27. static char *ret[] = {
  28. "8350e5a3e24c153df2275c9f80692773",
  29. "32ec01ec4a6dac72c0ab96fb34c0b5d1",
  30. "da853b0d3f88d99b30283a69e6ded6bb",
  31. "ab4f496bfb2a530b219ff33031fe06b0",
  32. "4e8ddff3650292ab5a4108c3aa47940b",
  33. "da33def2a42df13975352846c30338cd",
  34. "d5976f79d83d3a0dc9806c3c66f3efd8",
  35. };
  36. static int test_md2(int n)
  37. {
  38. char buf[80];
  39. unsigned char md[MD2_DIGEST_LENGTH];
  40. int i;
  41. if (!TEST_true(EVP_Digest((unsigned char *)test[n], strlen(test[n]),
  42. md, NULL, EVP_md2(), NULL)))
  43. return 0;
  44. for (i = 0; i < MD2_DIGEST_LENGTH; i++)
  45. sprintf(&(buf[i * 2]), "%02x", md[i]);
  46. if (!TEST_str_eq(buf, ret[n]))
  47. return 0;
  48. return 1;
  49. }
  50. #endif
  51. int setup_tests(void)
  52. {
  53. #ifndef OPENSSL_NO_MD2
  54. ADD_ALL_TESTS(test_md2, OSSL_NELEM(test));
  55. #endif
  56. return 1;
  57. }