org.jcp.xml.dsig.internal.SignerOutputStream Java Examples

The following examples show how to use org.jcp.xml.dsig.internal.SignerOutputStream. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: DOMSignatureMethod.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
boolean verify(Key key, SignedInfo si, byte[] sig,
               XMLValidateContext context)
    throws InvalidKeyException, SignatureException, XMLSignatureException
{
    if (key == null || si == null || sig == null) {
        throw new NullPointerException();
    }

    if (!(key instanceof PublicKey)) {
        throw new InvalidKeyException("key must be PublicKey");
    }
    checkKeySize(context, key);
    if (signature == null) {
        Provider p = (Provider)context.getProperty(
                "org.jcp.xml.dsig.internal.dom.SignatureProvider");
        try {
            signature = getSignature(p);
        } catch (NoSuchAlgorithmException nsae) {
            throw new XMLSignatureException(nsae);
        }
    }
    signature.initVerify((PublicKey)key);
    if (log.isLoggable(java.util.logging.Level.FINE)) {
        log.log(java.util.logging.Level.FINE,
                "Signature provider:" + signature.getProvider());
        log.log(java.util.logging.Level.FINE, "verifying with key: " + key);
    }
    ((DOMSignedInfo)si).canonicalize(context,
                                     new SignerOutputStream(signature));
    byte[] s;
    try {
        // Do any necessary format conversions
        s = preVerifyFormat(key, sig);
    } catch (IOException ioe) {
        throw new XMLSignatureException(ioe);
    }
    return signature.verify(s);
}
 
Example #2
Source File: DOMSignatureMethod.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
byte[] sign(Key key, SignedInfo si, XMLSignContext context)
    throws InvalidKeyException, XMLSignatureException
{
    if (key == null || si == null) {
        throw new NullPointerException();
    }

    if (!(key instanceof PrivateKey)) {
        throw new InvalidKeyException("key must be PrivateKey");
    }
    checkKeySize(context, key);
    if (signature == null) {
        Provider p = (Provider)context.getProperty(
                "org.jcp.xml.dsig.internal.dom.SignatureProvider");
        try {
            signature = getSignature(p);
        } catch (NoSuchAlgorithmException nsae) {
            throw new XMLSignatureException(nsae);
        }
    }
    signature.initSign((PrivateKey)key);
    if (log.isLoggable(java.util.logging.Level.FINE)) {
        log.log(java.util.logging.Level.FINE,
                "Signature provider:" + signature.getProvider());
        log.log(java.util.logging.Level.FINE, "Signing with key: " + key);
    }

    ((DOMSignedInfo)si).canonicalize(context,
                                     new SignerOutputStream(signature));

    try {
        // Return signature with any necessary format conversions
        return postSignFormat(key, signature.sign());
    } catch (SignatureException | IOException ex){
        throw new XMLSignatureException(ex);
    }
}
 
Example #3
Source File: DOMSignatureMethod.java    From jdk8u-jdk with GNU General Public License v2.0 4 votes vote down vote up
byte[] sign(Key key, SignedInfo si, XMLSignContext context)
    throws InvalidKeyException, XMLSignatureException
{
    if (key == null || si == null) {
        throw new NullPointerException();
    }

    if (!(key instanceof PrivateKey)) {
        throw new InvalidKeyException("key must be PrivateKey");
    }
    checkKeySize(context, key);
    if (signature == null) {
        try {
            Provider p = (Provider)context.getProperty
                ("org.jcp.xml.dsig.internal.dom.SignatureProvider");
            signature = (p == null)
                ? Signature.getInstance(getJCAAlgorithm())
                : Signature.getInstance(getJCAAlgorithm(), p);
        } catch (NoSuchAlgorithmException nsae) {
            throw new XMLSignatureException(nsae);
        }
    }
    signature.initSign((PrivateKey)key);
    if (log.isLoggable(java.util.logging.Level.FINE)) {
        log.log(java.util.logging.Level.FINE, "Signature provider:" + signature.getProvider());
        log.log(java.util.logging.Level.FINE, "Signing with key: " + key);
    }

    ((DOMSignedInfo)si).canonicalize(context,
                                     new SignerOutputStream(signature));

    try {
        Type type = getAlgorithmType();
        if (type == Type.DSA) {
            int size = ((DSAKey)key).getParams().getQ().bitLength();
            return JavaUtils.convertDsaASN1toXMLDSIG(signature.sign(),
                                                     size/8);
        } else if (type == Type.ECDSA) {
            return SignatureECDSA.convertASN1toXMLDSIG(signature.sign());
        } else {
            return signature.sign();
        }
    } catch (SignatureException se) {
        throw new XMLSignatureException(se);
    } catch (IOException ioe) {
        throw new XMLSignatureException(ioe);
    }
}
 
Example #4
Source File: DOMSignatureMethod.java    From jdk8u-dev-jdk with GNU General Public License v2.0 4 votes vote down vote up
byte[] sign(Key key, SignedInfo si, XMLSignContext context)
    throws InvalidKeyException, XMLSignatureException
{
    if (key == null || si == null) {
        throw new NullPointerException();
    }

    if (!(key instanceof PrivateKey)) {
        throw new InvalidKeyException("key must be PrivateKey");
    }
    if (signature == null) {
        try {
            Provider p = (Provider)context.getProperty
                ("org.jcp.xml.dsig.internal.dom.SignatureProvider");
            signature = (p == null)
                ? Signature.getInstance(getJCAAlgorithm())
                : Signature.getInstance(getJCAAlgorithm(), p);
        } catch (NoSuchAlgorithmException nsae) {
            throw new XMLSignatureException(nsae);
        }
    }
    signature.initSign((PrivateKey)key);
    if (log.isLoggable(java.util.logging.Level.FINE)) {
        log.log(java.util.logging.Level.FINE, "Signature provider:" + signature.getProvider());
        log.log(java.util.logging.Level.FINE, "Signing with key: " + key);
    }

    ((DOMSignedInfo)si).canonicalize(context,
                                     new SignerOutputStream(signature));

    try {
        Type type = getAlgorithmType();
        if (type == Type.DSA) {
            return convertASN1toXMLDSIG(signature.sign());
        } else if (type == Type.ECDSA) {
            return SignatureECDSA.convertASN1toXMLDSIG(signature.sign());
        } else {
            return signature.sign();
        }
    } catch (SignatureException se) {
        throw new XMLSignatureException(se);
    } catch (IOException ioe) {
        throw new XMLSignatureException(ioe);
    }
}
 
