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

package com.google.crypto.tink.subtle;

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

public interface StreamSegmentDecrypter
{
    void init(final ByteBuffer header, final byte[] aad) throws GeneralSecurityException;
    
    void decryptSegment(final ByteBuffer ciphertext, final int segmentNr, final boolean isLastSegment, final ByteBuffer plaintext) throws GeneralSecurityException;
}
