Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
import java.security.*;
import javax.xml.crypto.*;
import javax.xml.crypto.dsig.*;

public class Main {
    /**
     * @throws NoSuchMechanismException
     */
    static XMLSignatureFactory getDOMInstance() {

        try {
            return XMLSignatureFactory.getInstance("DOM");
        } catch (NoSuchMechanismException nsme) {
            Provider provider;

            try {
                Class<?> clazz = Class.forName("org.jcp.xml.dsig.internal.dom.XMLDSigRI");

                provider = (Provider) clazz.newInstance();
            } catch (Exception e) {
                throw new NoSuchMechanismException(e);
            }

            return XMLSignatureFactory.getInstance("DOM", provider);
        }
    }
}