git.stg.codes
/
stg.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
User parser refactoring.
[stg.git]
/
stglibs
/
crypto.lib
/
bfstream.cpp
diff --git
a/stglibs/crypto.lib/bfstream.cpp
b/stglibs/crypto.lib/bfstream.cpp
index 21a0d55d88d88416dce8e9c332296edc19b3cf1e..9c3f678edeca136ee754daa009d3b7f0f7a84669 100644
(file)
--- a/
stglibs/crypto.lib/bfstream.cpp
+++ b/
stglibs/crypto.lib/bfstream.cpp
@@
-49,7
+49,7
@@
class COMMON
m_tryConsume(last);
}
m_tryConsume(last);
}
- bool
i
sOk() const { return m_ok; }
+ bool
I
sOk() const { return m_ok; }
private:
char m_buffer[BUFFER_SIZE];
private:
char m_buffer[BUFFER_SIZE];
@@
-116,9
+116,9
@@
void ENCRYPT_STREAM::Put(const void * data, size_t size, bool last)
m_impl->Put(data, size, last);
}
m_impl->Put(data, size, last);
}
-bool ENCRYPT_STREAM::
i
sOk() const
+bool ENCRYPT_STREAM::
I
sOk() const
{
{
-return m_impl->
i
sOk();
+return m_impl->
I
sOk();
}
DECRYPT_STREAM::DECRYPT_STREAM(const std::string & key, CALLBACK callback, void * data)
}
DECRYPT_STREAM::DECRYPT_STREAM(const std::string & key, CALLBACK callback, void * data)
@@
-135,7
+135,7
@@
void DECRYPT_STREAM::Put(const void * data, size_t size, bool last)
m_impl->Put(data, size, last);
}
m_impl->Put(data, size, last);
}
-bool DECRYPT_STREAM::
i
sOk() const
+bool DECRYPT_STREAM::
I
sOk() const
{
{
-return m_impl->
i
sOk();
+return m_impl->
I
sOk();
}
}