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

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

import java.security.GeneralSecurityException;
import com.google.crypto.tink.Aead;
import com.google.errorprone.annotations.Immutable;

@Immutable
public interface AeadFactory
{
    int getKeySizeInBytes();
    
    Aead createAead(final byte[] symmetricKey) throws GeneralSecurityException;
}
