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

package com.google.crypto.tink.mac;

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

public interface ChunkedMacComputation
{
    void update(final ByteBuffer data) throws GeneralSecurityException;
    
    byte[] computeMac() throws GeneralSecurityException;
}
