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

package com.google.crypto.tink.daead.subtle;

import java.security.GeneralSecurityException;
import com.google.crypto.tink.DeterministicAead;

public interface DeterministicAeads extends DeterministicAead
{
    byte[] encryptDeterministicallyWithAssociatedDatas(final byte[] plaintext, final byte[]... associatedDatas) throws GeneralSecurityException;
    
    byte[] decryptDeterministicallyWithAssociatedDatas(final byte[] ciphertext, final byte[]... associatedDatas) throws GeneralSecurityException;
}
