| 24 | } |
| 25 | |
| 26 | WasiCryptoExpect<void> optionsSet(Options &Options, std::string_view Name, |
| 27 | Span<const uint8_t> Value) noexcept { |
| 28 | return std::visit( |
| 29 | [Name, Value](auto &Option) noexcept { return Option.set(Name, Value); }, |
| 30 | Options); |
| 31 | } |
| 32 | |
| 33 | WasiCryptoExpect<void> optionsSetU64(Options &Options, std::string_view Name, |
| 34 | uint64_t Value) noexcept { |
no test coverage detected