Home
last modified time | relevance | path

Searched refs:mcf_id (Results 1 – 4 of 4) sorted by relevance

/dports/databases/xtrabackup8/percona-xtrabackup-8.0.14/router/src/http/src/
H A Dkdf_pbkdf2.h159 std::string mcf_id() const { in mcf_id() function
246 static bool supports_mcf_id(const std::string mcf_id) { in supports_mcf_id() argument
247 return mcf_type::supports_name(mcf_id); in supports_mcf_id()
H A Dhttp_auth_backend.cc175 std::string mcf_id(mcf_line.begin() + 1, mcf_id_it); in authenticate() local
180 if (ShaCryptMcfAdaptor::supports_mcf_id(mcf_id)) { in authenticate()
182 } else if (Pbkdf2McfAdaptor::supports_mcf_id(mcf_id)) { in authenticate()
H A Dkdf_sha_crypt.h226 static bool supports_mcf_id(const std::string mcf_id) { in supports_mcf_id() argument
227 return mcf_type::supports_name(mcf_id); in supports_mcf_id()
H A Dkdf_pbkdf2.cc119 return std::string("$") + mcf_id() + "$" + std::to_string(rounds()) + "$" + in to_mcf()