diff options
| author | conterouz <[email protected]> | 2022-12-16 11:22:35 +0300 | 
|---|---|---|
| committer | conterouz <[email protected]> | 2022-12-16 11:22:35 +0300 | 
| commit | cb6356ca0d52f1d0437996c4f5d662c5201f682b (patch) | |
| tree | 8d937e320470c378da457a57af76d5a940cb135e /library/cpp | |
| parent | 64fdfff412a1c555a909da6fd654cba5628e61e8 (diff) | |
add one more method overload
Diffstat (limited to 'library/cpp')
| -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 3823fc1b8d7..22e6b4b5424 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; +}  | 
