org.jose4j.keys.X509Util Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jose4j Show documentation
Show all versions of jose4j Show documentation
The jose.4.j library is a robust and easy to use open source implementation of JSON Web Token (JWT) and the JOSE specification suite (JWS, JWE, and JWK).
It is written in Java and relies solely on the JCA APIs for cryptography.
Please see https://bitbucket.org/b_c/jose4j/wiki/Home for more info, examples, etc..
/*
* Copyright 2012-2017 Brian Campbell
*
* 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 org.jose4j.keys;
import org.jose4j.base64url.Base64;
import org.jose4j.base64url.Base64Url;
import org.jose4j.base64url.SimplePEMEncoder;
import org.jose4j.lang.HashUtil;
import org.jose4j.lang.JoseException;
import org.jose4j.lang.UncheckedJoseException;
import java.io.ByteArrayInputStream;
import java.security.MessageDigest;
import java.security.NoSuchProviderException;
import java.security.cert.*;
/**
*/
public class X509Util
{
private static final String FACTORY_TYPE = "X.509";
private CertificateFactory certFactory;
public X509Util()
{
try
{
certFactory = CertificateFactory.getInstance(FACTORY_TYPE);
}
catch (CertificateException e)
{
throw new IllegalStateException("Couldn't find "+ FACTORY_TYPE + " CertificateFactory!?!", e);
}
}
public X509Util(String provider) throws NoSuchProviderException
{
try
{
certFactory = CertificateFactory.getInstance(FACTORY_TYPE, provider);
}
catch (CertificateException e)
{
throw new IllegalStateException("Couldn't find "+ FACTORY_TYPE + " CertificateFactory!?!", e);
}
}
public static X509Util getX509Util(String jcaProvider) throws JoseException
{
if (jcaProvider == null)
{
return new X509Util();
}
else
{
try
{
return new X509Util(jcaProvider);
}
catch (NoSuchProviderException e)
{
throw new JoseException("Provider " + jcaProvider + " not found when creating X509Util." , e);
}
}
}
public String toBase64(X509Certificate x509Certificate)
{
try
{
byte[] der = x509Certificate.getEncoded();
return Base64.encode(der);
}
catch (CertificateEncodingException e)
{
throw new IllegalStateException("Unexpected problem getting encoded certificate.", e);
}
}
public String toPem(X509Certificate x509Certificate)
{
try
{
byte[] der = x509Certificate.getEncoded();
return SimplePEMEncoder.encode(der);
}
catch (CertificateEncodingException e)
{
throw new IllegalStateException("Unexpected problem getting encoded certificate.", e);
}
}
public X509Certificate fromBase64Der(String b64EncodedDer) throws JoseException
{
byte[] der = Base64.decode(b64EncodedDer);
ByteArrayInputStream byteArrayInputStream = new ByteArrayInputStream(der);
try
{
Certificate certificate = certFactory.generateCertificate(byteArrayInputStream);
return (X509Certificate) certificate;
}
catch (CertificateException e)
{
throw new JoseException("Unable to convert " + b64EncodedDer + " value to X509Certificate: " + e, e);
}
}
public static String x5t(X509Certificate certificate)
{
return base64urlThumbprint(certificate, "SHA-1");
}
public static String x5tS256(X509Certificate certificate)
{
return base64urlThumbprint(certificate, "SHA-256");
}
private static String base64urlThumbprint(X509Certificate certificate, String hashAlg)
{
MessageDigest msgDigest = HashUtil.getMessageDigest(hashAlg);
byte[] certificateEncoded;
try
{
certificateEncoded = certificate.getEncoded();
}
catch (CertificateEncodingException e)
{
throw new UncheckedJoseException("Unable to get certificate thumbprint due to unexpected certificate encoding exception.", e);
}
byte[] digest = msgDigest.digest(certificateEncoded);
return Base64Url.encode(digest);
}
}