Skip to content
Snippets Groups Projects
Commit 98628958 authored by Brad King's avatar Brad King
Browse files

Avoid word 'Copyright' in KWSys MD5 encode test

We replace the test text in the kwsys.testEncode test to avoid the word
'Copyright'.  This simplifies grep results for Copyright verification.
parent f71bac73
No related branches found
No related tags found
No related merge requests found
......@@ -7,4 +7,4 @@ SET(KWSYS_DATE_STAMP_YEAR 2009)
SET(KWSYS_DATE_STAMP_MONTH 09)
# KWSys version date day component. Format is DD.
SET(KWSYS_DATE_STAMP_DAY 24)
SET(KWSYS_DATE_STAMP_DAY 25)
......@@ -24,9 +24,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";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment