Vyacheslav Gudkov
Vyacheslav Gudkov
Unfortunately build only works for armv7 and aarch64 targets and breaks on i686 and x86_64 targets that are definitely required (to use on Android EMU for example). The error looks...
For i686 seems it works on current master
Here is the fix https://github.com/rust-rocksdb/rust-rocksdb/pull/429
Also build doesn't work without ```BINDGEN_EXTRA_CLANG_ARGS="--target=aarch64-linux-android" ``` that confuses a lot. The problem is current versions of bindgen don't provide correct target for invoked clang during cross-compilation. Here is workaround...
> Also note that the anoncrypt() result may be sent to mediators who do not know nor do they care who the sender is while the authcrypt() is intended for...
@AnomalRoil Can interactive handshake mode in ECDH-1PU be a solution https://tools.ietf.org/id/draft-madden-jose-ecdh-1pu-01.html#rfc.section.3?
Just simple and backward compatible solution can be to add ```typescript type(t: CreateRequest) {}, ``` method to generated `CreateRequest` const in addition to encode/decode and toJson/fromJson methods.
> You can set some options to control the generic service implementation: useAsyncIterable, useAbortSignal and the Rpc interface is quite simple & can be backed by any library. So most...
Making service interface generic will most probably help here.
> For deserialization I believe JwkParts can be nested in another structure, or deserialized directly from a serde_json::Value. Nesting is most probably possible, but there is no way to serialize...