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

package com.google.crypto.tink.aead.internal;

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

public final class InsecureNonceChaCha20Poly1305 extends InsecureNonceChaCha20Poly1305Base
{
    public InsecureNonceChaCha20Poly1305(final byte[] key) throws GeneralSecurityException {
        super(key);
    }
    
    @Override
    InsecureNonceChaCha20Base newChaCha20Instance(final byte[] key, final int initialCounter) throws InvalidKeyException {
        return new InsecureNonceChaCha20(key, initialCounter);
    }
}
