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

package com.google.crypto.tink.aead;

import com.google.crypto.tink.Parameters;
import com.google.crypto.tink.util.Bytes;
import com.google.crypto.tink.Key;

public abstract class AeadKey extends Key
{
    public abstract Bytes getOutputPrefix();
    
    @Override
    public abstract AeadParameters getParameters();
}
