public interface EncryptorFactory
Factory interface for constructing Encryptor
instances.
Modifier and Type | Field and Description |
---|---|
static EncryptorFactory |
AES
AES
EncryptorFactory implementation |
static EncryptorFactory |
DES
DES
EncryptorFactory implementation |
Modifier and Type | Method and Description |
---|---|
Encryptor |
messageEncryptor(java.security.Key key)
Returns an
Encryptor instance usable for message encryption. |
Encryptor |
streamEncryptor(java.security.Key key)
Returns an
Encryptor instance usable for stream encryption. |
static final EncryptorFactory AES
EncryptorFactory
implementationstatic final EncryptorFactory DES
EncryptorFactory
implementationEncryptor messageEncryptor(java.security.Key key)
Returns an Encryptor
instance usable for message encryption.
key
- Encryptor streamEncryptor(java.security.Key key)
Returns an Encryptor
instance usable for stream encryption.
key
-