OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2013 Google Inc. | 2 * Copyright 2013 Google Inc. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
6 */ | 6 */ |
7 | 7 |
8 #include "Test.h" | 8 #include "Test.h" |
9 #include "TestClassDef.h" | |
10 #include "SkMD5.h" | 9 #include "SkMD5.h" |
11 | 10 |
12 static bool digests_equal(const SkMD5::Digest& expectedDigest, const SkMD5::Dige
st& computedDigest) { | 11 static bool digests_equal(const SkMD5::Digest& expectedDigest, const SkMD5::Dige
st& computedDigest) { |
13 for (size_t i = 0; i < SK_ARRAY_COUNT(expectedDigest.data); ++i) { | 12 for (size_t i = 0; i < SK_ARRAY_COUNT(expectedDigest.data); ++i) { |
14 if (expectedDigest.data[i] != computedDigest.data[i]) { | 13 if (expectedDigest.data[i] != computedDigest.data[i]) { |
15 return false; | 14 return false; |
16 } | 15 } |
17 } | 16 } |
18 return true; | 17 return true; |
19 } | 18 } |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 { "abcdefghijklmnopqrstuvwxyz", {{ 0xc3, 0xfc, 0xd3, 0xd7, 0x61, 0x92, 0xe4,
0x00, 0x7d, 0xfb, 0x49, 0x6c, 0xca, 0x67, 0xe1, 0x3b }} }, | 57 { "abcdefghijklmnopqrstuvwxyz", {{ 0xc3, 0xfc, 0xd3, 0xd7, 0x61, 0x92, 0xe4,
0x00, 0x7d, 0xfb, 0x49, 0x6c, 0xca, 0x67, 0xe1, 0x3b }} }, |
59 { "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789", {{ 0xd1,
0x74, 0xab, 0x98, 0xd2, 0x77, 0xd9, 0xf5, 0xa5, 0x61, 0x1c, 0x2c, 0x9f, 0x41, 0
x9d, 0x9f }} }, | 58 { "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789", {{ 0xd1,
0x74, 0xab, 0x98, 0xd2, 0x77, 0xd9, 0xf5, 0xa5, 0x61, 0x1c, 0x2c, 0x9f, 0x41, 0
x9d, 0x9f }} }, |
60 { "1234567890123456789012345678901234567890123456789012345678901234567890123
4567890", {{ 0x57, 0xed, 0xf4, 0xa2, 0x2b, 0xe3, 0xc9, 0x55, 0xac, 0x49, 0xda, 0
x2e, 0x21, 0x07, 0xb6, 0x7a }} }, | 59 { "1234567890123456789012345678901234567890123456789012345678901234567890123
4567890", {{ 0x57, 0xed, 0xf4, 0xa2, 0x2b, 0xe3, 0xc9, 0x55, 0xac, 0x49, 0xda, 0
x2e, 0x21, 0x07, 0xb6, 0x7a }} }, |
61 }; | 60 }; |
62 | 61 |
63 DEF_TEST(MD5, reporter) { | 62 DEF_TEST(MD5, reporter) { |
64 for (size_t i = 0; i < SK_ARRAY_COUNT(md5_tests); ++i) { | 63 for (size_t i = 0; i < SK_ARRAY_COUNT(md5_tests); ++i) { |
65 md5_test(md5_tests[i].message, md5_tests[i].digest, reporter); | 64 md5_test(md5_tests[i].message, md5_tests[i].digest, reporter); |
66 } | 65 } |
67 } | 66 } |
OLD | NEW |