|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
package com.sun.org.apache.xml.internal.security.algorithms.implementations; |
|
|
|
import java.security.InvalidAlgorithmParameterException; |
|
import java.security.Key; |
|
import java.security.NoSuchAlgorithmException; |
|
import java.security.NoSuchProviderException; |
|
import java.security.Provider; |
|
import java.security.SecureRandom; |
|
import java.security.Signature; |
|
import java.security.SignatureException; |
|
import java.security.spec.AlgorithmParameterSpec; |
|
|
|
import com.sun.org.apache.xml.internal.security.algorithms.JCEMapper; |
|
import com.sun.org.apache.xml.internal.security.algorithms.SignatureAlgorithmSpi; |
|
import com.sun.org.apache.xml.internal.security.signature.XMLSignature; |
|
import com.sun.org.apache.xml.internal.security.signature.XMLSignatureException; |
|
import com.sun.org.apache.xml.internal.security.utils.Constants; |
|
import com.sun.org.apache.xml.internal.security.utils.XMLUtils; |
|
import org.w3c.dom.Document; |
|
import org.w3c.dom.Element; |
|
import org.w3c.dom.Text; |
|
|
|
import javax.xml.crypto.dsig.DigestMethod; |
|
import java.security.spec.MGF1ParameterSpec; |
|
import java.security.spec.PSSParameterSpec; |
|
|
|
public abstract class SignatureBaseRSA extends SignatureAlgorithmSpi { |
|
|
|
private static final com.sun.org.slf4j.internal.Logger LOG = |
|
com.sun.org.slf4j.internal.LoggerFactory.getLogger(SignatureBaseRSA.class); |
|
|
|
|
|
private final Signature signatureAlgorithm; |
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
public SignatureBaseRSA() throws XMLSignatureException { |
|
this(null); |
|
} |
|
|
|
public SignatureBaseRSA(Provider provider) throws XMLSignatureException { |
|
String algorithmID = JCEMapper.translateURItoJCEID(this.engineGetURI()); |
|
LOG.debug("Created SignatureRSA using {}", algorithmID); |
|
|
|
try { |
|
if (provider == null) { |
|
String providerId = JCEMapper.getProviderId(); |
|
if (providerId == null) { |
|
this.signatureAlgorithm = Signature.getInstance(algorithmID); |
|
|
|
} else { |
|
this.signatureAlgorithm = Signature.getInstance(algorithmID, providerId); |
|
} |
|
|
|
} else { |
|
this.signatureAlgorithm = Signature.getInstance(algorithmID, provider); |
|
} |
|
|
|
} catch (NoSuchAlgorithmException | NoSuchProviderException ex) { |
|
Object[] exArgs = {algorithmID, ex.getLocalizedMessage()}; |
|
throw new XMLSignatureException("algorithms.NoSuchAlgorithm", exArgs); |
|
} |
|
} |
|
|
|
|
|
protected void engineSetParameter(AlgorithmParameterSpec params) |
|
throws XMLSignatureException { |
|
try { |
|
this.signatureAlgorithm.setParameter(params); |
|
} catch (InvalidAlgorithmParameterException ex) { |
|
throw new XMLSignatureException(ex); |
|
} |
|
} |
|
|
|
|
|
protected boolean engineVerify(byte[] signature) throws XMLSignatureException { |
|
try { |
|
return this.signatureAlgorithm.verify(signature); |
|
} catch (SignatureException ex) { |
|
throw new XMLSignatureException(ex); |
|
} |
|
} |
|
|
|
|
|
protected void engineInitVerify(Key publicKey) throws XMLSignatureException { |
|
engineInitVerify(publicKey, this.signatureAlgorithm); |
|
} |
|
|
|
|
|
protected byte[] engineSign() throws XMLSignatureException { |
|
try { |
|
return this.signatureAlgorithm.sign(); |
|
} catch (SignatureException ex) { |
|
throw new XMLSignatureException(ex); |
|
} |
|
} |
|
|
|
|
|
protected void engineInitSign(Key privateKey, SecureRandom secureRandom) |
|
throws XMLSignatureException { |
|
engineInitSign(privateKey, secureRandom, this.signatureAlgorithm); |
|
} |
|
|
|
|
|
protected void engineInitSign(Key privateKey) throws XMLSignatureException { |
|
engineInitSign(privateKey, (SecureRandom)null); |
|
} |
|
|
|
|
|
protected void engineUpdate(byte[] input) throws XMLSignatureException { |
|
try { |
|
this.signatureAlgorithm.update(input); |
|
} catch (SignatureException ex) { |
|
throw new XMLSignatureException(ex); |
|
} |
|
} |
|
|
|
|
|
protected void engineUpdate(byte input) throws XMLSignatureException { |
|
try { |
|
this.signatureAlgorithm.update(input); |
|
} catch (SignatureException ex) { |
|
throw new XMLSignatureException(ex); |
|
} |
|
} |
|
|
|
|
|
protected void engineUpdate(byte[] buf, int offset, int len) throws XMLSignatureException { |
|
try { |
|
this.signatureAlgorithm.update(buf, offset, len); |
|
} catch (SignatureException ex) { |
|
throw new XMLSignatureException(ex); |
|
} |
|
} |
|
|
|
|
|
protected String engineGetJCEAlgorithmString() { |
|
return this.signatureAlgorithm.getAlgorithm(); |
|
} |
|
|
|
|
|
protected String engineGetJCEProviderName() { |
|
return this.signatureAlgorithm.getProvider().getName(); |
|
} |
|
|
|
|
|
protected void engineSetHMACOutputLength(int HMACOutputLength) |
|
throws XMLSignatureException { |
|
throw new XMLSignatureException("algorithms.HMACOutputLengthOnlyForHMAC"); |
|
} |
|
|
|
|
|
protected void engineInitSign( |
|
Key signingKey, AlgorithmParameterSpec algorithmParameterSpec |
|
) throws XMLSignatureException { |
|
throw new XMLSignatureException("algorithms.CannotUseAlgorithmParameterSpecOnRSA"); |
|
} |
|
|
|
|
|
|
|
*/ |
|
public static class SignatureRSASHA1 extends SignatureBaseRSA { |
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
public SignatureRSASHA1() throws XMLSignatureException { |
|
super(); |
|
} |
|
|
|
public SignatureRSASHA1(Provider provider) throws XMLSignatureException { |
|
super(provider); |
|
} |
|
|
|
|
|
@Override |
|
public String engineGetURI() { |
|
return XMLSignature.ALGO_ID_SIGNATURE_RSA_SHA1; |
|
} |
|
} |
|
|
|
|
|
|
|
*/ |
|
public static class SignatureRSASHA224 extends SignatureBaseRSA { |
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
public SignatureRSASHA224() throws XMLSignatureException { |
|
super(); |
|
} |
|
|
|
public SignatureRSASHA224(Provider provider) throws XMLSignatureException { |
|
super(provider); |
|
} |
|
|
|
|
|
@Override |
|
public String engineGetURI() { |
|
return XMLSignature.ALGO_ID_SIGNATURE_RSA_SHA224; |
|
} |
|
} |
|
|
|
|
|
|
|
*/ |
|
public static class SignatureRSASHA256 extends SignatureBaseRSA { |
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
public SignatureRSASHA256() throws XMLSignatureException { |
|
super(); |
|
} |
|
|
|
public SignatureRSASHA256(Provider provider) throws XMLSignatureException { |
|
super(provider); |
|
} |
|
|
|
|
|
@Override |
|
public String engineGetURI() { |
|
return XMLSignature.ALGO_ID_SIGNATURE_RSA_SHA256; |
|
} |
|
} |
|
|
|
|
|
|
|
*/ |
|
public static class SignatureRSASHA384 extends SignatureBaseRSA { |
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
public SignatureRSASHA384() throws XMLSignatureException { |
|
super(); |
|
} |
|
|
|
public SignatureRSASHA384(Provider provider) throws XMLSignatureException { |
|
super(provider); |
|
} |
|
|
|
|
|
@Override |
|
public String engineGetURI() { |
|
return XMLSignature.ALGO_ID_SIGNATURE_RSA_SHA384; |
|
} |
|
} |
|
|
|
|
|
|
|
*/ |
|
public static class SignatureRSASHA512 extends SignatureBaseRSA { |
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
public SignatureRSASHA512() throws XMLSignatureException { |
|
super(); |
|
} |
|
|
|
public SignatureRSASHA512(Provider provider) throws XMLSignatureException { |
|
super(provider); |
|
} |
|
|
|
|
|
@Override |
|
public String engineGetURI() { |
|
return XMLSignature.ALGO_ID_SIGNATURE_RSA_SHA512; |
|
} |
|
} |
|
|
|
|
|
|
|
*/ |
|
public static class SignatureRSARIPEMD160 extends SignatureBaseRSA { |
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
public SignatureRSARIPEMD160() throws XMLSignatureException { |
|
super(); |
|
} |
|
|
|
public SignatureRSARIPEMD160(Provider provider) throws XMLSignatureException { |
|
super(provider); |
|
} |
|
|
|
|
|
@Override |
|
public String engineGetURI() { |
|
return XMLSignature.ALGO_ID_SIGNATURE_RSA_RIPEMD160; |
|
} |
|
} |
|
|
|
|
|
|
|
*/ |
|
public static class SignatureRSAMD5 extends SignatureBaseRSA { |
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
public SignatureRSAMD5() throws XMLSignatureException { |
|
super(); |
|
} |
|
|
|
public SignatureRSAMD5(Provider provider) throws XMLSignatureException { |
|
super(provider); |
|
} |
|
|
|
|
|
@Override |
|
public String engineGetURI() { |
|
return XMLSignature.ALGO_ID_SIGNATURE_NOT_RECOMMENDED_RSA_MD5; |
|
} |
|
} |
|
|
|
|
|
|
|
*/ |
|
public static class SignatureRSASHA1MGF1 extends SignatureBaseRSA { |
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
public SignatureRSASHA1MGF1() throws XMLSignatureException { |
|
super(); |
|
} |
|
|
|
public SignatureRSASHA1MGF1(Provider provider) throws XMLSignatureException { |
|
super(provider); |
|
} |
|
|
|
|
|
@Override |
|
public String engineGetURI() { |
|
return XMLSignature.ALGO_ID_SIGNATURE_RSA_SHA1_MGF1; |
|
} |
|
} |
|
|
|
|
|
|
|
*/ |
|
public static class SignatureRSASHA224MGF1 extends SignatureBaseRSA { |
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
public SignatureRSASHA224MGF1() throws XMLSignatureException { |
|
super(); |
|
} |
|
|
|
public SignatureRSASHA224MGF1(Provider provider) throws XMLSignatureException { |
|
super(provider); |
|
} |
|
|
|
|
|
@Override |
|
public String engineGetURI() { |
|
return XMLSignature.ALGO_ID_SIGNATURE_RSA_SHA224_MGF1; |
|
} |
|
} |
|
|
|
|
|
|
|
*/ |
|
public static class SignatureRSASHA256MGF1 extends SignatureBaseRSA { |
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
public SignatureRSASHA256MGF1() throws XMLSignatureException { |
|
super(); |
|
} |
|
|
|
public SignatureRSASHA256MGF1(Provider provider) throws XMLSignatureException { |
|
super(provider); |
|
} |
|
|
|
|
|
@Override |
|
public String engineGetURI() { |
|
return XMLSignature.ALGO_ID_SIGNATURE_RSA_SHA256_MGF1; |
|
} |
|
} |
|
|
|
|
|
|
|
*/ |
|
public static class SignatureRSASHA384MGF1 extends SignatureBaseRSA { |
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
public SignatureRSASHA384MGF1() throws XMLSignatureException { |
|
super(); |
|
} |
|
|
|
public SignatureRSASHA384MGF1(Provider provider) throws XMLSignatureException { |
|
super(provider); |
|
} |
|
|
|
|
|
@Override |
|
public String engineGetURI() { |
|
return XMLSignature.ALGO_ID_SIGNATURE_RSA_SHA384_MGF1; |
|
} |
|
} |
|
|
|
|
|
|
|
*/ |
|
public static class SignatureRSASHA512MGF1 extends SignatureBaseRSA { |
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
public SignatureRSASHA512MGF1() throws XMLSignatureException { |
|
super(); |
|
} |
|
|
|
public SignatureRSASHA512MGF1(Provider provider) throws XMLSignatureException { |
|
super(provider); |
|
} |
|
|
|
|
|
@Override |
|
public String engineGetURI() { |
|
return XMLSignature.ALGO_ID_SIGNATURE_RSA_SHA512_MGF1; |
|
} |
|
} |
|
|
|
|
|
|
|
*/ |
|
public static class SignatureRSASHA3_224MGF1 extends SignatureBaseRSA { |
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
public SignatureRSASHA3_224MGF1() throws XMLSignatureException { |
|
super(); |
|
} |
|
|
|
public SignatureRSASHA3_224MGF1(Provider provider) throws XMLSignatureException { |
|
super(provider); |
|
} |
|
|
|
|
|
@Override |
|
public String engineGetURI() { |
|
return XMLSignature.ALGO_ID_SIGNATURE_RSA_SHA3_224_MGF1; |
|
} |
|
} |
|
|
|
|
|
|
|
*/ |
|
public static class SignatureRSASHA3_256MGF1 extends SignatureBaseRSA { |
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
public SignatureRSASHA3_256MGF1() throws XMLSignatureException { |
|
super(); |
|
} |
|
|
|
public SignatureRSASHA3_256MGF1(Provider provider) throws XMLSignatureException { |
|
super(provider); |
|
} |
|
|
|
|
|
@Override |
|
public String engineGetURI() { |
|
return XMLSignature.ALGO_ID_SIGNATURE_RSA_SHA3_256_MGF1; |
|
} |
|
} |
|
|
|
|
|
|
|
*/ |
|
public static class SignatureRSASHA3_384MGF1 extends SignatureBaseRSA { |
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
public SignatureRSASHA3_384MGF1() throws XMLSignatureException { |
|
super(); |
|
} |
|
|
|
public SignatureRSASHA3_384MGF1(Provider provider) throws XMLSignatureException { |
|
super(provider); |
|
} |
|
|
|
|
|
@Override |
|
public String engineGetURI() { |
|
return XMLSignature.ALGO_ID_SIGNATURE_RSA_SHA3_384_MGF1; |
|
} |
|
} |
|
|
|
|
|
|
|
*/ |
|
public static class SignatureRSASHA3_512MGF1 extends SignatureBaseRSA { |
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
public SignatureRSASHA3_512MGF1() throws XMLSignatureException { |
|
super(); |
|
} |
|
|
|
public SignatureRSASHA3_512MGF1(Provider provider) throws XMLSignatureException { |
|
super(provider); |
|
} |
|
|
|
|
|
@Override |
|
public String engineGetURI() { |
|
return XMLSignature.ALGO_ID_SIGNATURE_RSA_SHA3_512_MGF1; |
|
} |
|
} |
|
|
|
public static class SignatureRSASSAPSS extends SignatureBaseRSA { |
|
PSSParameterSpec pssParameterSpec; |
|
|
|
public enum DigestAlgorithm { |
|
SHA224("SHA-224", DigestMethod.SHA224, 28), |
|
SHA256("SHA-256", DigestMethod.SHA256, 32), |
|
SHA384("SHA-384", DigestMethod.SHA384, 48), |
|
SHA512("SHA-512", DigestMethod.SHA512, 64), |
|
SHA3_224("SHA3-224", DigestMethod.SHA3_224, 28), |
|
SHA3_256("SHA3-256", DigestMethod.SHA3_256, 32), |
|
SHA3_384("SHA3-384", DigestMethod.SHA3_384, 48), |
|
SHA3_512("SHA3-512", DigestMethod.SHA3_512, 64); |
|
|
|
private final String xmlDigestAlgorithm; |
|
private final String digestAlgorithm; |
|
private final int saltLength; |
|
|
|
DigestAlgorithm(String digestAlgorithm, String xmlDigestAlgorithm, int saltLength) { |
|
this.digestAlgorithm = digestAlgorithm; |
|
this.xmlDigestAlgorithm = xmlDigestAlgorithm; |
|
this.saltLength = saltLength; |
|
} |
|
|
|
public String getXmlDigestAlgorithm() { |
|
return xmlDigestAlgorithm; |
|
} |
|
|
|
public String getDigestAlgorithm() { |
|
return digestAlgorithm; |
|
} |
|
|
|
public int getSaltLength() { |
|
return saltLength; |
|
} |
|
|
|
public static DigestAlgorithm fromXmlDigestAlgorithm(String xmlDigestAlgorithm) throws XMLSignatureException { |
|
for (DigestAlgorithm value : DigestAlgorithm.values()) { |
|
if(value.getXmlDigestAlgorithm().equals(xmlDigestAlgorithm)) { |
|
return value; |
|
} |
|
} |
|
throw new XMLSignatureException(); |
|
} |
|
|
|
public static DigestAlgorithm fromDigestAlgorithm(String digestAlgorithm) throws XMLSignatureException { |
|
for (DigestAlgorithm value : DigestAlgorithm.values()) { |
|
if(value.getDigestAlgorithm().equals(digestAlgorithm)) { |
|
return value; |
|
} |
|
} |
|
throw new XMLSignatureException(); |
|
|
|
} |
|
|
|
} |
|
|
|
public SignatureRSASSAPSS() throws XMLSignatureException { |
|
super(); |
|
} |
|
|
|
public SignatureRSASSAPSS(Provider provider) throws XMLSignatureException { |
|
super(provider); |
|
} |
|
|
|
@Override |
|
public String engineGetURI() { |
|
return XMLSignature.ALGO_ID_SIGNATURE_RSA_PSS; |
|
} |
|
|
|
@Override |
|
protected void engineAddContextToElement(Element element) throws XMLSignatureException { |
|
if (element == null) { |
|
throw new IllegalArgumentException("null element"); |
|
} |
|
|
|
Document doc = element.getOwnerDocument(); |
|
Element rsaPssParamsElement = doc.createElementNS(Constants.XML_DSIG_NS_MORE_07_05, "pss" + ":" + Constants._TAG_RSAPSSPARAMS); |
|
rsaPssParamsElement.setAttributeNS(Constants.NamespaceSpecNS, "xmlns:" + "pss", Constants.XML_DSIG_NS_MORE_07_05); |
|
|
|
Element digestMethodElement = XMLUtils.createElementInSignatureSpace(rsaPssParamsElement.getOwnerDocument(), Constants._TAG_DIGESTMETHOD); |
|
digestMethodElement.setAttributeNS(null, Constants._ATT_ALGORITHM, DigestAlgorithm.fromDigestAlgorithm(pssParameterSpec.getDigestAlgorithm()).getXmlDigestAlgorithm()); |
|
XMLUtils.addReturnToElement(rsaPssParamsElement); |
|
rsaPssParamsElement.appendChild(digestMethodElement); |
|
XMLUtils.addReturnToElement(rsaPssParamsElement); |
|
|
|
Element saltLengthElement = rsaPssParamsElement.getOwnerDocument().createElementNS(Constants.XML_DSIG_NS_MORE_07_05, "pss" + ":" + Constants._TAG_SALTLENGTH); |
|
Text saltLengthText = rsaPssParamsElement.getOwnerDocument().createTextNode(String.valueOf(pssParameterSpec.getSaltLength())); |
|
saltLengthElement.appendChild(saltLengthText); |
|
|
|
rsaPssParamsElement.appendChild(saltLengthElement); |
|
XMLUtils.addReturnToElement(rsaPssParamsElement); |
|
|
|
Element trailerFieldElement = rsaPssParamsElement.getOwnerDocument().createElementNS(Constants.XML_DSIG_NS_MORE_07_05, "pss" + ":" + Constants._TAG_TRAILERFIELD); |
|
Text trailerFieldText = rsaPssParamsElement.getOwnerDocument().createTextNode(String.valueOf(pssParameterSpec.getTrailerField())); |
|
trailerFieldElement.appendChild(trailerFieldText); |
|
|
|
rsaPssParamsElement.appendChild(trailerFieldElement); |
|
XMLUtils.addReturnToElement(rsaPssParamsElement); |
|
|
|
XMLUtils.addReturnToElement(element); |
|
element.appendChild(rsaPssParamsElement); |
|
XMLUtils.addReturnToElement(element); |
|
} |
|
|
|
@Override |
|
protected void engineGetContextFromElement(Element element) throws XMLSignatureException { |
|
if (pssParameterSpec == null) { |
|
super.engineGetContextFromElement(element); |
|
Element rsaPssParams = XMLUtils.selectNode(element.getFirstChild(), Constants.XML_DSIG_NS_MORE_07_05, Constants._TAG_RSAPSSPARAMS, 0); |
|
if (rsaPssParams == null) { |
|
throw new XMLSignatureException("algorithms.MissingRSAPSSParams"); |
|
} |
|
|
|
Element saltLengthNode = XMLUtils.selectNode(rsaPssParams.getFirstChild(), Constants.XML_DSIG_NS_MORE_07_05, Constants._TAG_SALTLENGTH, 0); |
|
Element trailerFieldNode = XMLUtils.selectNode(rsaPssParams.getFirstChild(), Constants.XML_DSIG_NS_MORE_07_05, Constants._TAG_TRAILERFIELD, 0); |
|
int trailerField = 1; |
|
if (trailerFieldNode != null) { |
|
try { |
|
trailerField = Integer.parseInt(trailerFieldNode.getTextContent()); |
|
} catch (NumberFormatException ex) { |
|
throw new XMLSignatureException("empty", new Object[] {"Invalid trailer field value supplied"}); |
|
} |
|
} |
|
String xmlAlgorithm = XMLUtils.selectDsNode(rsaPssParams.getFirstChild(), Constants._TAG_DIGESTMETHOD, 0).getAttribute(Constants._ATT_ALGORITHM); |
|
DigestAlgorithm digestAlgorithm = DigestAlgorithm.fromXmlDigestAlgorithm(xmlAlgorithm); |
|
String digestAlgorithmName = digestAlgorithm.getDigestAlgorithm(); |
|
int saltLength = digestAlgorithm.getSaltLength(); |
|
if (saltLengthNode != null) { |
|
try { |
|
saltLength = Integer.parseInt(saltLengthNode.getTextContent()); |
|
} catch (NumberFormatException ex) { |
|
throw new XMLSignatureException("empty", new Object[] {"Invalid salt length value supplied"}); |
|
} |
|
} |
|
engineSetParameter(new PSSParameterSpec(digestAlgorithmName, "MGF1", new MGF1ParameterSpec(digestAlgorithmName), saltLength, trailerField)); |
|
} |
|
} |
|
|
|
@Override |
|
protected void engineSetParameter(AlgorithmParameterSpec params) throws XMLSignatureException { |
|
pssParameterSpec = (PSSParameterSpec) params; |
|
super.engineSetParameter(params); |
|
} |
|
|
|
} |
|
} |