How to access GcpKmsClient instance
I'm following this offical Tink how-to:
https://github.com/google/tink/blob/master/docs/JAVA-HOWTO.md
Everything works as expected after some fiddling, but I noticed that default constructor for GcpKmsClient is deprecated, and the following is recommended:
GcpKmsClient.register(
Optional.of(masterKeyUri),
Optional.of(pathToSaKeyFile)
)
Question is: How do I get access to the...