m_tryConsume(last);
}
- bool isOk() const { return m_ok; }
+ bool IsOk() const { return m_ok; }
private:
char m_buffer[BUFFER_SIZE];
m_impl->Put(data, size, last);
}
-bool ENCRYPT_STREAM::isOk() const
+bool ENCRYPT_STREAM::IsOk() const
{
-return m_impl->isOk();
+return m_impl->IsOk();
}
DECRYPT_STREAM::DECRYPT_STREAM(const std::string & key, CALLBACK callback, void * data)
m_impl->Put(data, size, last);
}
-bool DECRYPT_STREAM::isOk() const
+bool DECRYPT_STREAM::IsOk() const
{
-return m_impl->isOk();
+return m_impl->IsOk();
}
~ENCRYPT_STREAM();
void Put(const void * data, size_t size, bool last = false);
- bool isOk() const;
+ bool IsOk() const;
private:
class IMPL;
~DECRYPT_STREAM();
void Put(const void * data, size_t size, bool last = false);
- bool isOk() const;
+ bool IsOk() const;
private:
class IMPL;