/* * Copyright (C) 2014 jsonwebtoken.io * * 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 io.jsonwebtoken.impl.crypto; import io.jsonwebtoken.SignatureAlgorithm; import io.jsonwebtoken.SignatureException; import java.security.InvalidKeyException; import java.security.Key; import java.security.PrivateKey; import java.security.Signature; import java.security.interfaces.RSAKey; public class RsaSigner extends RsaProvider implements Signer { public RsaSigner(SignatureAlgorithm alg, Key key) { super(alg, key); // https://github.com/jwtk/jjwt/issues/68 // Instead of checking for an instance of RSAPrivateKey, check for PrivateKey and RSAKey: if (!(key instanceof PrivateKey && key instanceof RSAKey)) { String msg = "RSA signatures must be computed using an RSA PrivateKey. The specified key of type " + key.getClass().getName() + " is not an RSA PrivateKey."; throw new IllegalArgumentException(msg); } } @Override public byte[] sign(byte[] data) { try { return doSign(data); } catch (InvalidKeyException e) { throw new SignatureException("Invalid RSA PrivateKey. " + e.getMessage(), e); } catch (java.security.SignatureException e) { throw new SignatureException("Unable to calculate signature using RSA PrivateKey. " + e.getMessage(), e); } } protected byte[] doSign(byte[] data) throws InvalidKeyException, java.security.SignatureException { PrivateKey privateKey = (PrivateKey)key; Signature sig = createSignatureInstance(); sig.initSign(privateKey); sig.update(data); return sig.sign(); } }