Example #5
Source File: DOMSignatureMethod.java    From jdk8u-dev-jdk with GNU General Public License v2.0 4 votes vote down vote up
boolean verify(Key key, SignedInfo si, byte[] sig,
               XMLValidateContext context)
    throws InvalidKeyException, SignatureException, XMLSignatureException
{
    if (key == null || si == null || sig == null) {
        throw new NullPointerException();
    }

    if (!(key instanceof PublicKey)) {
        throw new InvalidKeyException("key must be PublicKey");
    }
    if (signature == null) {
        try {
            Provider p = (Provider)context.getProperty
                ("org.jcp.xml.dsig.internal.dom.SignatureProvider");
            signature = (p == null)
                ? Signature.getInstance(getJCAAlgorithm())
                : Signature.getInstance(getJCAAlgorithm(), p);
        } catch (NoSuchAlgorithmException nsae) {
            throw new XMLSignatureException(nsae);
        }
    }
    signature.initVerify((PublicKey)key);
    if (log.isLoggable(java.util.logging.Level.FINE)) {
        log.log(java.util.logging.Level.FINE, "Signature provider:" + signature.getProvider());
        log.log(java.util.logging.Level.FINE, "verifying with key: " + key);
    }
    ((DOMSignedInfo)si).canonicalize(context,
                                     new SignerOutputStream(signature));

    try {
        Type type = getAlgorithmType();
        if (type == Type.DSA) {
            return signature.verify(convertXMLDSIGtoASN1(sig));
        } else if (type == Type.ECDSA) {
            return signature.verify(SignatureECDSA.convertXMLDSIGtoASN1(sig));
        } else {
            return signature.verify(sig);
        }
    } catch (IOException ioe) {
        throw new XMLSignatureException(ioe);
    }
}
 
Example #6
Source File: DOMSignatureMethod.java    From jdk8u-jdk with GNU General Public License v2.0 4 votes vote down vote up
byte[] sign(Key key, SignedInfo si, XMLSignContext context)
    throws InvalidKeyException, XMLSignatureException
{
    if (key == null || si == null) {
        throw new NullPointerException();
    }

    if (!(key instanceof PrivateKey)) {
        throw new InvalidKeyException("key must be PrivateKey");
    }
    if (signature == null) {
        try {
            Provider p = (Provider)context.getProperty
                ("org.jcp.xml.dsig.internal.dom.SignatureProvider");
            signature = (p == null)
                ? Signature.getInstance(getJCAAlgorithm())
                : Signature.getInstance(getJCAAlgorithm(), p);
        } catch (NoSuchAlgorithmException nsae) {
            throw new XMLSignatureException(nsae);
        }
    }
    signature.initSign((PrivateKey)key);
    if (log.isLoggable(java.util.logging.Level.FINE)) {
        log.log(java.util.logging.Level.FINE, "Signature provider:" + signature.getProvider());
        log.log(java.util.logging.Level.FINE, "Signing with key: " + key);
    }

    ((DOMSignedInfo)si).canonicalize(context,
                                     new SignerOutputStream(signature));

    try {
        Type type = getAlgorithmType();
        if (type == Type.DSA) {
            return convertASN1toXMLDSIG(signature.sign());
        } else if (type == Type.ECDSA) {
            return SignatureECDSA.convertASN1toXMLDSIG(signature.sign());
        } else {
            return signature.sign();
        }
    } catch (SignatureException se) {
        throw new XMLSignatureException(se);
    } catch (IOException ioe) {
        throw new XMLSignatureException(ioe);
    }
}
 
Example #7
Source File: DOMSignatureMethod.java    From jdk8u-jdk with GNU General Public License v2.0 4 votes vote down vote up
boolean verify(Key key, SignedInfo si, byte[] sig,
               XMLValidateContext context)
    throws InvalidKeyException, SignatureException, XMLSignatureException
{
    if (key == null || si == null || sig == null) {
        throw new NullPointerException();
    }

    if (!(key instanceof PublicKey)) {
        throw new InvalidKeyException("key must be PublicKey");
    }
    if (signature == null) {
        try {
            Provider p = (Provider)context.getProperty
                ("org.jcp.xml.dsig.internal.dom.SignatureProvider");
            signature = (p == null)
                ? Signature.getInstance(getJCAAlgorithm())
                : Signature.getInstance(getJCAAlgorithm(), p);
        } catch (NoSuchAlgorithmException nsae) {
            throw new XMLSignatureException(nsae);
        }
    }
    signature.initVerify((PublicKey)key);
    if (log.isLoggable(java.util.logging.Level.FINE)) {
        log.log(java.util.logging.Level.FINE, "Signature provider:" + signature.getProvider());
        log.log(java.util.logging.Level.FINE, "verifying with key: " + key);
    }
    ((DOMSignedInfo)si).canonicalize(context,
                                     new SignerOutputStream(signature));

    try {
        Type type = getAlgorithmType();
        if (type == Type.DSA) {
            return signature.verify(convertXMLDSIGtoASN1(sig));
        } else if (type == Type.ECDSA) {
            return signature.verify(SignatureECDSA.convertXMLDSIGtoASN1(sig));
        } else {
            return signature.verify(sig);
        }
    } catch (IOException ioe) {
        throw new XMLSignatureException(ioe);
    }
}
 
Example #8
Source File: DOMSignatureMethod.java    From jdk8u_jdk with GNU General Public License v2.0 4 votes vote down vote up
byte[] sign(Key key, SignedInfo si, XMLSignContext context)
    throws InvalidKeyException, XMLSignatureException
{
    if (key == null || si == null) {
        throw new NullPointerException();
    }

    if (!(key instanceof PrivateKey)) {
        throw new InvalidKeyException("key must be PrivateKey");
    }
    checkKeySize(context, key);
    if (signature == null) {
        try {
            Provider p = (Provider)context.getProperty
                ("org.jcp.xml.dsig.internal.dom.SignatureProvider");
            signature = (p == null)
                ? Signature.getInstance(getJCAAlgorithm())
                : Signature.getInstance(getJCAAlgorithm(), p);
        } catch (NoSuchAlgorithmException nsae) {
            throw new XMLSignatureException(nsae);
        }
    }
    signature.initSign((PrivateKey)key);
    if (log.isLoggable(java.util.logging.Level.FINE)) {
        log.log(java.util.logging.Level.FINE, "Signature provider:" + signature.getProvider());
        log.log(java.util.logging.Level.FINE, "Signing with key: " + key);
    }

    ((DOMSignedInfo)si).canonicalize(context,
                                     new SignerOutputStream(signature));

    try {
        Type type = getAlgorithmType();
        if (type == Type.DSA) {
            int size = ((DSAKey)key).getParams().getQ().bitLength();
            return JavaUtils.convertDsaASN1toXMLDSIG(signature.sign(),
                                                     size/8);
        } else if (type == Type.ECDSA) {
            return SignatureECDSA.convertASN1toXMLDSIG(signature.sign());
        } else {
            return signature.sign();
        }
    } catch (SignatureException se) {
        throw new XMLSignatureException(se);
    } catch (IOException ioe) {
        throw new XMLSignatureException(ioe);
    }
}
 
Example #9
Source File: DOMSignatureMethod.java    From jdk8u_jdk with GNU General Public License v2.0 4 votes vote down vote up
boolean verify(Key key, SignedInfo si, byte[] sig,
               XMLValidateContext context)
    throws InvalidKeyException, SignatureException, XMLSignatureException
{
    if (key == null || si == null || sig == null) {
        throw new NullPointerException();
    }

    if (!(key instanceof PublicKey)) {
        throw new InvalidKeyException("key must be PublicKey");
    }
    checkKeySize(context, key);
    if (signature == null) {
        try {
            Provider p = (Provider)context.getProperty
                ("org.jcp.xml.dsig.internal.dom.SignatureProvider");
            signature = (p == null)
                ? Signature.getInstance(getJCAAlgorithm())
                : Signature.getInstance(getJCAAlgorithm(), p);
        } catch (NoSuchAlgorithmException nsae) {
            throw new XMLSignatureException(nsae);
        }
    }
    signature.initVerify((PublicKey)key);
    if (log.isLoggable(java.util.logging.Level.FINE)) {
        log.log(java.util.logging.Level.FINE, "Signature provider:" + signature.getProvider());
        log.log(java.util.logging.Level.FINE, "verifying with key: " + key);
    }
    ((DOMSignedInfo)si).canonicalize(context,
                                     new SignerOutputStream(signature));

    try {
        Type type = getAlgorithmType();
        if (type == Type.DSA) {
            int size = ((DSAKey)key).getParams().getQ().bitLength();
            return signature.verify(JavaUtils.convertDsaXMLDSIGtoASN1(sig,
                                                                   size/8));
        } else if (type == Type.ECDSA) {
            return signature.verify(SignatureECDSA.convertXMLDSIGtoASN1(sig));
        } else {
            return signature.verify(sig);
        }
    } catch (IOException ioe) {
        throw new XMLSignatureException(ioe);
    }
}
 
Example #10
Source File: DOMSignatureMethod.java    From openjdk-8 with GNU General Public License v2.0 4 votes vote down vote up
byte[] sign(Key key, SignedInfo si, XMLSignContext context)
    throws InvalidKeyException, XMLSignatureException
{
    if (key == null || si == null) {
        throw new NullPointerException();
    }

    if (!(key instanceof PrivateKey)) {
        throw new InvalidKeyException("key must be PrivateKey");
    }
    if (signature == null) {
        try {
            Provider p = (Provider)context.getProperty
                ("org.jcp.xml.dsig.internal.dom.SignatureProvider");
            signature = (p == null)
                ? Signature.getInstance(getJCAAlgorithm())
                : Signature.getInstance(getJCAAlgorithm(), p);
        } catch (NoSuchAlgorithmException nsae) {
            throw new XMLSignatureException(nsae);
        }
    }
    signature.initSign((PrivateKey)key);
    if (log.isLoggable(java.util.logging.Level.FINE)) {
        log.log(java.util.logging.Level.FINE, "Signature provider:" + signature.getProvider());
        log.log(java.util.logging.Level.FINE, "Signing with key: " + key);
    }

    ((DOMSignedInfo)si).canonicalize(context,
                                     new SignerOutputStream(signature));

    try {
        Type type = getAlgorithmType();
        if (type == Type.DSA) {
            return convertASN1toXMLDSIG(signature.sign());
        } else if (type == Type.ECDSA) {
            return SignatureECDSA.convertASN1toXMLDSIG(signature.sign());
        } else {
            return signature.sign();
        }
    } catch (SignatureException se) {
        throw new XMLSignatureException(se);
    } catch (IOException ioe) {
        throw new XMLSignatureException(ioe);
    }
}
 
Example #11
Source File: DOMSignatureMethod.java    From openjdk-8 with GNU General Public License v2.0 4 votes vote down vote up
boolean verify(Key key, SignedInfo si, byte[] sig,
               XMLValidateContext context)
    throws InvalidKeyException, SignatureException, XMLSignatureException
{
    if (key == null || si == null || sig == null) {
        throw new NullPointerException();
    }

    if (!(key instanceof PublicKey)) {
        throw new InvalidKeyException("key must be PublicKey");
    }
    if (signature == null) {
        try {
            Provider p = (Provider)context.getProperty
                ("org.jcp.xml.dsig.internal.dom.SignatureProvider");
            signature = (p == null)
                ? Signature.getInstance(getJCAAlgorithm())
                : Signature.getInstance(getJCAAlgorithm(), p);
        } catch (NoSuchAlgorithmException nsae) {
            throw new XMLSignatureException(nsae);
        }
    }
    signature.initVerify((PublicKey)key);
    if (log.isLoggable(java.util.logging.Level.FINE)) {
        log.log(java.util.logging.Level.FINE, "Signature provider:" + signature.getProvider());
        log.log(java.util.logging.Level.FINE, "verifying with key: " + key);
    }
    ((DOMSignedInfo)si).canonicalize(context,
                                     new SignerOutputStream(signature));

    try {
        Type type = getAlgorithmType();
        if (type == Type.DSA) {
            return signature.verify(convertXMLDSIGtoASN1(sig));
        } else if (type == Type.ECDSA) {
            return signature.verify(SignatureECDSA.convertXMLDSIGtoASN1(sig));
        } else {
            return signature.verify(sig);
        }
    } catch (IOException ioe) {
        throw new XMLSignatureException(ioe);
    }
}
 
Example #12
Source File: DOMSignatureMethod.java    From openjdk-8-source with GNU General Public License v2.0 4 votes vote down vote up
byte[] sign(Key key, SignedInfo si, XMLSignContext context)
    throws InvalidKeyException, XMLSignatureException
{
    if (key == null || si == null) {
        throw new NullPointerException();
    }

    if (!(key instanceof PrivateKey)) {
        throw new InvalidKeyException("key must be PrivateKey");
    }
    if (signature == null) {
        try {
            Provider p = (Provider)context.getProperty
                ("org.jcp.xml.dsig.internal.dom.SignatureProvider");
            signature = (p == null)
                ? Signature.getInstance(getJCAAlgorithm())
                : Signature.getInstance(getJCAAlgorithm(), p);
        } catch (NoSuchAlgorithmException nsae) {
            throw new XMLSignatureException(nsae);
        }
    }
    signature.initSign((PrivateKey)key);
    if (log.isLoggable(java.util.logging.Level.FINE)) {
        log.log(java.util.logging.Level.FINE, "Signature provider:" + signature.getProvider());
        log.log(java.util.logging.Level.FINE, "Signing with key: " + key);
    }

    ((DOMSignedInfo)si).canonicalize(context,
                                     new SignerOutputStream(signature));

    try {
        Type type = getAlgorithmType();
        if (type == Type.DSA) {
            return convertASN1toXMLDSIG(signature.sign());
        } else if (type == Type.ECDSA) {
            return SignatureECDSA.convertASN1toXMLDSIG(signature.sign());
        } else {
            return signature.sign();
        }
    } catch (SignatureException se) {
        throw new XMLSignatureException(se);
    } catch (IOException ioe) {
        throw new XMLSignatureException(ioe);
    }
}
 
Example #13
Source File: DOMSignatureMethod.java    From openjdk-8-source with GNU General Public License v2.0 4 votes vote down vote up
boolean verify(Key key, SignedInfo si, byte[] sig,
               XMLValidateContext context)
    throws InvalidKeyException, SignatureException, XMLSignatureException
{
    if (key == null || si == null || sig == null) {
        throw new NullPointerException();
    }

    if (!(key instanceof PublicKey)) {
        throw new InvalidKeyException("key must be PublicKey");
    }
    if (signature == null) {
        try {
            Provider p = (Provider)context.getProperty
                ("org.jcp.xml.dsig.internal.dom.SignatureProvider");
            signature = (p == null)
                ? Signature.getInstance(getJCAAlgorithm())
                : Signature.getInstance(getJCAAlgorithm(), p);
        } catch (NoSuchAlgorithmException nsae) {
            throw new XMLSignatureException(nsae);
        }
    }
    signature.initVerify((PublicKey)key);
    if (log.isLoggable(java.util.logging.Level.FINE)) {
        log.log(java.util.logging.Level.FINE, "Signature provider:" + signature.getProvider());
        log.log(java.util.logging.Level.FINE, "verifying with key: " + key);
    }
    ((DOMSignedInfo)si).canonicalize(context,
                                     new SignerOutputStream(signature));

    try {
        Type type = getAlgorithmType();
        if (type == Type.DSA) {
            return signature.verify(convertXMLDSIGtoASN1(sig));
        } else if (type == Type.ECDSA) {
            return signature.verify(SignatureECDSA.convertXMLDSIGtoASN1(sig));
        } else {
            return signature.verify(sig);
        }
    } catch (IOException ioe) {
        throw new XMLSignatureException(ioe);
    }
}
 
