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

org.sklsft.commons.crypto.signature.RsaAlgorithms Maven / Gradle / Ivy

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

public enum RsaAlgorithms {
	
	RS256("SHA256withRSA"),
	RS512("SHA512withRSA");
	
	private RsaAlgorithms(String name) {
		this.name = name;
	}
	
	private String name;

	public String getFullName() {
		return name;
	}	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy