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

package com.google.crypto.tink.mac;

import java.security.GeneralSecurityException;
import java.nio.ByteBuffer;

public interface ChunkedMacVerification
{
    void update(final ByteBuffer data) throws GeneralSecurityException;
    
    void verifyMac() throws GeneralSecurityException;
}