Example #14
Source File: DOMSignatureMethod.java    From hottub with GNU General Public License v2.0 4 votes vote down vote up
byte[] sign(Key key, SignedInfo si, XMLSignContext context)
    throws InvalidKeyException, XMLSignatureException
{
    if (key == null || si == null) {
        throw new NullPointerException();
    }

    if (!(key instanceof PrivateKey)) {
        throw new InvalidKeyException("key must be PrivateKey");
    }
    if (signature == null) {
        try {
            Provider p = (Provider)context.getProperty
                ("org.jcp.xml.dsig.internal.dom.SignatureProvider");
            signature = (p == null)
                ? Signature.getInstance(getJCAAlgorithm())
                : Signature.getInstance(getJCAAlgorithm(), p);
        } catch (NoSuchAlgorithmException nsae) {
            throw new XMLSignatureException(nsae);
        }
    }
    signature.initSign((PrivateKey)key);
    if (log.isLoggable(java.util.logging.Level.FINE)) {
        log.log(java.util.logging.Level.FINE, "Signature provider:" + signature.getProvider());
        log.log(java.util.logging.Level.FINE, "Signing with key: " + key);
    }

    ((DOMSignedInfo)si).canonicalize(context,
                                     new SignerOutputStream(signature));

    try {
        Type type = getAlgorithmType();
        if (type == Type.DSA) {
            int size = ((DSAKey)key).getParams().getQ().bitLength();
            return JavaUtils.convertDsaASN1toXMLDSIG(signature.sign(),
                                                     size/8);
        } else if (type == Type.ECDSA) {
            return SignatureECDSA.convertASN1toXMLDSIG(signature.sign());
        } else {
            return signature.sign();
        }
    } catch (SignatureException se) {
        throw new XMLSignatureException(se);
    } catch (IOException ioe) {
        throw new XMLSignatureException(ioe);
    }
}
 
Example #15
Source File: DOMSignatureMethod.java    From hottub with GNU General Public License v2.0 4 votes vote down vote up
boolean verify(Key key, SignedInfo si, byte[] sig,
               XMLValidateContext context)
    throws InvalidKeyException, SignatureException, XMLSignatureException
{
    if (key == null || si == null || sig == null) {
        throw new NullPointerException();
    }

    if (!(key instanceof PublicKey)) {
        throw new InvalidKeyException("key must be PublicKey");
    }
    if (signature == null) {
        try {
            Provider p = (Provider)context.getProperty
                ("org.jcp.xml.dsig.internal.dom.SignatureProvider");
            signature = (p == null)
                ? Signature.getInstance(getJCAAlgorithm())
                : Signature.getInstance(getJCAAlgorithm(), p);
        } catch (NoSuchAlgorithmException nsae) {
            throw new XMLSignatureException(nsae);
        }
    }
    signature.initVerify((PublicKey)key);
    if (log.isLoggable(java.util.logging.Level.FINE)) {
        log.log(java.util.logging.Level.FINE, "Signature provider:" + signature.getProvider());
        log.log(java.util.logging.Level.FINE, "verifying with key: " + key);
    }
    ((DOMSignedInfo)si).canonicalize(context,
                                     new SignerOutputStream(signature));

    try {
        Type type = getAlgorithmType();
        if (type == Type.DSA) {
            int size = ((DSAKey)key).getParams().getQ().bitLength();
            return signature.verify(JavaUtils.convertDsaXMLDSIGtoASN1(sig,
                                                                   size/8));
        } else if (type == Type.ECDSA) {
            return signature.verify(SignatureECDSA.convertXMLDSIGtoASN1(sig));
        } else {
            return signature.verify(sig);
        }
    } catch (IOException ioe) {
        throw new XMLSignatureException(ioe);
    }
}
 
Example #16
Source File: DOMSignatureMethod.java    From dragonwell8_jdk with GNU General Public License v2.0 4 votes vote down vote up
boolean verify(Key key, SignedInfo si, byte[] sig,
               XMLValidateContext context)
    throws InvalidKeyException, SignatureException, XMLSignatureException
{
    if (key == null || si == null || sig == null) {
        throw new NullPointerException();
    }

    if (!(key instanceof PublicKey)) {
        throw new InvalidKeyException("key must be PublicKey");
    }
    checkKeySize(context, key);
    if (signature == null) {
        try {
            Provider p = (Provider)context.getProperty
                ("org.jcp.xml.dsig.internal.dom.SignatureProvider");
            signature = (p == null)
                ? Signature.getInstance(getJCAAlgorithm())
                : Signature.getInstance(getJCAAlgorithm(), p);
        } catch (NoSuchAlgorithmException nsae) {
            throw new XMLSignatureException(nsae);
        }
    }
    signature.initVerify((PublicKey)key);
    if (log.isLoggable(java.util.logging.Level.FINE)) {
        log.log(java.util.logging.Level.FINE, "Signature provider:" + signature.getProvider());
        log.log(java.util.logging.Level.FINE, "verifying with key: " + key);
    }
    ((DOMSignedInfo)si).canonicalize(context,
                                     new SignerOutputStream(signature));

    try {
        Type type = getAlgorithmType();
        if (type == Type.DSA) {
            int size = ((DSAKey)key).getParams().getQ().bitLength();
            return signature.verify(JavaUtils.convertDsaXMLDSIGtoASN1(sig,
                                                                   size/8));
        } else if (type == Type.ECDSA) {
            return signature.verify(SignatureECDSA.convertXMLDSIGtoASN1(sig));
        } else {
            return signature.verify(sig);
        }
    } catch (IOException ioe) {
        throw new XMLSignatureException(ioe);
    }
}
 
Example #17
Source File: DOMSignatureMethod.java    From jdk8u-jdk with GNU General Public License v2.0 4 votes vote down vote up
boolean verify(Key key, SignedInfo si, byte[] sig,
               XMLValidateContext context)
    throws InvalidKeyException, SignatureException, XMLSignatureException
{
    if (key == null || si == null || sig == null) {
        throw new NullPointerException();
    }

    if (!(key instanceof PublicKey)) {
        throw new InvalidKeyException("key must be PublicKey");
    }
    checkKeySize(context, key);
    if (signature == null) {
        try {
            Provider p = (Provider)context.getProperty
                ("org.jcp.xml.dsig.internal.dom.SignatureProvider");
            signature = (p == null)
                ? Signature.getInstance(getJCAAlgorithm())
                : Signature.getInstance(getJCAAlgorithm(), p);
        } catch (NoSuchAlgorithmException nsae) {
            throw new XMLSignatureException(nsae);
        }
    }
    signature.initVerify((PublicKey)key);
    if (log.isLoggable(java.util.logging.Level.FINE)) {
        log.log(java.util.logging.Level.FINE, "Signature provider:" + signature.getProvider());
        log.log(java.util.logging.Level.FINE, "verifying with key: " + key);
    }
    ((DOMSignedInfo)si).canonicalize(context,
                                     new SignerOutputStream(signature));

    try {
        Type type = getAlgorithmType();
        if (type == Type.DSA) {
            int size = ((DSAKey)key).getParams().getQ().bitLength();
            return signature.verify(JavaUtils.convertDsaXMLDSIGtoASN1(sig,
                                                                   size/8));
        } else if (type == Type.ECDSA) {
            return signature.verify(SignatureECDSA.convertXMLDSIGtoASN1(sig));
        } else {
            return signature.verify(sig);
        }
    } catch (IOException ioe) {
        throw new XMLSignatureException(ioe);
    }
}
 
