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

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

The 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