Searched refs:BlockSize (Results 1 - 25 of 40) sorted by relevance

12

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/libcryptoxx-5.6.0/
H A Dmodes.cpp30 assert(m_feedbackSize == BlockSize());
32 unsigned int s = BlockSize();
52 unsigned int updateSize = BlockSize()-m_feedbackSize;
59 memcpy_s(m_register, m_register.size(), iv, BlockSize());
65 if (feedbackSize > BlockSize())
67 m_feedbackSize = feedbackSize ? feedbackSize : BlockSize();
73 m_temp.New(BlockSize());
79 unsigned int s = BlockSize();
94 for (int i=BlockSize()-1; i>=0; i--)
105 IncrementCounterByOne(m_counterArray, BlockSize()
[all...]
H A Dhmac.cpp18 unsigned int blockSize = hash.BlockSize();
23 m_buf.resize(2*AccessHash().BlockSize() + AccessHash().DigestSize());
47 hash.Update(AccessIpad(), hash.BlockSize());
77 hash.Update(AccessOpad(), hash.BlockSize());
H A Dcbcmac.cpp12 m_reg.CleanNew(AccessCipher().BlockSize());
18 unsigned int blockSize = AccessCipher().BlockSize();
51 memset(m_reg, 0, AccessCipher().BlockSize());
H A Diterhash.cpp21 unsigned int blockSize = this->BlockSize();
74 unsigned int blockSize = this->BlockSize();
82 unsigned int blockSize = this->BlockSize();
91 ByteReverse(dataBuf, input, this->BlockSize());
104 unsigned int blockSize = this->BlockSize();
131 unsigned int blockSize = this->BlockSize();
H A Dmd2.h19 unsigned int BlockSize() const {return BLOCKSIZE;} function in class:Weak1::MD2
H A Dcmac.h18 unsigned int DigestSize() const {return GetCipher().BlockSize();}
19 unsigned int OptimalBlockSize() const {return GetCipher().BlockSize();}
H A Dhmac.h27 byte * AccessOpad() {return m_buf + AccessHash().BlockSize();}
28 byte * AccessInnerHash() {return m_buf + 2*AccessHash().BlockSize();}
H A Dcmac.cpp46 unsigned int blockSize = cipher.BlockSize();
64 unsigned int blockSize = cipher.BlockSize();
104 unsigned int blockSize = cipher.BlockSize();
H A Dmodes.h42 unsigned int IVSize() const {return BlockSize();}
64 inline unsigned int BlockSize() const {assert(m_register.size() > 0); return (unsigned int)m_register.size();} function in class:CipherModeBase
67 if (!(feedbackSize == 0 || feedbackSize == BlockSize()))
72 m_register.New(m_cipher->BlockSize());
103 byte * GetRegisterBegin() {return m_register + BlockSize() - m_feedbackSize;}
104 bool CanIterate() const {return m_feedbackSize == BlockSize();}
131 unsigned int GetBytesPerIteration() const {return BlockSize();}
148 unsigned int GetBytesPerIteration() const {return BlockSize();}
164 unsigned int MandatoryBlockSize() const {return BlockSize();}
175 m_buffer.New(BlockSize());
[all...]
H A Dvmac.h14 unsigned int IVSize() const {return GetCipher().BlockSize();}
21 unsigned int BlockSize() const {return m_L1KeyLength;} function in class:VMAC_Base
H A Diterhash.h27 unsigned int OptimalBlockSize() const {return this->BlockSize();}
44 void HashBlock(const HashWordType *input) {HashMultipleBlocks(input, this->BlockSize());}
64 unsigned int BlockSize() const {return T_BlockSize;} function in class:IteratedHash
H A Dcbcmac.h18 unsigned int DigestSize() const {return const_cast<CBC_MAC_Base*>(this)->AccessCipher().BlockSize();}
H A Dpanama.h78 unsigned int BlockSize() const function in class:HermeticHashFunctionMAC
79 {return m_hash.BlockSize();}
H A Dargnames.h21 CRYPTOPP_DEFINE_NAME_STRING(BlockSize) //!< int, in bytes
H A Dccm.h54 {return GetBlockCipher().BlockSize();}
H A Dtea.h102 m_blockSize = params.GetIntValueWithDefault("BlockSize", 60*4);
106 unsigned int BlockSize() const {return m_blockSize;} function in class:BTEA::Base
H A Dccm.cpp17 if (blockCipher.BlockSize() != REQUIRED_BLOCKSIZE)
H A Drng.cpp63 S(cipher->BlockSize()),
H A Dvalidat1.cpp380 virtual unsigned int BlockSize() const =0;
391 unsigned int BlockSize() const {return E::BLOCKSIZE;} function in class:FixedRoundsCipherFactory
407 unsigned int BlockSize() const {return E::BLOCKSIZE;} function in class:VariableRoundsCipherFactory
421 SecByteBlock plain(cg.BlockSize()), cipher(cg.BlockSize()), out(cg.BlockSize()), outplain(cg.BlockSize());
428 valdata.Get(plain, cg.BlockSize());
429 valdata.Get(cipher, cg.BlockSize());
433 fail = memcmp(out, cipher, cg.BlockSize()) !
[all...]
H A Dseckey.h146 unsigned int BlockSize() const {return this->BLOCKSIZE;} function in class:BlockCipherImpl
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/source/smbd/
H A Dstatvfs.c34 statbuf->BlockSize = statvfs_buf.f_bsize;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/linux/mtd/
H A Dftl.h40 uint8_t BlockSize; member in struct:erase_unit_header_t
H A Dcfi.h193 uint16_t BlockSize; member in struct:cfi_intelext_blockinfo
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/mtd/
H A Dftl.c184 if (header.BlockSize != 9 ||
271 blocks = le32_to_cpu(header.FormattedSize) >> header.BlockSize;
277 part->BlocksPerUnit = (1 << header.EraseUnitSize) >> header.BlockSize;
306 (i << header.EraseUnitSize) + (j << header.BlockSize);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/scsi/
H A DBusLogic.c162 for Host Adapter from the BlockSize bytes located at BlockPointer. The newly
166 static void BusLogic_InitializeCCBs(struct BusLogic_HostAdapter *HostAdapter, void *BlockPointer, int BlockSize, dma_addr_t BlockPointerHandle) argument
170 memset(BlockPointer, 0, BlockSize);
172 CCB->AllocationGroupSize = BlockSize;
173 while ((BlockSize -= sizeof(struct BusLogic_CCB)) >= 0) {
198 int BlockSize = BusLogic_CCB_AllocationGroupSize * sizeof(struct BusLogic_CCB); local
202 BlockPointer = pci_alloc_consistent(HostAdapter->PCI_Device, BlockSize, &BlockPointerHandle);
207 BusLogic_InitializeCCBs(HostAdapter, BlockPointer, BlockSize, BlockPointerHandle);
244 int BlockSize = BusLogic_CCB_AllocationGroupSize * sizeof(struct BusLogic_CCB); local
251 BlockPointer = pci_alloc_consistent(HostAdapter->PCI_Device, BlockSize,
[all...]

Completed in 285 milliseconds

12