| 57 | } |
| 58 | |
| 59 | WasiCryptoExpect<void> |
| 60 | Context::optionsSetGuestBuffer(__wasi_options_t OptionsHandle, |
| 61 | std::string_view Name, |
| 62 | Span<uint8_t> Buf) noexcept { |
| 63 | return OptionsManager.get(OptionsHandle) |
| 64 | .and_then([Name, Buf](auto &&Options) noexcept { |
| 65 | return Common::optionsSetGuestBuffer(Options, Name, Buf); |
| 66 | }); |
| 67 | } |
| 68 | |
| 69 | WasiCryptoExpect<__wasi_secrets_manager_t> |
| 70 | Context::secretsManagerOpen(__wasi_opt_options_t) noexcept { |
no test coverage detected