Example #18
Source File: DOMSignatureMethod.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 4 votes vote down vote up
byte[] sign(Key key, SignedInfo si, XMLSignContext context)
    throws InvalidKeyException, XMLSignatureException
{
    if (key == null || si == null) {
        throw new NullPointerException();
    }

    if (!(key instanceof PrivateKey)) {
        throw new InvalidKeyException("key must be PrivateKey");
    }
    checkKeySize(context, key);
    if (signature == null) {
        try {
            Provider p = (Provider)context.getProperty
                ("org.jcp.xml.dsig.internal.dom.SignatureProvider");
            signature = (p == null)
                ? Signature.getInstance(getJCAAlgorithm())
                : Signature.getInstance(getJCAAlgorithm(), p);
        } catch (NoSuchAlgorithmException nsae) {
            throw new XMLSignatureException(nsae);
        }
    }
    signature.initSign((PrivateKey)key);
    if (log.isLoggable(java.util.logging.Level.FINE)) {
        log.log(java.util.logging.Level.FINE, "Signature provider:" + signature.getProvider());
        log.log(java.util.logging.Level.FINE, "Signing with key: " + key);
    }

    ((DOMSignedInfo)si).canonicalize(context,
                                     new SignerOutputStream(signature));

    try {
        Type type = getAlgorithmType();
        if (type == Type.DSA) {
            int size = ((DSAKey)key).getParams().getQ().bitLength();
            return JavaUtils.convertDsaASN1toXMLDSIG(signature.sign(),
                                                     size/8);
        } else if (type == Type.ECDSA) {
            return SignatureECDSA.convertASN1toXMLDSIG(signature.sign());
        } else {
            return signature.sign();
        }
    } catch (SignatureException se) {
        throw new XMLSignatureException(se);
    } catch (IOException ioe) {
        throw new XMLSignatureException(ioe);
    }
}
 
Example #19
Source File: DOMSignatureMethod.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 4 votes vote down vote up
boolean verify(Key key, SignedInfo si, byte[] sig,
               XMLValidateContext context)
    throws InvalidKeyException, SignatureException, XMLSignatureException
{
    if (key == null || si == null || sig == null) {
        throw new NullPointerException();
    }

    if (!(key instanceof PublicKey)) {
        throw new InvalidKeyException("key must be PublicKey");
    }
    checkKeySize(context, key);
    if (signature == null) {
        try {
            Provider p = (Provider)context.getProperty
                ("org.jcp.xml.dsig.internal.dom.SignatureProvider");
            signature = (p == null)
                ? Signature.getInstance(getJCAAlgorithm())
                : Signature.getInstance(getJCAAlgorithm(), p);
        } catch (NoSuchAlgorithmException nsae) {
            throw new XMLSignatureException(nsae);
        }
    }
    signature.initVerify((PublicKey)key);
    if (log.isLoggable(java.util.logging.Level.FINE)) {
        log.log(java.util.logging.Level.FINE, "Signature provider:" + signature.getProvider());
        log.log(java.util.logging.Level.FINE, "verifying with key: " + key);
    }
    ((DOMSignedInfo)si).canonicalize(context,
                                     new SignerOutputStream(signature));

    try {
        Type type = getAlgorithmType();
        if (type == Type.DSA) {
            int size = ((DSAKey)key).getParams().getQ().bitLength();
            return signature.verify(JavaUtils.convertDsaXMLDSIGtoASN1(sig,
                                                                   size/8));
        } else if (type == Type.ECDSA) {
            return signature.verify(SignatureECDSA.convertXMLDSIGtoASN1(sig));
        } else {
            return signature.verify(sig);
        }
    } catch (IOException ioe) {
        throw new XMLSignatureException(ioe);
    }
}
 
Example #20
Source File: DOMSignatureMethod.java    From openjdk-jdk8u with GNU General Public License v2.0 4 votes vote down vote up
byte[] sign(Key key, SignedInfo si, XMLSignContext context)
    throws InvalidKeyException, XMLSignatureException
{
    if (key == null || si == null) {
        throw new NullPointerException();
    }

    if (!(key instanceof PrivateKey)) {
        throw new InvalidKeyException("key must be PrivateKey");
    }
    checkKeySize(context, key);
    if (signature == null) {
        try {
            Provider p = (Provider)context.getProperty
                ("org.jcp.xml.dsig.internal.dom.SignatureProvider");
            signature = (p == null)
                ? Signature.getInstance(getJCAAlgorithm())
                : Signature.getInstance(getJCAAlgorithm(), p);
        } catch (NoSuchAlgorithmException nsae) {
            throw new XMLSignatureException(nsae);
        }
    }
    signature.initSign((PrivateKey)key);
    if (log.isLoggable(java.util.logging.Level.FINE)) {
        log.log(java.util.logging.Level.FINE, "Signature provider:" + signature.getProvider());
        log.log(java.util.logging.Level.FINE, "Signing with key: " + key);
    }

    ((DOMSignedInfo)si).canonicalize(context,
                                     new SignerOutputStream(signature));

    try {
        Type type = getAlgorithmType();
        if (type == Type.DSA) {
            int size = ((DSAKey)key).getParams().getQ().bitLength();
            return JavaUtils.convertDsaASN1toXMLDSIG(signature.sign(),
                                                     size/8);
        } else if (type == Type.ECDSA) {
            return SignatureECDSA.convertASN1toXMLDSIG(signature.sign());
        } else {
            return signature.sign();
        }
    } catch (SignatureException se) {
        throw new XMLSignatureException(se);
    } catch (IOException ioe) {
        throw new XMLSignatureException(ioe);
    }
}
 
Example #21
Source File: DOMSignatureMethod.java    From openjdk-jdk8u with GNU General Public License v2.0 4 votes vote down vote up
boolean verify(Key key, SignedInfo si, byte[] sig,
               XMLValidateContext context)
    throws InvalidKeyException, SignatureException, XMLSignatureException
{
    if (key == null || si == null || sig == null) {
        throw new NullPointerException();
    }

    if (!(key instanceof PublicKey)) {
        throw new InvalidKeyException("key must be PublicKey");
    }
    checkKeySize(context, key);
    if (signature == null) {
        try {
            Provider p = (Provider)context.getProperty
                ("org.jcp.xml.dsig.internal.dom.SignatureProvider");
            signature = (p == null)
                ? Signature.getInstance(getJCAAlgorithm())
                : Signature.getInstance(getJCAAlgorithm(), p);
        } catch (NoSuchAlgorithmException nsae) {
            throw new XMLSignatureException(nsae);
        }
    }
    signature.initVerify((PublicKey)key);
    if (log.isLoggable(java.util.logging.Level.FINE)) {
        log.log(java.util.logging.Level.FINE, "Signature provider:" + signature.getProvider());
        log.log(java.util.logging.Level.FINE, "verifying with key: " + key);
    }
    ((DOMSignedInfo)si).canonicalize(context,
                                     new SignerOutputStream(signature));

    try {
        Type type = getAlgorithmType();
        if (type == Type.DSA) {
            int size = ((DSAKey)key).getParams().getQ().bitLength();
            return signature.verify(JavaUtils.convertDsaXMLDSIGtoASN1(sig,
                                                                   size/8));
        } else if (type == Type.ECDSA) {
            return signature.verify(SignatureECDSA.convertXMLDSIGtoASN1(sig));
        } else {
            return signature.verify(sig);
        }
    } catch (IOException ioe) {
        throw new XMLSignatureException(ioe);
    }
}
 
Example #22
Source File: DOMSignatureMethod.java    From jdk8u60 with GNU General Public License v2.0 4 votes vote down vote up
byte[] sign(Key key, SignedInfo si, XMLSignContext context)
    throws InvalidKeyException, XMLSignatureException
{
    if (key == null || si == null) {
        throw new NullPointerException();
    }

    if (!(key instanceof PrivateKey)) {
        throw new InvalidKeyException("key must be PrivateKey");
    }
    if (signature == null) {
        try {
            Provider p = (Provider)context.getProperty
                ("org.jcp.xml.dsig.internal.dom.SignatureProvider");
            signature = (p == null)
                ? Signature.getInstance(getJCAAlgorithm())
                : Signature.getInstance(getJCAAlgorithm(), p);
        } catch (NoSuchAlgorithmException nsae) {
            throw new XMLSignatureException(nsae);
        }
    }
    signature.initSign((PrivateKey)key);
    if (log.isLoggable(java.util.logging.Level.FINE)) {
        log.log(java.util.logging.Level.FINE, "Signature provider:" + signature.getProvider());
        log.log(java.util.logging.Level.FINE, "Signing with key: " + key);
    }

    ((DOMSignedInfo)si).canonicalize(context,
                                     new SignerOutputStream(signature));

    try {
        Type type = getAlgorithmType();
        if (type == Type.DSA) {
            return convertASN1toXMLDSIG(signature.sign());
        } else if (type == Type.ECDSA) {
            return SignatureECDSA.convertASN1toXMLDSIG(signature.sign());
        } else {
            return signature.sign();
        }
    } catch (SignatureException se) {
        throw new XMLSignatureException(se);
    } catch (IOException ioe) {
        throw new XMLSignatureException(ioe);
    }
}
 
Example #23
Source File: DOMSignatureMethod.java    From jdk8u60 with GNU General Public License v2.0 4 votes vote down vote up
boolean verify(Key key, SignedInfo si, byte[] sig,
               XMLValidateContext context)
    throws InvalidKeyException, SignatureException, XMLSignatureException
{
    if (key == null || si == null || sig == null) {
        throw new NullPointerException();
    }

    if (!(key instanceof PublicKey)) {
        throw new InvalidKeyException("key must be PublicKey");
    }
    if (signature == null) {
        try {
            Provider p = (Provider)context.getProperty
                ("org.jcp.xml.dsig.internal.dom.SignatureProvider");
            signature = (p == null)
                ? Signature.getInstance(getJCAAlgorithm())
                : Signature.getInstance(getJCAAlgorithm(), p);
        } catch (NoSuchAlgorithmException nsae) {
            throw new XMLSignatureException(nsae);
        }
    }
    signature.initVerify((PublicKey)key);
    if (log.isLoggable(java.util.logging.Level.FINE)) {
        log.log(java.util.logging.Level.FINE, "Signature provider:" + signature.getProvider());
        log.log(java.util.logging.Level.FINE, "verifying with key: " + key);
    }
    ((DOMSignedInfo)si).canonicalize(context,
                                     new SignerOutputStream(signature));

    try {
        Type type = getAlgorithmType();
        if (type == Type.DSA) {
            return signature.verify(convertXMLDSIGtoASN1(sig));
        } else if (type == Type.ECDSA) {
            return signature.verify(SignatureECDSA.convertXMLDSIGtoASN1(sig));
        } else {
            return signature.verify(sig);
        }
    } catch (IOException ioe) {
        throw new XMLSignatureException(ioe);
    }
}
 
