projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5c468f0
)
gosthash.c: use memmove in circle_xor8, as input pointers can be equal
author
Andy Polyakov
<appro@openssl.org>
Mon, 13 Aug 2012 16:39:42 +0000
(16:39 +0000)
committer
Andy Polyakov
<appro@openssl.org>
Mon, 13 Aug 2012 16:39:42 +0000
(16:39 +0000)
[from HEAD].
PR: 2858
engines/ccgost/gosthash.c
patch
|
blob
|
history
diff --git
a/engines/ccgost/gosthash.c
b/engines/ccgost/gosthash.c
index a5c0662ffc32f35ff7d3f8d812d3b8d8fa98b302..8c278aa6452e1e80555f79d442eff45d1e7be22c 100644
(file)
--- a/
engines/ccgost/gosthash.c
+++ b/
engines/ccgost/gosthash.c
@@
-42,7
+42,7
@@
static void circle_xor8 (const byte *w, byte *k)
byte buf[8];
int i;
memcpy(buf,w,8);
- mem
cpy
(k,w+8,24);
+ mem
move
(k,w+8,24);
for(i=0;i<8;i++)
k[i+24]=buf[i]^k[i];
}