git.stg.codes
/
stg.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Disable cppcheck for foreign libs by default.
[stg.git]
/
tests
/
test_crypto.cpp
diff --git
a/tests/test_crypto.cpp
b/tests/test_crypto.cpp
index d7040f4e77d83df463dfae38da1eb7b3844eec60..902955cfae26c776dc22fd1114020ce1bded682a 100644
(file)
--- a/
tests/test_crypto.cpp
+++ b/
tests/test_crypto.cpp
@@
-19,18
+19,17
@@
namespace
bool equalCtx(const BLOWFISH_CTX& a, const BLOWFISH_CTX& b)
{
bool equalCtx(const BLOWFISH_CTX& a, const BLOWFISH_CTX& b)
{
- for (size_t i = 0; i <
sizeof(a.P)
; ++i)
+ for (size_t i = 0; i <
18
; ++i)
if (a.P[i] != b.P[i])
{
if (a.P[i] != b.P[i])
{
- printf("Failed for P at %ld: 0
%x != 0
%x\n", i, a.P[i], b.P[i]);
+ printf("Failed for P at %ld: 0
x%x != 0x
%x\n", i, a.P[i], b.P[i]);
return false;
}
for (size_t i = 0; i < 4; ++i)
for (size_t j = 0; j < 256; ++j)
if (a.S[i][j] != b.S[i][j])
{
return false;
}
for (size_t i = 0; i < 4; ++i)
for (size_t j = 0; j < 256; ++j)
if (a.S[i][j] != b.S[i][j])
{
- printf("Failed for S at %ld, %ld: 0%x != 0%x\n", i, j, a.S[i][j], b.S[i][j]);
-
+ printf("Failed for S at %ld, %ld: 0x%x != 0x%x\n", i, j, a.S[i][j], b.S[i][j]);
return false;
}
return true;
return false;
}
return true;