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();
}