| Package | Description |
|---|---|
| cz.d1x.dxcrypto.encryption |
| Modifier and Type | Method and Description |
|---|---|
byte[] |
AsymmetricCryptoAlgorithm.decrypt(byte[] input) |
byte[] |
SymmetricCryptoAlgorithm.decrypt(byte[] input) |
byte[] |
EncryptionAlgorithm.decrypt(byte[] input)
Decrypts specified array of bytes.
|
String |
AsymmetricCryptoAlgorithm.decrypt(String input) |
String |
SymmetricCryptoAlgorithm.decrypt(String input) |
String |
EncryptionAlgorithm.decrypt(String input)
Decrypts specified input text using default UTF-8 encoding.
|
byte[] |
AsymmetricCryptoAlgorithm.encrypt(byte[] input) |
byte[] |
SymmetricCryptoAlgorithm.encrypt(byte[] input) |
byte[] |
EncryptionAlgorithm.encrypt(byte[] input)
Encrypts specified array of bytes.
|
String |
AsymmetricCryptoAlgorithm.encrypt(String input) |
String |
SymmetricCryptoAlgorithm.encrypt(String input) |
String |
EncryptionAlgorithm.encrypt(String input)
Encrypts specified input text.
|
Key |
PBKDF2KeyFactory.getKey() |
Key |
RSAPublicKeyFactory.getKey() |
K |
KeyFactory.getKey()
Gets a key for encryption or decryption.
|
Key |
PBEKeyFactory.getKey() |
Key |
RSAPrivateKeyFactory.getKey() |
| Constructor and Description |
|---|
RSAKeysGenerator()
Creates a new generator of RSA keys.
|
SymmetricCryptoAlgorithm(String cipherName,
KeyFactory<Key> keyFactory,
CombineSplitAlgorithm combineSplitAlgorithm,
BytesRepresentation bytesRepresentation,
String encoding)
Creates a new instance of base symmetric algorithm.
|
Copyright © 2015. All rights reserved.