inkeliz
inkeliz
This is already supported on [golang.org/x/crypto/blake2b](https://godoc.org/golang.org/x/crypto/blake2b), by using `NewXOF`.
I'm not familiar to C# nor .NET. ---- I found the issue while working to port that demo to Golang, and notice significant performance improvement in Golang's implementation (up to...
There's any simpler example of how use export/import, when using the C?
I understand the motivation to add C#-only. I'm trying to figure out how [server_interop.c](https://github.com/SteveSandersonMS/dotnet-wasi-sdk/blob/main/src/Wasi.AspNetCore.Server.CustomHost/native/server_interop.c) works. Just to make sure, I need to have the Mono toolchain and compile the `my_interop.c`?...
Thank you, @flavio. I think that will be very useful for any future readers. My primary concern was how to compile that, since I'm not familiar with C#/Dotnet, so I'm...
That is a huge limitation. I'm not familiar with C#, but so far, it works well (even creating the Mono trampoline, to export functions). But, when you have potentially a...
> That's simply because of the [--initial-memory=52428800 declaration](https://github.com/SteveSandersonMS/dotnet-wasi-sdk/blob/main/src/Wasi.Sdk/build/Wasi.Sdk.targets#L215), i.e., it allocates 500MB up front. This is entirely unnecessary, as it works with about 24MB. That will only solve the issue...
Maybe wait for https://github.com/golang/go/issues/25612 and https://github.com/golang/go/issues/42372? I think the major blocker is that it doesn't support WASI and doesn't have option to export functions. One of the comments arround calling...
It will also require some custom module, to replace `wasm_exec.js`, something similar to https://github.com/mattn/gowasmer, so functions like `wasmExit` will exists (so it can be linked) and also performs the same...
What do you think about something like: ``` type Values []Value func (v Values) Scan(out ...any) { if len(out) > len(v) { return // Too much outputs } for i,...