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

package com.google.crypto.tink.streamingaead;

import com.google.crypto.tink.Parameters;
import javax.annotation.Nullable;
import com.google.crypto.tink.Key;

public abstract class StreamingAeadKey extends Key
{
    @Nullable
    @Override
    public final Integer getIdRequirementOrNull() {
        return null;
    }
    
    @Override
    public abstract StreamingAeadParameters getParameters();
}
