kz.greetgo.security.crypto.CryptoSource 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;
import java.security.MessageDigest;
import java.security.PrivateKey;
import java.security.PublicKey;
import java.security.SecureRandom;
import javax.crypto.Cipher;
public interface CryptoSource {
Cipher getCipher();
PublicKey getPublicKey();
PrivateKey getPrivateKey();
MessageDigest getMessageDigest();
SecureRandom getRandom();
int getBlockSize();
}