com.nimbusds.jose.jwk.SecretJWK Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nimbus-jose-jwt Show documentation
Show all versions of nimbus-jose-jwt Show documentation
Java library for Javascript Object Signing and Encryption (JOSE) and
JSON Web Tokens (JWT)
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