com.github.fashionbrot.tool.enums.AlgorithmEnum Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mars-tool Show documentation
Show all versions of mars-tool Show documentation
mars-tool 工具包 https://github.com/fashionbrot/mars-tool
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;
}