io.github.qsy7.encryption.property.EncryptionKeyLength Maven / Gradle / Ivy
The newest version!
package io.github.qsy7.encryption.property;
import io.github.qsy7.property.api.annotation.DefaultValue;
import io.github.qsy7.property.api.property.ConfigurableProperty;
public interface EncryptionKeyLength extends ConfigurableProperty {
@DefaultValue int L_256 = 32;
int L_512 = 64;
}