Home
last modified time | relevance | path

Searched refs:kKeySize (Results 1 – 3 of 3) sorted by relevance

/external/lzma/CPP/7zip/Crypto/
D7zAes.cpp44 for (unsigned i = 0; i < Password.Size() && pos < kKeySize; i++) in CalcKey()
46 for (; pos < kKeySize; pos++) in CalcKey()
86 for (unsigned j = 0; j < kKeySize; j++) in GetKey()
200 _aesFilter = new CAesCbcEncoder(kKeySize); in CEncoder()
207 _aesFilter = new CAesCbcDecoder(kKeySize); in CDecoder()
268 RINOK(cp->SetKey(_key.Key, kKeySize)); in Init()
D7zAes.h16 const unsigned kKeySize = 32; variable
27 Byte Key[kKeySize];
/external/libchrome/crypto/
Dhmac_unittest.cc39 const int kKeySize = 16; in TEST() local
42 const unsigned char kClientKey[kKeySize] = in TEST()
81 ASSERT_TRUE(hmac.Init(kClientKey, kKeySize)); in TEST()