We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d007607 + da48660 commit 067b345Copy full SHA for 067b345
src/MySQL_Encrypt_Sha1.cpp
@@ -86,12 +86,14 @@ void Encrypt_SHA1::addUncounted(uint8_t data) {
86
size_t Encrypt_SHA1::write(uint8_t data) {
87
++byteCount;
88
addUncounted(data);
89
+ return 1;
90
}
91
92
size_t Encrypt_SHA1::write(uint8_t* data, int length) {
93
for (int i=0; i<length; i++) {
94
write(data[i]);
95
96
+ return length;
97
98
99
void Encrypt_SHA1::pad() {
0 commit comments