diff options
author | lucius <lucius@yandex-team.ru> | 2022-02-10 16:50:14 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:50:14 +0300 |
commit | fcc260ce89e9b359b47474d8dfa6dfcb6aae3fe9 (patch) | |
tree | 5d5cb817648f650d76cf1076100726fd9b8448e8 /library/cpp/digest/md5 | |
parent | 95ad0bd7bde5cd56bd6395ad6b7c47f0e73e4c99 (diff) | |
download | ydb-fcc260ce89e9b359b47474d8dfa6dfcb6aae3fe9.tar.gz |
Restoring authorship annotation for <lucius@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/digest/md5')
-rw-r--r-- | library/cpp/digest/md5/md5.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/library/cpp/digest/md5/md5.cpp b/library/cpp/digest/md5/md5.cpp index 07909bba13..24a5b69eef 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, |