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

bluecrystal.service.jwt.CredentialJHmac Maven / Gradle / Ivy

There is a newer version: 1.16.0
Show newest version
package bluecrystal.service.jwt;

public class CredentialJHmac implements Credential {
	private byte[] secret;

	public CredentialJHmac() {
		super();
		// TODO Auto-generated constructor stub
	}

	public CredentialJHmac(byte[] secret) {
		super();
		this.secret = secret;
	}

	public byte[] getSecret() {
		return secret;
	}

	@Override
	public AppAlgorithm getAlgorithn() {
		return AppAlgorithm.HS256;
	}
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy