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

com.github.fashionbrot.tool.enums.AlgorithmEnum Maven / Gradle / Ivy

The newest version!
package com.github.fashionbrot.tool.enums;


import lombok.AllArgsConstructor;
import lombok.Getter;

/**
 * @author fashi
 */

@Getter
@AllArgsConstructor
public enum AlgorithmEnum {
    RSA256("RSA256"),
    RSA512("RSA512"),
    HMAC256("HMAC256");


    private String algorithm;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy