// 
// Decompiled by Procyon v0.6.0
// 

package com.google.crypto.tink;

import java.security.GeneralSecurityException;

public interface KmsClient
{
    boolean doesSupport(final String keyUri);
    
    KmsClient withCredentials(final String credentialPath) throws GeneralSecurityException;
    
    KmsClient withDefaultCredentials() throws GeneralSecurityException;
    
    Aead getAead(final String keyUri) throws GeneralSecurityException;
}
