aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/digest/md5
diff options
context:
space:
mode:
authorlucius <lucius@yandex-team.ru>2022-02-10 16:50:14 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:50:14 +0300
commit95ad0bd7bde5cd56bd6395ad6b7c47f0e73e4c99 (patch)
tree8162a11ee819c3dd6107870455732fd441483b38 /library/cpp/digest/md5
parentecc19a1fc1e15d78a9279514cb11edd9e808d600 (diff)
downloadydb-95ad0bd7bde5cd56bd6395ad6b7c47f0e73e4c99.tar.gz
Restoring authorship annotation for <lucius@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/digest/md5')
-rw-r--r--library/cpp/digest/md5/md5.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/library/cpp/digest/md5/md5.cpp b/library/cpp/digest/md5/md5.cpp
index 24a5b69eef..07909bba13 100644
--- a/library/cpp/digest/md5/md5.cpp
+++ b/library/cpp/digest/md5/md5.cpp
@@ -83,11 +83,11 @@ char* MD5::Stream(IInputStream* in, char* buf) {
MD5& MD5::Update(IInputStream* in) {
TMd5Stream md5(this);
- TransferData(in, &md5);
+ TransferData(in, &md5);
return *this;
-}
-
+}
+
static const ui8 PADDING[MD5_BLOCK_LENGTH] = {
0x80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,