/* * Copyright 2016 Red Hat, Inc. and/or its affiliates * and other contributors as indicated by the @author tags. * * 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.keycloak.common.util; import javax.crypto.SecretKey; import javax.crypto.spec.SecretKeySpec; import java.security.Key; import java.security.KeyFactory; import java.security.KeyPair; import java.security.KeyPairGenerator; import java.security.MessageDigest; import java.security.NoSuchAlgorithmException; import java.security.PrivateKey; import java.security.PublicKey; import java.security.interfaces.RSAPrivateCrtKey; import java.security.spec.RSAPublicKeySpec; /** * @author <a href="mailto:sthorger@redhat.com">Stian Thorgersen</a> */ public class KeyUtils { private static final String DEFAULT_MESSAGE_DIGEST = "SHA-256"; private KeyUtils() { } public static SecretKey loadSecretKey(byte[] secret) { return new SecretKeySpec(secret, "HmacSHA256"); } public static KeyPair generateRsaKeyPair(int keysize) { try { KeyPairGenerator generator = KeyPairGenerator.getInstance("RSA"); generator.initialize(keysize); KeyPair keyPair = generator.generateKeyPair(); return keyPair; } catch (Exception e) { throw new RuntimeException(e); } } public static PublicKey extractPublicKey(PrivateKey key) { if (key == null) { return null; } try { RSAPrivateCrtKey rsaPrivateCrtKey = (RSAPrivateCrtKey) key; RSAPublicKeySpec publicKeySpec = new RSAPublicKeySpec(rsaPrivateCrtKey.getModulus(), rsaPrivateCrtKey.getPublicExponent()); KeyFactory keyFactory = KeyFactory.getInstance("RSA"); return keyFactory.generatePublic(publicKeySpec); } catch (Exception e) { throw new RuntimeException(e); } } public static String createKeyId(Key key) { try { return Base64Url.encode(MessageDigest.getInstance(DEFAULT_MESSAGE_DIGEST).digest(key.getEncoded())); } catch (NoSuchAlgorithmException e) { throw new RuntimeException(e); } } }