Christoph Hagen
Christoph Hagen
I've created a pull request #17 to resolve this issue. It solves my problem of sending background notifications without any `alert` keys. My [forked repository](https://github.com/christophhagen/Perfect-Notifications) contains a release `4.1.0` with...
Sorry for the delayed response. The README is incorrect, ````Session(for: aliceAddress)```` should be ````SessionCipher(store: aliceStore, remoteAddress: aliceAddress)```` The docs where not up to date with code, sorry for that.
The missing targets are fixed now. Unfortunately I can't fix the other error right now. The function `deallocate(bytes:alignedTo:)` is deprecated in Xcode 9.3 SDK and replaced by `deallocate()`. I'm not...
At the moment `libsignal-protocol-swift` only works when importing the framework directly. Cocoapods installation fails due to some problems with the module maps not being found. I'm trying to resolve the...
I don't think this is a problem with `libsignal-protocol-c`, and is best handled by the surrounding implementation. The Signal policy for identity keys is "trust on first use", which means...
I see your point. In general it makes sense not to store the identity key if the pre key signal message can't be decrypted. However even with this fix it...
TLDR: The current version of `BinaryCodable` is not compatible with `SIMD` types. A future version will use a different binary format and can support SIMD types. Explanation: SIMD types decode...
Version 3 of `BinaryCodable` now supports `SIMD` types. But beware, this version is not backwards-compatible with version 2.
Thanks for your interest in the library. There are a few relevant points regarding your suggestion: ### API - The API of `BinaryCodable` is aligned with existing encoders like `JSONEncoder`...