/* * (C) 2014,2015 Jack Lloyd * * Botan is released under the Simplified BSD License (see license.txt) */ #include #include namespace Botan { Transform* get_transform(const std::string& specstr, const std::string& provider, const std::string& dirstr) { Algo_Registry::Spec spec(specstr, dirstr); return Algo_Registry::global_registry().make(spec, provider); } }