HomeSort by relevance Sort by last modified time
    Searched refs:CryptoSetPassword (Results 1 - 5 of 5) sorted by null

  /external/lzma/CPP/7zip/Common/
FilterCoder.h 100 STDMETHOD(CryptoSetPassword)(const Byte *data, UInt32 size);
FilterCoder.cpp 213 STDMETHODIMP CFilterCoder::CryptoSetPassword(const Byte *data, UInt32 size)
215 return _setPassword->CryptoSetPassword(data, size);
  /external/lzma/CPP/7zip/
ICoder.h 160 STDMETHOD(CryptoSetPassword)(const Byte *data, UInt32 size) PURE;
  /external/lzma/CPP/7zip/Archive/7z/
7zDecode.cpp 256 CMyComPtr<ICryptoSetPassword> cryptoSetPassword;
257 decoder.QueryInterface(IID_ICryptoSetPassword, &cryptoSetPassword);
258 if (cryptoSetPassword)
275 RINOK(cryptoSetPassword->CryptoSetPassword((const Byte *)buffer, sizeInBytes));
7zEncode.cpp 110 CMyComPtr<ICryptoSetPassword> cryptoSetPassword;
111 encoderCommon.QueryInterface(IID_ICryptoSetPassword, &cryptoSetPassword);
113 if (cryptoSetPassword)
124 RINOK(cryptoSetPassword->CryptoSetPassword((const Byte *)buffer, sizeInBytes));

Completed in 213 milliseconds