Searched refs:macSize (Results 1 - 11 of 11) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/libcryptoxx-5.6.0/
H A Deax.cpp49 void EAX_Base::AuthenticateLastFooterBlock(byte *tag, size_t macSize) argument
55 mac.TruncatedFinal(m_buffer, macSize);
56 xorbuf(tag, m_buffer, m_buffer+blockSize, macSize);
H A Dauthenc.h24 void TruncatedFinal(byte *mac, size_t macSize);
38 virtual void AuthenticateLastFooterBlock(byte *mac, size_t macSize) =0;
H A Dauthenc.cpp136 void AuthenticatedSymmetricCipherBase::TruncatedFinal(byte *mac, size_t macSize) argument
167 AuthenticateLastFooterBlock(mac, macSize);
H A Dccm.cpp132 void CCM_Base::AuthenticateLastFooterBlock(byte *mac, size_t macSize) argument
135 m_ctr.ProcessData(mac, CBC_Buffer(), macSize);
H A Dfipstest.cpp40 const byte * CRYPTOPP_API GetActualMacAndLocation(unsigned int &macSize, unsigned int &fileLocation) argument
42 macSize = (unsigned int)g_actualMac.size();
262 unsigned int macSize = mac->DigestSize(); local
266 actualMac.resize(macSize);
384 verifier.AddRangeToSkip(0, macFileLocation, macSize);
402 if (!VerifyBufsEqual(expectedModuleMac, actualMac, macSize))
412 verifier.AddRangeToSkip(0, macFileLocation, macSize);
417 if (VerifyBufsEqual(expectedModuleMac, actualMac, macSize))
H A Deax.h54 void AuthenticateLastFooterBlock(byte *mac, size_t macSize);
H A Dccm.h60 void AuthenticateLastFooterBlock(byte *mac, size_t macSize);
H A Dgcm.h56 void AuthenticateLastFooterBlock(byte *mac, size_t macSize);
H A Dcryptlib.cpp211 void AuthenticatedSymmetricCipher::EncryptAndAuthenticate(byte *ciphertext, byte *mac, size_t macSize, const byte *iv, int ivLength, const byte *header, size_t headerLength, const byte *message, size_t messageLength) argument
217 TruncatedFinal(mac, macSize);
H A Dgcm.cpp647 void GCM_Base::AuthenticateLastFooterBlock(byte *mac, size_t macSize) argument
650 m_ctr.ProcessData(mac, HashBuffer(), macSize);
H A Dcryptlib.h660 //! encrypt and generate MAC in one call. will truncate MAC if macSize < TagSize()
661 virtual void EncryptAndAuthenticate(byte *ciphertext, byte *mac, size_t macSize, const byte *iv, int ivLength, const byte *header, size_t headerLength, const byte *message, size_t messageLength);

Completed in 81 milliseconds