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

dev.mayuna.timestop.config.EncryptionConfig Maven / Gradle / Ivy

package dev.mayuna.timestop.config;

import lombok.Getter;
import lombok.Setter;

@Getter @Setter
public class EncryptionConfig {

    private int asymmetricKeySize = 2048;
    private int symmetricKeySize = 256;
    public String asymmetricKeyType = "RSA";
    public String symmetricKeyType = "AES";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy