diff options
Diffstat (limited to 'Source/kwsys/testEncode.c')
-rw-r--r-- | Source/kwsys/testEncode.c | 26 |
1 files changed, 12 insertions, 14 deletions
diff --git a/Source/kwsys/testEncode.c b/Source/kwsys/testEncode.c index fb576c4..26d483b 100644 --- a/Source/kwsys/testEncode.c +++ b/Source/kwsys/testEncode.c @@ -1,16 +1,14 @@ -/*========================================================================= +/*============================================================================ + KWSys - Kitware System Library + Copyright 2000-2009 Kitware, Inc., Insight Software Consortium - Program: KWSys - Kitware System Library - Module: $RCSfile$ + Distributed under the OSI-approved BSD License (the "License"); + see accompanying file Copyright.txt for details. - Copyright (c) Kitware, Inc., Insight Consortium. All rights reserved. - See Copyright.txt or http://www.kitware.com/Copyright.htm for details. - - This software is distributed WITHOUT ANY WARRANTY; without even - the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR - PURPOSE. See the above copyright notices for more information. - -=========================================================================*/ + This software is distributed WITHOUT ANY WARRANTY; without even the + implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + See the License for more information. +============================================================================*/ #include "kwsysPrivate.h" #include KWSYS_HEADER(MD5.h) @@ -24,9 +22,9 @@ #include <string.h> static const unsigned char testMD5input1[] = -" Copyright (c) Kitware, Inc., Insight Consortium. All rights reserved.\n" -" See Copyright.txt or http://www.kitware.com/Copyright.htm for details.\n"; -static const char testMD5output1[] = "04051e509e81ef0b1612ddf0e52ca89e"; +" A quick brown fox jumps over the lazy dog.\n" +" This is sample text for MD5 sum input.\n"; +static const char testMD5output1[] = "8f146af46ed4f267921bb937d4d3500c"; static const int testMD5input2len = 28; static const unsigned char testMD5input2[] = "the cow jumped over the moon"; |