From 12378d4872c7b522a9f6ea4ac362780bae97ce91 Mon Sep 17 00:00:00 2001 From: Eric Christopher Date: Thu, 30 May 2013 00:43:26 +0000 Subject: [PATCH] Add a comment and some tests including the NULL byte. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@182900 91177308-0d34-0410-b5e6-96231b3b80d8 --- unittests/Support/MD5Test.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/unittests/Support/MD5Test.cpp b/unittests/Support/MD5Test.cpp index 159ae3e4631..6afaa15c27b 100644 --- a/unittests/Support/MD5Test.cpp +++ b/unittests/Support/MD5Test.cpp @@ -19,6 +19,7 @@ using namespace llvm; namespace { +/// \brief Tests an arbitrary set of bytes passed as \p Input. void TestMD5Sum(ArrayRef Input, StringRef Final) { MD5 Hash; Hash.update(Input); @@ -38,5 +39,13 @@ TEST(MD5Test, MD5) { (const unsigned char *)"abcdefghijklmnopqrstuvwxyz", (size_t) 26), "c3fcd3d76192e4007dfb496cca67e13b"); + TestMD5Sum(ArrayRef((const unsigned char *)"\0", (size_t) 1), + "93b885adfe0da089cdf634904fd59f71"); + TestMD5Sum(ArrayRef((const unsigned char *)"a\0", (size_t) 2), + "4144e195f46de78a3623da7364d04f11"); + TestMD5Sum(ArrayRef( + (const unsigned char *)"abcdefghijklmnopqrstuvwxyz\0", + (size_t) 27), + "81948d1f1554f58cd1a56ebb01f808cb"); } } -- 2.34.1