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

com.nimbusds.jose.jwk.SecretJWK Maven / Gradle / Ivy

Go to download

Java library for Javascript Object Signing and Encryption (JOSE) and JSON Web Tokens (JWT)

There is a newer version: 9.48
Show newest version
package com.nimbusds.jose.jwk;


import javax.crypto.SecretKey;


/**
 * Secret (symmetric) JSON Web Key (JWK).
 *
 * @author Vladimir Dzhuvinov
 * @version 2015-12-08
 */
public interface SecretJWK {
	

	/**
	 * Returns a Java secret key representation of the JWK.
	 *
	 * @return The Java secret key.
	 */
	SecretKey toSecretKey();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy