aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/digest/md5
diff options
context:
space:
mode:
authoralbert <albert@yandex-team.ru>2022-02-10 16:48:15 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:48:15 +0300
commita817f5de12611ec73085eba17f8ec7740a46bdb7 (patch)
treeb222e5ac2e2e98872661c51ccceee5da0d291e13 /library/cpp/digest/md5
parent9f25ef3232c288ca664ceee6c376cf64e4349a2e (diff)
downloadydb-a817f5de12611ec73085eba17f8ec7740a46bdb7.tar.gz
Restoring authorship annotation for <albert@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/digest/md5')
-rw-r--r--library/cpp/digest/md5/md5.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/library/cpp/digest/md5/md5.h b/library/cpp/digest/md5/md5.h
index 8930805b78..2c17aa0518 100644
--- a/library/cpp/digest/md5/md5.h
+++ b/library/cpp/digest/md5/md5.h
@@ -6,10 +6,10 @@
class IInputStream;
class MD5 {
-public:
- MD5() {
- Init();
- }
+public:
+ MD5() {
+ Init();
+ }
void Init();
@@ -66,7 +66,7 @@ public:
static bool IsMD5(TStringBuf data);
static bool IsMD5(const TArrayRef<const ui8>& data);
-private:
+private:
void UpdatePart(TArrayRef<const ui8> data);
private: