| 11 | |
| 12 | namespace { |
| 13 | std::string toUpper(std::string_view Name) noexcept { |
| 14 | std::string Ret{Name}; |
| 15 | std::transform(Ret.begin(), Ret.end(), Ret.begin(), |
| 16 | [](char C) { return std::toupper(C); }); |
| 17 | return Ret; |
| 18 | } |
| 19 | } // namespace |
| 20 | |
| 21 | WasiCryptoExpect<AsymmetricCommon::Algorithm> |