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

org.cryptomator.siv.UnauthenticCiphertextException Maven / Gradle / Ivy

There is a newer version: 1.5.2
Show newest version
package org.cryptomator.siv;

import javax.crypto.BadPaddingException;

/**
 * Drop-in replacement for {@link javax.crypto.AEADBadTagException}, which is not available on some older Android systems.
 */
public class UnauthenticCiphertextException extends BadPaddingException {

	public UnauthenticCiphertextException(String message) {
		super(message);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy