//------------------------------------------------------------------------------ // Copyright (c) 2024-2025 by European Organization for Nuclear Research (CERN) // Author: Cedric Caffy //------------------------------------------------------------------------------ // XRootD is free software: you can redistribute it and/or modify // it under the terms of the GNU Lesser General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // XRootD is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU Lesser General Public License // along with XRootD. If not, see . //------------------------------------------------------------------------------ /** * PRIVATE HEADER for utility functions, implementation in XrdOucUtils.cc */ #ifndef XROOTD_XRDOUCPRIVATEUTILS_HH #define XROOTD_XRDOUCPRIVATEUTILS_HH #include #include #include /** * Obfuscates strings containing "authz=value", "Authorization: value", * "TransferHeaderAuthorization: value", "WhateverAuthorization: value" * in a case insensitive way. * * @param input the string to obfuscate */ std::string obfuscateAuth(const std::string & input); #endif //XROOTD_XRDOUCPRIVATEUTILS_HH