Thai Duong
Thai Duong
@nanowizard I see. I chatted with @tholenst and @chuckx this morning and @chuckx said that he's found a temporary workaround. There's a setting that we can add to cURL that...
You're right that Tink doesn't support macOS yet. We'll see what we can do.
Tink stores keys in [Android Keystore](https://developer.android.com/training/articles/keystore), which is known to be pretty buggy on several phones. It looks like for whatever reason the Android Keystore on your user's phone couldn't...
Believe it or not, we're actively working on this. Tink will support PQC digital signature and public key encryption. At the moment it's not part of our external release, because...
Can you tell us more about the errors? BTW why can't you use Tink for Android? ``` dependencies { implementation 'com.google.crypto.tink:tink-android:1.5.0' } ```
On Android, Tink calls into Conscrypt which is a JNI wrapper on top of BoringSSL. This means it's C++ all the way down. On Thu, Apr 15, 2021 at 12:43...
@bleichen I'm not sure I understand the question. Jean, how do you write to an InputStream [1] which doesn't have any write() method? > Currently using tink I am forced...
Hi Jean, Could you please explain why PipedStreams is relevant here? Would you mind writing some code (pseudo is fine) that follows my proposal and tells me why it doesn't...
@przydatek @bleichen hey folks, could you please take a look?
Jean, I understand your problem now. Basically you want an API that wraps an input stream and gives you another input stream, like FilteredInputStream. When you read from the resulting...