com.yandex.cloud.kms.providers.examples.TinkExampleUtil Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kms-provider-tink Show documentation
Show all versions of kms-provider-tink Show documentation
Provider that enables usage of Yandex Cloud KMS from Google Tink cryptographic library
package com.yandex.cloud.kms.providers.examples;
import org.apache.commons.lang3.Validate;
class TinkExampleUtil {
private TinkExampleUtil() {
}
public static String argAsString(String[] args, int index) {
Validate.isTrue(index < args.length, "args[%s] is missing", index);
return args[index];
}
}