summaryrefslogblamecommitdiffstats
path: root/src/main/java/org/uic/barcode/utils/AlgorithmNameResolver.java
blob: 44913585216756156e35377f95bab967c7d5b5b7 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13




                                       







                                                                                











                                                                                                        

                                                                              
         





                                                                    

                  




                                                              
 











                                                                                           







                                                              
              
     
   
 
 
  
package org.uic.barcode.utils;

import java.security.Provider;
import java.security.Provider.Service;
import java.security.Security;

public class AlgorithmNameResolver {
	
	
	public static final String TYPE_KEY_GENERATOR_ALG = "KeyPairGenerator";
	public static final String TYPE_SIGNATURE_ALG = "Signature";
	
	
    public static String getSignatureAlgorithmName (String oid) throws Exception {
    	
		Provider[] provs = Security.getProviders();
		for (Provider prov : provs) {
		       Service service = prov.getService(AlgorithmNameResolver.TYPE_SIGNATURE_ALG,oid);
		       if (service != null) {
		    	   return service.getAlgorithm();
		       }
		}
		return null;
    	
    }
    
    public static String getName (String type, String oid) throws Exception {
    	
		Provider[] provs = Security.getProviders();
		for (Provider prov : provs) {
		       Service service = prov.getService(type,oid);
		       if (service != null) {
		    	   return service.getAlgorithm();
		       }
		}
		
		if (oid.startsWith("1.2.840.10045")) {
			return "ECDSA";
		} else if (oid.startsWith("1.2.840.10040")) {
			return "DSA";
		}

		return null;
    	
    }
    	
    
   public static String getName(String type, String oid, Provider prov) throws Exception {
	   
       	Service service = prov.getService(type,oid);
       	if (service != null) {
    	   return service.getAlgorithm();
       	}
    	       
		if (oid.startsWith("1.2.840.10045")) {
			return "ECDSA";
		} else if (oid.startsWith("1.2.840.10040")) {
			return "DSA";
		}
		
        return null;
	        	
	}    
    
  


}