Merge pull request #379 from libtom/pr/clang-tidy-misc-misplaced-widening-cast
clang-tidy: misc-misplaced-widening-cast (cherry picked from commit 248352c36f0352f8d7cb202499e825900af76151) With back-ported patch from src/misc/copy_or_zeromem.c back to src/encauth/ccm/ccm_memory.c
This commit is contained in:
parent
00dfe66081
commit
d16e5b0b05
@ -52,7 +52,7 @@ int ccm_memory(int cipher,
|
||||
int err;
|
||||
unsigned long len, L, x, y, z, CTRlen;
|
||||
#ifdef LTC_FAST
|
||||
LTC_FAST_TYPE fastMask = ~0; /* initialize fastMask at all zeroes */
|
||||
LTC_FAST_TYPE fastMask = ~(LTC_FAST_TYPE)0; /* initialize fastMask at all zeroes */
|
||||
#endif
|
||||
unsigned char mask = 0xff; /* initialize mask at all zeroes */
|
||||
|
||||
|
@ -69,7 +69,7 @@ int dsa_export(unsigned char *out, unsigned long *outlen, int type, dsa_key *key
|
||||
}
|
||||
} else {
|
||||
if (std) {
|
||||
unsigned long tmplen = (mp_count_bits(key->y) / 8) + 8;
|
||||
unsigned long tmplen = (unsigned long)(mp_count_bits(key->y) / 8) + 8;
|
||||
unsigned char* tmp = XMALLOC(tmplen);
|
||||
ltc_asn1_list int_list[3];
|
||||
|
||||
|
@ -72,8 +72,8 @@ static int _dsa_make_params(prng_state *prng, int wprng, int group_size, int mod
|
||||
*/
|
||||
|
||||
seedbytes = group_size;
|
||||
L = modulus_size * 8;
|
||||
N = group_size * 8;
|
||||
L = (unsigned long)modulus_size * 8;
|
||||
N = (unsigned long)group_size * 8;
|
||||
|
||||
/* XXX-TODO no Lucas test */
|
||||
#ifdef LTC_MPI_HAS_LUCAS_TEST
|
||||
|
@ -58,7 +58,7 @@ int rsa_export(unsigned char *out, unsigned long *outlen, int type, rsa_key *key
|
||||
unsigned char* tmp = NULL;
|
||||
|
||||
if (type & PK_STD) {
|
||||
tmplen = (mp_count_bits(key->N)/8)*2+8;
|
||||
tmplen = (unsigned long)(mp_count_bits(key->N) / 8) * 2 + 8;
|
||||
tmp = XMALLOC(tmplen);
|
||||
ptmplen = &tmplen;
|
||||
if (tmp == NULL) {
|
||||
|
Loading…
Reference in New Issue
Block a user