Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Nettle
nettle
Commits
2c110b9c
Commit
2c110b9c
authored
Feb 25, 2004
by
Niels Möller
Browse files
(des_cbc_cksum): Dereference DST pointer.
Rev: src/nettle/des-compat.c:1.11
parent
13595b53
Changes
1
Hide whitespace changes
Inline
Side-by-side
des-compat.c
View file @
2c110b9c
...
...
@@ -92,7 +92,7 @@ des_cbc_cksum(des_cblock *src, des_cblock *dst,
memxor
(
block
,
p
,
DES_BLOCK_SIZE
);
nettle_des_encrypt
(
ctx
,
DES_BLOCK_SIZE
,
block
,
block
);
}
memcpy
(
dst
,
block
,
DES_BLOCK_SIZE
);
memcpy
(
*
dst
,
block
,
DES_BLOCK_SIZE
);
return
LE_READ_UINT32
(
block
+
4
);
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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