Fixed const correctness issues that have no impact on the ABI
(cherry picked from commit eae09db9e5
)
Conflicts:
library/gcm.c
This commit is contained in:
parent
2013950545
commit
3c2122ff9d
12 changed files with 60 additions and 69 deletions
library
|
@ -143,7 +143,7 @@ int arc4_self_test( int verbose )
|
|||
|
||||
memcpy( ibuf, arc4_test_pt[i], 8 );
|
||||
|
||||
arc4_setup( &ctx, (unsigned char *) arc4_test_key[i], 8 );
|
||||
arc4_setup( &ctx, arc4_test_key[i], 8 );
|
||||
arc4_crypt( &ctx, 8, ibuf, obuf );
|
||||
|
||||
if( memcmp( obuf, arc4_test_ct[i], 8 ) != 0 )
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue