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

net.aholbrook.paseto.base64.Base64Provider Maven / Gradle / Ivy

package net.aholbrook.paseto.base64;

public interface Base64Provider {
	String encodeToString(byte[] bytes);

	byte[] decodeFromString(String s);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy