Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Wim Lewis
nettle
Commits
dcb4eb36
Commit
dcb4eb36
authored
Jan 07, 2011
by
Niels Möller
Browse files
(test_cipher_stream): More debug output on failure.
Rev: nettle/testsuite/testutils.c:1.11
parent
eca24336
Changes
1
Hide whitespace changes
Inline
Side-by-side
testsuite/testutils.c
View file @
dcb4eb36
...
...
@@ -321,12 +321,22 @@ test_cipher_stream(const struct nettle_cipher *cipher,
if
(
data
[
i
+
block
]
!=
0x17
)
FAIL
();
}
cipher
->
encrypt
(
ctx
,
length
-
i
,
data
+
i
,
cleartext
+
i
);
if
(
data
[
length
]
!=
0x17
)
FAIL
();
if
(
!
MEMEQ
(
length
,
data
,
ciphertext
))
FAIL
();
{
fprintf
(
stderr
,
"Encrypt failed, block size %d
\n
Input:"
,
block
);
print_hex
(
length
,
cleartext
);
fprintf
(
stderr
,
"
\n
Output: "
);
print_hex
(
length
,
data
);
fprintf
(
stderr
,
"
\n
Expected:"
);
print_hex
(
length
,
ciphertext
);
fprintf
(
stderr
,
"
\n
"
);
FAIL
();
}
}
cipher
->
set_decrypt_key
(
ctx
,
key_length
,
key
);
...
...
@@ -336,7 +346,16 @@ test_cipher_stream(const struct nettle_cipher *cipher,
FAIL
();
if
(
!
MEMEQ
(
length
,
data
,
cleartext
))
FAIL
();
{
fprintf
(
stderr
,
"Decrypt failed
\n
Input:"
);
print_hex
(
length
,
ciphertext
);
fprintf
(
stderr
,
"
\n
Output: "
);
print_hex
(
length
,
data
);
fprintf
(
stderr
,
"
\n
Expected:"
);
print_hex
(
length
,
cleartext
);
fprintf
(
stderr
,
"
\n
"
);
FAIL
();
}
free
(
ctx
);
free
(
data
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment