All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.yandex.cloud.kms.providers.examples.TinkExampleUtil Maven / Gradle / Ivy

Go to download

Provider that enables usage of Yandex Cloud KMS from Google Tink cryptographic library

There is a newer version: 2.7
Show newest version
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];
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy