use of com.google.crypto.tink.integration.gcpkms.GcpKmsClient in project tink by google.
the class KmsAeadKeyManagerTest method setUp.
@Before
public void setUp() throws Exception {
KmsClient kmsClient = new GcpKmsClient().withCredentials(TestUtil.SERVICE_ACCOUNT_FILE);
KmsClients.add(kmsClient);
Config.register(AeadConfig.TINK_1_0_0);
}
Aggregations