You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

55 lines
1.4KB

  1. /*
  2. * This file is part of Libav.
  3. *
  4. * Libav is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU Lesser General Public
  6. * License as published by the Free Software Foundation; either
  7. * version 2.1 of the License, or (at your option) any later version.
  8. *
  9. * Libav is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. * Lesser General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU Lesser General Public
  15. * License along with Libav; if not, write to the Free Software
  16. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  17. */
  18. #include <stdint.h>
  19. #include <stdio.h>
  20. #include "libavutil/md5.h"
  21. static void print_md5(uint8_t *md5)
  22. {
  23. int i;
  24. for (i = 0; i < 16; i++)
  25. printf("%02x", md5[i]);
  26. printf("\n");
  27. }
  28. int main(void)
  29. {
  30. uint8_t md5val[16];
  31. int i;
  32. uint8_t in[1000];
  33. for (i = 0; i < 1000; i++)
  34. in[i] = i * i;
  35. av_md5_sum(md5val, in, 1000);
  36. print_md5(md5val);
  37. av_md5_sum(md5val, in, 63);
  38. print_md5(md5val);
  39. av_md5_sum(md5val, in, 64);
  40. print_md5(md5val);
  41. av_md5_sum(md5val, in, 65);
  42. print_md5(md5val);
  43. for (i = 0; i < 1000; i++)
  44. in[i] = i % 127;
  45. av_md5_sum(md5val, in, 999);
  46. print_md5(md5val);
  47. return 0;
  48. }