Lines Matching refs:SaltSize
29 if (SaltSize != a.SaltSize || NumCyclesPower != a.NumCyclesPower) in IsEqualTo()
31 for (unsigned i = 0; i < SaltSize; i++) in IsEqualTo()
42 for (pos = 0; pos < SaltSize; pos++) in CalcKey()
51 size_t bufSize = 8 + SaltSize + Password.Size(); in CalcKey()
53 memcpy(buf, Salt, SaltSize); in CalcKey()
54 memcpy(buf + SaltSize, Password, Password.Size()); in CalcKey()
59 Byte *ctr = buf + SaltSize + Password.Size(); in CalcKey()
178 | (_key.SaltSize == 0 ? 0 : (1 << 7)) in WriteCoderProperties()
181 if (_key.SaltSize != 0 || _ivSize != 0) in WriteCoderProperties()
184 ((_key.SaltSize == 0 ? 0 : _key.SaltSize - 1) << 4) in WriteCoderProperties()
186 memcpy(props + 2, _key.Salt, _key.SaltSize); in WriteCoderProperties()
187 propsSize = 2 + _key.SaltSize; in WriteCoderProperties()
238 _key.SaltSize = saltSize; in SetDecoderProperties2()