All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.opentelecoms.gsm0348.impl.crypto.Mac Maven / Gradle / Ivy

There is a newer version: 1.3.3
Show newest version
package org.opentelecoms.gsm0348.impl.crypto;

public interface Mac
{
	void init(CipherParameters cipherParameters) throws IllegalArgumentException;

	String getAlgorithmName();

	int getMacSize();

	void update(byte input) throws IllegalStateException;

	void update(byte[] input, int offset, int length) throws IllegalStateException;

	int doFinal(byte[] output, int offset) throws IllegalStateException;

	void reset();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy