Remove unnecessary casts.
This commit is contained in:
parent
601cb9be20
commit
d7a9e91688
@ -69,7 +69,7 @@ void BF_set_key(BF_KEY *key, int len, const unsigned char *data)
|
|||||||
const unsigned char *d,*end;
|
const unsigned char *d,*end;
|
||||||
|
|
||||||
|
|
||||||
memcpy((char *)key,(char *)&bf_init,sizeof(BF_KEY));
|
memcpy(key,&bf_init,sizeof(BF_KEY));
|
||||||
p=key->P;
|
p=key->P;
|
||||||
|
|
||||||
if (len > ((BF_ROUNDS+2)*4)) len=(BF_ROUNDS+2)*4;
|
if (len > ((BF_ROUNDS+2)*4)) len=(BF_ROUNDS+2)*4;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user