All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.sklsft.commons.crypto.CryptoUtils Maven / Gradle / Ivy

There is a newer version: 5.0.0-M1
Show newest version
package org.sklsft.commons.crypto;

public class CryptoUtils {

	public static String getKeyAlgorithm(String algorithm) {
		
		int val = algorithm.indexOf("/");
		if (-1 == val) {
			return algorithm;
		}
		
		return algorithm.substring(0, algorithm.indexOf("/"));
		
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy