com.nimbusds.jose.jwk.AsymmetricJWK 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)
/*
* nimbus-jose-jwt
*
* Copyright 2012-2016, Connect2id Ltd.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use
* this file except in compliance with the License. You may obtain a copy of the
* License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed
* under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
* CONDITIONS OF ANY KIND, either express or implied. See the License for the
* specific language governing permissions and limitations under the License.
*/
package com.nimbusds.jose.jwk;
import java.security.KeyPair;
import java.security.PrivateKey;
import java.security.PublicKey;
import java.security.cert.X509Certificate;
import com.nimbusds.jose.JOSEException;
/**
* Asymmetric (pair) JSON Web Key (JWK).
*
* @author Vladimir Dzhuvinov
* @version 2018-02-27
*/
public interface AsymmetricJWK {
/**
* Returns a Java public key representation of the JWK.
*
* @return The Java public key.
*
* @throws JOSEException If conversion failed or is not supported.
*/
PublicKey toPublicKey()
throws JOSEException;
/**
* Returns a Java private key representation of this JWK.
*
* @return The Java private key, {@code null} if not specified.
*
* @throws JOSEException If conversion failed or is not supported.
*/
PrivateKey toPrivateKey()
throws JOSEException;
/**
* Returns a Java key pair representation of this JWK.
*
* @return The Java key pair. The private key will be {@code null} if
* not specified.
*
* @throws JOSEException If conversion failed or is not supported.
*/
KeyPair toKeyPair()
throws JOSEException;
/**
* Returns {@code true} if the public key material of this JWK matches
* the public subject key info of the specified X.509 certificate.
*
* @param cert The X.509 certificate. Must not be {@code null}.
*
* @return {@code true} if the public key material of this JWK matches
* the public subject key info of the specified X.509
* certificate, else {@code false}.
*/
boolean matches(X509Certificate cert);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy