Home
last modified time | relevance | path

Searched refs:Block (Results 1 – 9 of 9) sorted by relevance

/openthread-latest/third_party/mbedtls/repo/tests/suites/
Dtest_suite_common.data1 Block xor, length 0
4 Block xor, length 1
7 Block xor, length 3
10 Block xor, length 4
13 Block xor, length 7
16 Block xor, length 8
19 Block xor, length 16
22 Block xor, length 64
25 Block xor, length 256
28 Block xor, length 257
[all …]
Dtest_suite_aes.ofb.data2 # Recommendation for Block Cipher Modes of Operation
Dtest_suite_psa_crypto_metadata.data372 Block cipher key type: AES
376 Block cipher key type: ARIA
380 Block cipher key type: DES
384 Block cipher key type: Camellia
Dtest_suite_aes.ctr.data2 # Recommendation for Block Edition Cipher Modes of Operation
/openthread-latest/src/core/utils/
Dheap.cpp48 Block &super = BlockAt(kSuperBlockOffset); in Heap()
51 Block &first = BlockRight(super); in Heap()
54 Block &guard = BlockRight(first); in Heap()
55 guard.SetSize(Block::kGuardBlockSize); in Heap()
66 Block *prev = nullptr; in CAlloc()
67 Block *curr = nullptr; in CAlloc()
89 if (curr->GetSize() > size + sizeof(Block)) in CAlloc()
91 const uint16_t newBlockSize = curr->GetSize() - size - sizeof(Block); in CAlloc()
94 Block &newBlock = BlockRight(*curr); in CAlloc()
107 mMemory.mFreeSize -= sizeof(Block); in CAlloc()
[all …]
Dheap.hpp64 class Block class
198 const Block &super = self.BlockSuper(); in IsClean()
199 const Block &first = self.BlockRight(super); in IsClean()
221 static constexpr uint16_t kSuperBlockSize = kAlignSize - sizeof(Block);
236Block &BlockAt(uint16_t aOffset) { return *reinterpret_cast<Block *>(&mMemory.m16[aOffset / 2]); } in BlockAt()
245 Block &BlockOf(void *aPointer) in BlockOf()
257 Block &BlockSuper(void) { return BlockAt(kSuperBlockOffset); } in BlockSuper()
266 Block &BlockNext(const Block &aBlock) { return BlockAt(aBlock.GetNext()); } in BlockNext()
275Block &BlockRight(const Block &aBlock) { return BlockAt(BlockOffset(aBlock) + sizeof(Block) + aBlo… in BlockRight()
282 Block &BlockPrev(const Block &aBlock);
[all …]
/openthread-latest/third_party/mbedtls/repo/
DSECURITY.md40 **Warning!** Block ciphers do not yet achieve full protection against attackers
42 and workarounds see the [Block Ciphers](#block-ciphers) section.
72 **Warning!** Block ciphers do not yet achieve full protection. For
73 details and workarounds see the [Block Ciphers](#block-ciphers) section.
118 #### Block ciphers
DChangeLog4032 Recommendation for Block Cipher Modes of Operation: The CMAC Mode for
5686 * Added additional Cipher Block Modes to symmetric ciphers
/openthread-latest/third_party/mbedtls/repo/docs/architecture/psa-migration/
Dmd-cipher-dispatch.md597 #### Block cipher dual dispatch