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

package com.google.crypto.tink;

import java.security.GeneralSecurityException;

public interface Mac
{
    byte[] computeMac(final byte[] data) throws GeneralSecurityException;
    
    void verifyMac(final byte[] mac, final byte[] data) throws GeneralSecurityException;
}
