package com.google.crypto.tink;

import java.security.GeneralSecurityException;
/* loaded from: classes4.dex */
public interface KmsClient {
    boolean doesSupport(String keyUri);

    Aead getAead(String keyUri) throws GeneralSecurityException;

    KmsClient withCredentials(String credentialPath) throws GeneralSecurityException;

    KmsClient withDefaultCredentials() throws GeneralSecurityException;
}
