Jürg Wullschleger
Jürg Wullschleger
We intent to Remove Tink for JavaScript/TypeScript, see https://github.com/google/tink/issues/689. So I will close this.
Note that Tink 1.7.0 for Python has now been released, see https://pypi.org/project/tink/. Is this still an issue? I have tried to install tink on https://shell.cloud.google.com/ and it works.
I'll close this now. Please re-open if there is still an issue.
I think it would be best to use "net/url" instead of a regex. We already use net/url in hcvault_client.go anyways.
Could you update the pull request? Thanks.
The problem of your code was that you serialized the keyset in the wrong way. You shouldn't use MemReaderWriter and then call exported.Keyset.String() on that. This will generate a string...
This is now possible for Ecdsa and RSA SSA PKCS1 keys. I've added some tests that show how to convert Java keys into Tink keys: https://github.com/tink-crypto/tink-java/blob/main/src/test/java/com/google/crypto/tink/signature/EcdsaPrivateKeyTest.java#L132 and https://github.com/tink-crypto/tink-java/blob/main/src/test/java/com/google/crypto/tink/signature/RsaSsaPkcs1PrivateKeyTest.java#L405 These keys...
I have now added a test that shows how RSA keys can be imported and used in Tink: https://github.com/tink-crypto/tink-java/commit/881dd21fb8c815c54dd761cf543500972244706e
We decided that we don't want to add this to the AndroidKeysetManager. If you need additional flexibility, then you will need to implement that yourself, by duplicating some of the...
I did do some changes to the AndroidKeysetManager lately that should help with this error: https://github.com/google/tink/commits/master/java_src/src/main/java/com/google/crypto/tink/integration/android - I fixed some race-conditions. So hopefully in many cases there will not be...