diff options
author | conterouz <conterouz@yandex-team.com> | 2022-12-16 11:22:35 +0300 |
---|---|---|
committer | conterouz <conterouz@yandex-team.com> | 2022-12-16 11:22:35 +0300 |
commit | cb6356ca0d52f1d0437996c4f5d662c5201f682b (patch) | |
tree | 8d937e320470c378da457a57af76d5a940cb135e /library/cpp/string_utils/base64 | |
parent | 64fdfff412a1c555a909da6fd654cba5628e61e8 (diff) | |
download | ydb-cb6356ca0d52f1d0437996c4f5d662c5201f682b.tar.gz |
add one more method overload
Diffstat (limited to 'library/cpp/string_utils/base64')
-rw-r--r-- | library/cpp/string_utils/base64/base64.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/library/cpp/string_utils/base64/base64.h b/library/cpp/string_utils/base64/base64.h index 3823fc1b8d..22e6b4b542 100644 --- a/library/cpp/string_utils/base64/base64.h +++ b/library/cpp/string_utils/base64/base64.h @@ -148,3 +148,9 @@ inline TString Base64EncodeUrl(const TStringBuf s) { Base64EncodeUrl(s, ret); return ret; } + +inline TString Base64EncodeUrlNoPadding(const TStringBuf s) { + TString ret; + Base64EncodeUrlNoPadding(s, ret); + return ret; +} |