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

package com.google.crypto.tink.signature;

import com.google.crypto.tink.Parameters;
import com.google.crypto.tink.util.Bytes;
import com.google.errorprone.annotations.Immutable;
import com.google.crypto.tink.Key;

@Immutable
public abstract class SignaturePublicKey extends Key
{
    public abstract Bytes getOutputPrefix();
    
    @Override
    public abstract SignatureParameters getParameters();
}
