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
Dmitry Baryshkov
nettle
Commits
af9fb1cd
Commit
af9fb1cd
authored
Sep 25, 2001
by
Niels Möller
Browse files
* des-compat.c (des_cbc_cksum): Bug fix, local variable was
declared in the middle of a block. Rev: src/nettle/des-compat.c:1.6
parent
6aa9a064
Changes
1
Hide whitespace changes
Inline
Side-by-side
des-compat.c
View file @
af9fb1cd
...
...
@@ -76,9 +76,9 @@ des_cbc_cksum(des_cblock *src, des_cblock *dst,
* work, in particular what it should return, and if iv can be
* modified. */
uint8_t
block
[
DES_BLOCK_SIZE
];
memcpy
(
block
,
*
iv
,
DES_BLOCK_SIZE
);
uint8_t
*
p
;
memcpy
(
block
,
*
iv
,
DES_BLOCK_SIZE
);
assert
(
!
(
length
%
DES_BLOCK_SIZE
));
...
...
Write
Preview
Supports
Markdown
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