kz.greetgo.security.crypto.CryptoSourceConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of greetgo.security Show documentation
Show all versions of greetgo.security Show documentation
Security infrastructure used in greetgo!
package kz.greetgo.security.crypto;
public interface CryptoSourceConfig {
String secureRandomAlgorithm();
String messageDigestAlgorithm();
String keyPairGeneratorAlgorithm();
String cipherAlgorithm();
String keyFactoryAlgorithm();
int blockSize();
}