Example #24
Source File: DOMSignatureMethod.java    From TencentKona-8 with GNU General Public License v2.0 4 votes vote down vote up
byte[] sign(Key key, SignedInfo si, XMLSignContext context)
    throws InvalidKeyException, XMLSignatureException
{
    if (key == null || si == null) {
        throw new NullPointerException();
    }

    if (!(key instanceof PrivateKey)) {
        throw new InvalidKeyException("key must be PrivateKey");
    }
    checkKeySize(context, key);
    if (signature == null) {
        try {
            Provider p = (Provider)context.getProperty
                ("org.jcp.xml.dsig.internal.dom.SignatureProvider");
            signature = (p == null)
                ? Signature.getInstance(getJCAAlgorithm())
                : Signature.getInstance(getJCAAlgorithm(), p);
        } catch (NoSuchAlgorithmException nsae) {
            throw new XMLSignatureException(nsae);
        }
    }
    signature.initSign((PrivateKey)key);
    if (log.isLoggable(java.util.logging.Level.FINE)) {
        log.log(java.util.logging.Level.FINE, "Signature provider:" + signature.getProvider());
        log.log(java.util.logging.Level.FINE, "Signing with key: " + key);
    }

    ((DOMSignedInfo)si).canonicalize(context,
                                     new SignerOutputStream(signature));

    try {
        Type type = getAlgorithmType();
        if (type == Type.DSA) {
            int size = ((DSAKey)key).getParams().getQ().bitLength();
            return JavaUtils.convertDsaASN1toXMLDSIG(signature.sign(),
                                                     size/8);
        } else if (type == Type.ECDSA) {
            return SignatureECDSA.convertASN1toXMLDSIG(signature.sign());
        } else {
            return signature.sign();
        }
    } catch (SignatureException se) {
        throw new XMLSignatureException(se);
    } catch (IOException ioe) {
        throw new XMLSignatureException(ioe);
    }
}
 
Example #25
Source File: DOMSignatureMethod.java    From TencentKona-8 with GNU General Public License v2.0 4 votes vote down vote up
boolean verify(Key key, SignedInfo si, byte[] sig,
               XMLValidateContext context)
    throws InvalidKeyException, SignatureException, XMLSignatureException
{
    if (key == null || si == null || sig == null) {
        throw new NullPointerException();
    }

    if (!(key instanceof PublicKey)) {
        throw new InvalidKeyException("key must be PublicKey");
    }
    checkKeySize(context, key);
    if (signature == null) {
        try {
            Provider p = (Provider)context.getProperty
                ("org.jcp.xml.dsig.internal.dom.SignatureProvider");
            signature = (p == null)
                ? Signature.getInstance(getJCAAlgorithm())
                : Signature.getInstance(getJCAAlgorithm(), p);
        } catch (NoSuchAlgorithmException nsae) {
            throw new XMLSignatureException(nsae);
        }
    }
    signature.initVerify((PublicKey)key);
    if (log.isLoggable(java.util.logging.Level.FINE)) {
        log.log(java.util.logging.Level.FINE, "Signature provider:" + signature.getProvider());
        log.log(java.util.logging.Level.FINE, "verifying with key: " + key);
    }
    ((DOMSignedInfo)si).canonicalize(context,
                                     new SignerOutputStream(signature));

    try {
        Type type = getAlgorithmType();
        if (type == Type.DSA) {
            int size = ((DSAKey)key).getParams().getQ().bitLength();
            return signature.verify(JavaUtils.convertDsaXMLDSIGtoASN1(sig,
                                                                   size/8));
        } else if (type == Type.ECDSA) {
            return signature.verify(SignatureECDSA.convertXMLDSIGtoASN1(sig));
        } else {
            return signature.verify(sig);
        }
    } catch (IOException ioe) {
        throw new XMLSignatureException(ioe);
    }
}
 
Example #26
Source File: DOMSignatureMethod.java    From dragonwell8_jdk with GNU General Public License v2.0 4 votes vote down vote up
byte[] sign(Key key, SignedInfo si, XMLSignContext context)
    throws InvalidKeyException, XMLSignatureException
{
    if (key == null || si == null) {
        throw new NullPointerException();
    }

    if (!(key instanceof PrivateKey)) {
        throw new InvalidKeyException("key must be PrivateKey");
    }
    checkKeySize(context, key);
    if (signature == null) {
        try {
            Provider p = (Provider)context.getProperty
                ("org.jcp.xml.dsig.internal.dom.SignatureProvider");
            signature = (p == null)
                ? Signature.getInstance(getJCAAlgorithm())
                : Signature.getInstance(getJCAAlgorithm(), p);
        } catch (NoSuchAlgorithmException nsae) {
            throw new XMLSignatureException(nsae);
        }
    }
    signature.initSign((PrivateKey)key);
    if (log.isLoggable(java.util.logging.Level.FINE)) {
        log.log(java.util.logging.Level.FINE, "Signature provider:" + signature.getProvider());
        log.log(java.util.logging.Level.FINE, "Signing with key: " + key);
    }

    ((DOMSignedInfo)si).canonicalize(context,
                                     new SignerOutputStream(signature));

    try {
        Type type = getAlgorithmType();
        if (type == Type.DSA) {
            int size = ((DSAKey)key).getParams().getQ().bitLength();
            return JavaUtils.convertDsaASN1toXMLDSIG(signature.sign(),
                                                     size/8);
        } else if (type == Type.ECDSA) {
            return SignatureECDSA.convertASN1toXMLDSIG(signature.sign());
        } else {
            return signature.sign();
        }
    } catch (SignatureException se) {
        throw new XMLSignatureException(se);
    } catch (IOException ioe) {
        throw new XMLSignatureException(ioe);
    }
}