Skip to content

Commit 1a4b851

Browse files
MarcelRaadnoloader
authored andcommitted
Fix clang warnings (GH weidai11#771)
1 parent da2444d commit 1a4b851

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

authenc.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ class CRYPTOPP_DLL CRYPTOPP_NO_VTABLE AuthenticatedSymmetricCipherBase : public
6060

6161
void AuthenticateData(const byte *data, size_t len);
6262
const SymmetricCipher & GetSymmetricCipher() const
63-
{return const_cast<AuthenticatedSymmetricCipherBase *>(this)->AccessSymmetricCipher();};
63+
{return const_cast<AuthenticatedSymmetricCipherBase *>(this)->AccessSymmetricCipher();}
6464

6565
virtual SymmetricCipher & AccessSymmetricCipher() =0;
6666
virtual bool AuthenticationIsOnPlaintext() const =0;

ccm.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ class CRYPTOPP_DLL CRYPTOPP_NO_VTABLE CCM_Base : public AuthenticatedSymmetricCi
7373
virtual BlockCipher & AccessBlockCipher() =0;
7474
virtual int DefaultDigestSize() const =0;
7575

76-
const BlockCipher & GetBlockCipher() const {return const_cast<CCM_Base *>(this)->AccessBlockCipher();};
76+
const BlockCipher & GetBlockCipher() const {return const_cast<CCM_Base *>(this)->AccessBlockCipher();}
7777
byte *CBC_Buffer() {return m_buffer+REQUIRED_BLOCKSIZE;}
7878

7979
enum {REQUIRED_BLOCKSIZE = 16};

gcm.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ class CRYPTOPP_DLL CRYPTOPP_NO_VTABLE GCM_Base : public AuthenticatedSymmetricCi
8080
virtual BlockCipher & AccessBlockCipher() =0;
8181
virtual GCM_TablesOption GetTablesOption() const =0;
8282

83-
const BlockCipher & GetBlockCipher() const {return const_cast<GCM_Base *>(this)->AccessBlockCipher();};
83+
const BlockCipher & GetBlockCipher() const {return const_cast<GCM_Base *>(this)->AccessBlockCipher();}
8484
byte *HashBuffer() {return m_buffer+REQUIRED_BLOCKSIZE;}
8585
byte *HashKey() {return m_buffer+2*REQUIRED_BLOCKSIZE;}
8686
byte *MulTable() {return m_buffer+3*REQUIRED_BLOCKSIZE;}

misc.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -617,7 +617,7 @@ template <class T1, class T2> inline const T1 UnsignedMin(const T1& a, const T2&
617617
template <class T1, class T2>
618618
inline bool SafeConvert(T1 from, T2 &to)
619619
{
620-
to = (T2)from;
620+
to = static_cast<T2>(from);
621621
if (from != to || (from > 0) != (to > 0))
622622
return false;
623623
return true;

pubkey.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,7 @@ class CRYPTOPP_NO_VTABLE PK_SignatureMessageEncodingMethod
379379
{
380380
static HashIdentifier CRYPTOPP_API Lookup()
381381
{
382-
return HashIdentifier((const byte *)NULLPTR, 0);
382+
return HashIdentifier(static_cast<const byte *>(NULLPTR), 0);
383383
}
384384
};
385385
};

secblock.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -421,7 +421,7 @@ class FixedSizeAllocatorWithCleanup<T, S, A, true> : public AllocatorBase<T>
421421
CRYPTOPP_ASSERT(size <= S);
422422
CRYPTOPP_ASSERT(m_allocated);
423423
m_allocated = false;
424-
SecureWipeArray((pointer)ptr, size);
424+
SecureWipeArray(reinterpret_cast<pointer>(ptr), size);
425425
}
426426
else
427427
m_fallbackAllocator.deallocate(ptr, size);
@@ -503,7 +503,7 @@ class FixedSizeAllocatorWithCleanup<T, S, A, true> : public AllocatorBase<T>
503503
// The library is OK but users may hit it. So we need to guard
504504
// for a large T, and that is what PAD achieves.
505505
T* GetAlignedArray() {
506-
T* p_array = (T*)(void*)(((byte*)m_array) + (0-(size_t)m_array)%16);
506+
T* p_array = reinterpret_cast<T*>(static_cast<void*>((reinterpret_cast<byte*>(m_array)) + (0-reinterpret_cast<size_t>(m_array))%16));
507507
// Verify the 16-byte alignment
508508
CRYPTOPP_ASSERT(IsAlignedOn(p_array, 16));
509509
// Verify allocated array with pad is large enough.

seckey.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ class CRYPTOPP_NO_VTABLE SimpleKeyingInterfaceImpl : public BASE
265265
/// \brief The maximum key length used by the algorithm
266266
/// \returns maximum key length used by the algorithm, in bytes
267267
size_t MaxKeyLength() const
268-
{return (size_t)INFO::MAX_KEYLENGTH;}
268+
{return static_cast<size_t>(INFO::MAX_KEYLENGTH);}
269269

270270
/// \brief The default key length used by the algorithm
271271
/// \returns default key length used by the algorithm, in bytes
@@ -286,7 +286,7 @@ class CRYPTOPP_NO_VTABLE SimpleKeyingInterfaceImpl : public BASE
286286
/// \details The default value is NOT_RESYNCHRONIZABLE. See IV_Requirement
287287
/// in cryptlib.h for allowed values.
288288
SimpleKeyingInterface::IV_Requirement IVRequirement() const
289-
{return (SimpleKeyingInterface::IV_Requirement)INFO::IV_REQUIREMENT;}
289+
{return static_cast<SimpleKeyingInterface::IV_Requirement>(INFO::IV_REQUIREMENT);}
290290

291291
/// \brief The initialization vector length for the algorithm
292292
/// \details IVSize is provided in bytes, not bits. The default implementation uses

0 commit comments

Comments
 (0)