Skip navigation links
A B C D E F G H I K M N O P R S W 

A

AbstractCryptor<C,K> - Class in de.alpharogroup.crypto.core
The abstract class AbstractCryptor provides factory methods that may or must be overwritten dependent of the specific implementor class.
AbstractCryptor(CryptModel<C, K>) - Constructor for class de.alpharogroup.crypto.core.AbstractCryptor
Constructor with the given CryptModel.
AbstractCryptor(K) - Constructor for class de.alpharogroup.crypto.core.AbstractCryptor
Constructor with a key.
AbstractDecryptor<C,K> - Class in de.alpharogroup.crypto.core
The abstract class AbstractDecryptor can be extended for providing the decrypting feature.
AbstractDecryptor(CryptModel<C, K>) - Constructor for class de.alpharogroup.crypto.core.AbstractDecryptor
Constructor with the given CryptModel.
AbstractDecryptor(K) - Constructor for class de.alpharogroup.crypto.core.AbstractDecryptor
Constructor with a key.
AbstractEncryptor<C,K> - Class in de.alpharogroup.crypto.core
The abstract class AbstractEncryptor can be extended for providing the encrypting feature.
AbstractEncryptor(CryptModel<C, K>) - Constructor for class de.alpharogroup.crypto.core.AbstractEncryptor
Constructor with the given CryptModel.
AbstractEncryptor(K) - Constructor for class de.alpharogroup.crypto.core.AbstractEncryptor
Constructor with a key.
AbstractFileDecryptor - Class in de.alpharogroup.crypto.core
The abstract class AbstractFileDecryptor provides a base implementation for decrypting File objects.
AbstractFileDecryptor(CryptModel<Cipher, String>) - Constructor for class de.alpharogroup.crypto.core.AbstractFileDecryptor
Constructor with the given CryptModel.
AbstractFileDecryptor(String) - Constructor for class de.alpharogroup.crypto.core.AbstractFileDecryptor
Constructor with a private key.
AbstractFileEncryptor - Class in de.alpharogroup.crypto.core
The abstract class AbstractFileEncryptor provides a base implementation for encrypting File objects.
AbstractFileEncryptor(CryptModel<Cipher, String>) - Constructor for class de.alpharogroup.crypto.core.AbstractFileEncryptor
Constructor with the given CryptModel.
AbstractFileEncryptor(String) - Constructor for class de.alpharogroup.crypto.core.AbstractFileEncryptor
Constructor with a private key.
AbstractStringDecryptor - Class in de.alpharogroup.crypto.core
The abstract class AbstractStringDecryptor provides a base implementation for decrypting String objects.
AbstractStringDecryptor(CryptModel<Cipher, String>) - Constructor for class de.alpharogroup.crypto.core.AbstractStringDecryptor
Constructor with the given CryptModel.
AbstractStringDecryptor(String) - Constructor for class de.alpharogroup.crypto.core.AbstractStringDecryptor
Constructor with a private key.
AbstractStringEncryptor - Class in de.alpharogroup.crypto.core
The abstract class AbstractStringEncryptor provides a base implementation for encrypting String objects.
AbstractStringEncryptor(CryptModel<Cipher, String>) - Constructor for class de.alpharogroup.crypto.core.AbstractStringEncryptor
Constructor with the given CryptModel.
AbstractStringEncryptor(String) - Constructor for class de.alpharogroup.crypto.core.AbstractStringEncryptor
Constructor with a private key.

B

BaseCryptor - Class in de.alpharogroup.crypto.core
The abstract class BaseCryptor provides a base implementation for some methods of the AbstractCryptor.
BaseCryptor(CryptModel<Cipher, String>) - Constructor for class de.alpharogroup.crypto.core.BaseCryptor
Constructor with the given CryptModel.
BaseCryptor(String) - Constructor for class de.alpharogroup.crypto.core.BaseCryptor
Constructor with a private key.
BruteForceProcessor - Class in de.alpharogroup.crypto.processors.bruteforce
The class BruteForceProcessor can process a brute force for find a password.
BruteForceProcessor(char[], int) - Constructor for class de.alpharogroup.crypto.processors.bruteforce.BruteForceProcessor
Instantiates a new BruteForceProcessor object.

C

ChainableDecryptor<T> - Class in de.alpharogroup.crypto.core
The class ChainableDecryptor can take many Decryptor objects and decrypts the given string with all the given Decryptor objects.
ChainableDecryptor(Decryptor<T, T>...) - Constructor for class de.alpharogroup.crypto.core.ChainableDecryptor
Instantiates a new ChainableDecryptor object.
ChainableEncryptor<T> - Class in de.alpharogroup.crypto.core
The class ChainableEncryptor can take many Encryptor objects and encrypts the given string with all the given Encryptor objects.
ChainableEncryptor(Encryptor<T, T>...) - Constructor for class de.alpharogroup.crypto.core.ChainableEncryptor
Instantiates a new ChainableEncryptor object.
ChainableStringDecryptor - Class in de.alpharogroup.crypto.chainable
The class ChainableStringDecryptor can take many Decryptor objects and decrypts the given string with all the given Decryptor objects.
ChainableStringDecryptor(Decryptor<String, String>...) - Constructor for class de.alpharogroup.crypto.chainable.ChainableStringDecryptor
Instantiates a new ChainableStringDecryptor object.
ChainableStringEncryptor - Class in de.alpharogroup.crypto.chainable
The class ChainableStringEncryptor can take many Encryptor objects and encrypts the given string with all the given Encryptor objects.
ChainableStringEncryptor(Encryptor<String, String>...) - Constructor for class de.alpharogroup.crypto.chainable.ChainableStringEncryptor
Instantiates a new ChainableStringEncryptor object.
CharacterObfuscator - Class in de.alpharogroup.crypto.obfuscation
CharacterObfuscator(BiMap<Character, ObfuscationOperationRule<Character, Character>>, String) - Constructor for class de.alpharogroup.crypto.obfuscation.CharacterObfuscator
 
convertToKeyByteArray(String) - Static method in class de.alpharogroup.crypto.gm.GoogleMapsUrlSigner
Converts the given private key as String to an base 64 encoded byte array.
CryptoCipherInputStream - Class in de.alpharogroup.crypto.io
CryptoCipherInputStream(InputStream, Cipher) - Constructor for class de.alpharogroup.crypto.io.CryptoCipherInputStream
Instantiates a new CryptoCipherInputStream object.
CryptoCipherOutputStream - Class in de.alpharogroup.crypto.io
CryptoCipherOutputStream(OutputStream, Cipher) - Constructor for class de.alpharogroup.crypto.io.CryptoCipherOutputStream
Instantiates a new CryptoCipherOutputStream.
CryptoInputStream - Class in de.alpharogroup.crypto.io
The class CryptoInputStream extends the CipherInputStream.
CryptoInputStream(InputStream, AbstractStringEncryptor) - Constructor for class de.alpharogroup.crypto.io.CryptoInputStream
Instantiates a new CryptoInputStream.
CryptoOutputStream - Class in de.alpharogroup.crypto.io
The class CryptoOutputStream extends the CipherOutputStream.
CryptoOutputStream(OutputStream, AbstractStringDecryptor) - Constructor for class de.alpharogroup.crypto.io.CryptoOutputStream
Instantiates a new CryptoOutputStream.

D

de.alpharogroup.crypto.chainable - package de.alpharogroup.crypto.chainable
This package provides classes for encrypt and decrypt in a chainable manner
de.alpharogroup.crypto.core - package de.alpharogroup.crypto.core
This package provides the core classes for encrypt and decrypt
de.alpharogroup.crypto.file - package de.alpharogroup.crypto.file
This package provides classes for encrypt and decrypt files
de.alpharogroup.crypto.gm - package de.alpharogroup.crypto.gm
This package provides a utility class that can sign urls for google maps with the private key.
de.alpharogroup.crypto.hex - package de.alpharogroup.crypto.hex
This package provides classes for encrypt and decrypt data with the 'AES' algorithm.
de.alpharogroup.crypto.io - package de.alpharogroup.crypto.io
This package provides classes for crypting input- and outputstreams
de.alpharogroup.crypto.key - package de.alpharogroup.crypto.key
This package provides classes for encrypt with public keys and decrypt with private keys
de.alpharogroup.crypto.obfuscation - package de.alpharogroup.crypto.obfuscation
This package provides classes that obfuscate text and disentangle it back
de.alpharogroup.crypto.obfuscation.experimental - package de.alpharogroup.crypto.obfuscation.experimental
Note: use at your own risk.
de.alpharogroup.crypto.processors.bruteforce - package de.alpharogroup.crypto.processors.bruteforce
This package provides a processor class for brute force processing
de.alpharogroup.crypto.processors.wordlist - package de.alpharogroup.crypto.processors.wordlist
This package provides a processor class for wordlist processing
de.alpharogroup.crypto.pw - package de.alpharogroup.crypto.pw
This package provides a class for encrypt with public keys and decrypt with private keys
de.alpharogroup.crypto.sha - package de.alpharogroup.crypto.sha
This package provides a class for hash text values
de.alpharogroup.crypto.simple - package de.alpharogroup.crypto.simple
This package provides classes for simple encryption and decryption
de.alpharogroup.crypto.ssl - package de.alpharogroup.crypto.ssl
This package provides a class with factory methods for create TrustManager array objects and KeyManager array objects.
decode(String) - Static method in class de.alpharogroup.crypto.simple.SimpleCrypt
Decrypt the given String.
decode(String, int) - Static method in class de.alpharogroup.crypto.simple.SimpleCrypt
Decrypt the given String.
decrypt(T) - Method in class de.alpharogroup.crypto.core.ChainableDecryptor
decrypt(File) - Method in class de.alpharogroup.crypto.file.FileDecryptor
decrypt(String) - Method in class de.alpharogroup.crypto.hex.HexableDecryptor
decrypt(byte[]) - Method in class de.alpharogroup.crypto.key.PrivateKeyDecryptor
decrypt(String) - Method in class de.alpharogroup.crypto.key.PrivateKeyHexDecryptor
Decrypt the given encrypted String
decrypt(String) - Method in class de.alpharogroup.crypto.simple.SimpleDecryptor
disentangle() - Method in class de.alpharogroup.crypto.obfuscation.CharacterObfuscator
 

E

encode(String) - Static method in class de.alpharogroup.crypto.simple.SimpleCrypt
Encrypt the given String.
encode(String, int) - Static method in class de.alpharogroup.crypto.simple.SimpleCrypt
Encrypt the given String.
encrypt(T) - Method in class de.alpharogroup.crypto.core.ChainableEncryptor
encrypt(File) - Method in class de.alpharogroup.crypto.file.FileEncryptor
encrypt(String) - Method in class de.alpharogroup.crypto.hex.HexableEncryptor
encrypt(byte[]) - Method in class de.alpharogroup.crypto.key.PublicKeyEncryptor
encrypt(String) - Method in class de.alpharogroup.crypto.key.PublicKeyHexEncryptor
Encrypt the given String object
encrypt(String) - Method in class de.alpharogroup.crypto.simple.SimpleEncryptor

F

FileDecryptor - Class in de.alpharogroup.crypto.file
The class FileDecryptor can decrypt files from the given crypt model bean.
FileDecryptor(CryptModel<Cipher, String>) - Constructor for class de.alpharogroup.crypto.file.FileDecryptor
Instantiates a new FileDecryptor.
FileDecryptor(CryptModel<Cipher, String>, File) - Constructor for class de.alpharogroup.crypto.file.FileDecryptor
Instantiates a new file decryptor.
FileEncryptor - Class in de.alpharogroup.crypto.file
The class FileEncryptor can encrypt files with the given crypt model.
FileEncryptor(CryptModel<Cipher, String>) - Constructor for class de.alpharogroup.crypto.file.FileEncryptor
Instantiates a new file encryptor.
FileEncryptor(CryptModel<Cipher, String>, File) - Constructor for class de.alpharogroup.crypto.file.FileEncryptor
Instantiates a new file encryptor.

G

getCurrentAttempt() - Method in class de.alpharogroup.crypto.processors.bruteforce.BruteForceProcessor
Gets the current attempt.
getCurrentAttempt() - Method in class de.alpharogroup.crypto.processors.wordlist.WordlistsProcessor
Gets the current attempt.
getInstance() - Static method in class de.alpharogroup.crypto.pw.PasswordEncryptor
Gets the single instance of the PasswordEncryptor object.
getRandomPassword(int) - Method in class de.alpharogroup.crypto.pw.PasswordEncryptor
Gets a random password.
getRandomPassword(Optional<Integer>) - Method in class de.alpharogroup.crypto.pw.PasswordEncryptor
Gets a random password.
getRandomSalt(int) - Method in class de.alpharogroup.crypto.pw.PasswordEncryptor
Gets a random salt string.
GoogleMapsUrlSigner - Class in de.alpharogroup.crypto.gm
The class GoogleMapsUrlSigner can sign urls with the private key.
GoogleMapsUrlSigner() - Constructor for class de.alpharogroup.crypto.gm.GoogleMapsUrlSigner
 

H

hashAndHex(String, String, HashAlgorithm, Charset) - Static method in class de.alpharogroup.crypto.sha.Hasher
Hashes and hex it with the given String object with the given parameters.
hashAndHexPassword(String, String) - Method in class de.alpharogroup.crypto.pw.PasswordEncryptor
Hash and hex password with the given salt.
hashAndHexPassword(String, String, HashAlgorithm, Charset) - Method in class de.alpharogroup.crypto.pw.PasswordEncryptor
Hash and hex the given password with the given salt, hash algorithm and charset.
Hasher - Class in de.alpharogroup.crypto.sha
The class Hasher
Hasher() - Constructor for class de.alpharogroup.crypto.sha.Hasher
 
hashPassword(String, String, HashAlgorithm, Charset) - Method in class de.alpharogroup.crypto.pw.PasswordEncryptor
Hashes the given password with the given salt, hash algorithm and charset.
HexableDecryptor - Class in de.alpharogroup.crypto.hex
The class HexableDecryptor is the pendant class of HexableEncryptor and decrypts given String objects that was encrypted with HexableEncryptor.
HexableDecryptor(String) - Constructor for class de.alpharogroup.crypto.hex.HexableDecryptor
Instantiates a new HexableDecryptor from the given parameters.
HexableDecryptor(String, Algorithm) - Constructor for class de.alpharogroup.crypto.hex.HexableDecryptor
Instantiates a new HexableDecryptor from the given parameters.
HexableEncryptor - Class in de.alpharogroup.crypto.hex
The class HexableEncryptor is the pendant class of HexableDecryptor and encrypts given String objects that can be decrypted with HexableDecryptor.
HexableEncryptor(String) - Constructor for class de.alpharogroup.crypto.hex.HexableEncryptor
Instantiates a new HexableEncryptor from the given parameters.
HexableEncryptor(String, Algorithm) - Constructor for class de.alpharogroup.crypto.hex.HexableEncryptor
Instantiates a new HexableEncryptor from the given parameters.

I

increment() - Method in class de.alpharogroup.crypto.processors.bruteforce.BruteForceProcessor
Increment.
increment() - Method in class de.alpharogroup.crypto.processors.wordlist.WordlistsProcessor
Increments the word list current index.

K

KeyTrustExtensions - Class in de.alpharogroup.crypto.ssl
The factory class KeyTrustExtensions holds methods for creating TrustManager array objects and KeyManager array objects.
KeyTrustExtensions() - Constructor for class de.alpharogroup.crypto.ssl.KeyTrustExtensions
 

M

match(String, String) - Method in class de.alpharogroup.crypto.pw.PasswordEncryptor
Matches the given strings and returns true if they are equal.
model - Variable in class de.alpharogroup.crypto.core.AbstractCryptor
The crypto model.

N

newAlgorithm() - Method in class de.alpharogroup.crypto.core.AbstractCryptor
Factory method for creating a new algorithm that will be used with the cipher object.
newAlgorithm() - Method in class de.alpharogroup.crypto.hex.HexableDecryptor
Factory method for creating a new algorithm that will be used with the cipher object.
newAlgorithm() - Method in class de.alpharogroup.crypto.hex.HexableEncryptor
Factory method for creating a new algorithm that will be used with the cipher object.
newAlgorithm() - Method in class de.alpharogroup.crypto.key.PrivateKeyDecryptor
Factory method for creating a new algorithm that will be used with the cipher object.
newAlgorithm() - Method in class de.alpharogroup.crypto.key.PublicKeyEncryptor
Factory method for creating a new algorithm that will be used with the cipher object.
newAlgorithmParameterSpec(byte[], int) - Method in class de.alpharogroup.crypto.core.AbstractCryptor
Factory method for creating a new AlgorithmParameterSpec from the given salt and iteration count.
newCipher(K) - Method in class de.alpharogroup.crypto.core.AbstractCryptor
Factory method for creating a new Cipher from the given private key.
newCipher(K, String, byte[], int, int) - Method in class de.alpharogroup.crypto.core.AbstractCryptor
Factory method for creating a new Cipher from the given parameters.
newCipher(int, SecretKey, AlgorithmParameterSpec, String) - Method in class de.alpharogroup.crypto.core.AbstractFileDecryptor
Factory method for creating a new Cipher from the given parameters.
newCipher(String, String, byte[], int, int) - Method in class de.alpharogroup.crypto.core.AbstractFileDecryptor
Factory method for creating a new Cipher from the given parameters.
newCipher(int, SecretKey, AlgorithmParameterSpec, String) - Method in class de.alpharogroup.crypto.core.AbstractFileEncryptor
Factory method for creating a new Cipher from the given parameters.
newCipher(String, String, byte[], int, int) - Method in class de.alpharogroup.crypto.core.AbstractFileEncryptor
Factory method for creating a new Cipher from the given parameters.
newCipher(int, SecretKey, AlgorithmParameterSpec, String) - Method in class de.alpharogroup.crypto.core.AbstractStringDecryptor
Factory method for creating a new Cipher from the given parameters.
newCipher(String, String, byte[], int, int) - Method in class de.alpharogroup.crypto.core.AbstractStringDecryptor
Factory method for creating a new Cipher from the given parameters.
newCipher(int, SecretKey, AlgorithmParameterSpec, String) - Method in class de.alpharogroup.crypto.core.AbstractStringEncryptor
Factory method for creating a new Cipher from the given parameters.
newCipher(String, String, byte[], int, int) - Method in class de.alpharogroup.crypto.core.AbstractStringEncryptor
Factory method for creating a new Cipher from the given parameters.
newCipher(int, SecretKey, AlgorithmParameterSpec, String) - Method in class de.alpharogroup.crypto.core.BaseCryptor
Factory method for creating a new Cipher from the given parameters.
newCipher(String, String, byte[], int, int) - Method in class de.alpharogroup.crypto.core.BaseCryptor
Factory method for creating a new Cipher from the given parameters.
newCipher(String, String, byte[], int, int) - Method in class de.alpharogroup.crypto.hex.HexableDecryptor
Factory method for creating a new Cipher from the given parameters.
newCipher(String, String, byte[], int, int) - Method in class de.alpharogroup.crypto.hex.HexableEncryptor
Factory method for creating a new Cipher from the given parameters.
newCipher(PrivateKey, String, byte[], int, int) - Method in class de.alpharogroup.crypto.key.PrivateKeyDecryptor
Factory method for creating a new Cipher from the given parameters.
newCipher(PublicKey, String, byte[], int, int) - Method in class de.alpharogroup.crypto.key.PublicKeyEncryptor
Factory method for creating a new Cipher from the given parameters.
newDecryptedFile(String, String) - Method in class de.alpharogroup.crypto.file.FileDecryptor
New decrypted file.
newEncryptedFile(String, String) - Method in class de.alpharogroup.crypto.file.FileEncryptor
New encrypted file.
newIterationCount() - Method in class de.alpharogroup.crypto.core.AbstractCryptor
Factory method for creating a new iteration count that will be used with the cipher object.
newKeySpec(String, byte[], int) - Method in class de.alpharogroup.crypto.core.AbstractFileDecryptor
Factory method for creating a new KeySpec from the given private key.
newKeySpec(String, byte[], int) - Method in class de.alpharogroup.crypto.core.AbstractFileEncryptor
Factory method for creating a new KeySpec from the given private key.
newKeySpec(String, byte[], int) - Method in class de.alpharogroup.crypto.core.AbstractStringDecryptor
Factory method for creating a new KeySpec from the given private key.
newKeySpec(String, byte[], int) - Method in class de.alpharogroup.crypto.core.AbstractStringEncryptor
Factory method for creating a new KeySpec from the given private key.
newKeySpec(String, byte[], int) - Method in class de.alpharogroup.crypto.core.BaseCryptor
Factory method for creating a new KeySpec from the given private key.
newOperationMode() - Method in class de.alpharogroup.crypto.core.AbstractDecryptor
newOperationMode() - Method in class de.alpharogroup.crypto.core.AbstractEncryptor
newOperationMode() - Method in class de.alpharogroup.crypto.simple.SimpleDecryptor
newOperationMode() - Method in class de.alpharogroup.crypto.simple.SimpleEncryptor
newSalt() - Method in class de.alpharogroup.crypto.core.AbstractCryptor
Factory method for creating a new salt that will be used with the cipher object.
newSecretKeyFactory(String) - Method in class de.alpharogroup.crypto.core.AbstractCryptor
Factory method for creating a new SecretKeyFactory from the given algorithm.

O

obfuscate() - Method in class de.alpharogroup.crypto.obfuscation.CharacterObfuscator
obfuscateWith(BiMap<Character, ObfuscationOperationRule<Character, Character>>, String) - Static method in class de.alpharogroup.crypto.obfuscation.experimental.ObfuscatorExtensions
Obfuscate with the given BiMap
ObfuscatorExtensions - Class in de.alpharogroup.crypto.obfuscation.experimental
The class ObfuscatorExtensions provides algorithms for obfuscate strings.
ObfuscatorExtensions() - Constructor for class de.alpharogroup.crypto.obfuscation.experimental.ObfuscatorExtensions
 
onInitialize() - Method in class de.alpharogroup.crypto.core.AbstractCryptor
This method initialize the cipher object.

P

PasswordEncryptor - Class in de.alpharogroup.crypto.pw
The class PasswordEncryptor is a singleton and helps to generate secure encrypted random passwords.
PrivateKeyDecryptor - Class in de.alpharogroup.crypto.key
The class PrivateKeyDecryptor decrypts encrypted byte array the was encrypted with the public key of the pendant private key of this class.
PrivateKeyDecryptor(CryptModel<Cipher, PrivateKey>) - Constructor for class de.alpharogroup.crypto.key.PrivateKeyDecryptor
Instantiates a new PrivateKeyDecryptor with the given CryptModel.
PrivateKeyHexDecryptor - Class in de.alpharogroup.crypto.key
The class PrivateKeyHexDecryptor decrypts encrypted characters the was encrypted with the public key of the pendant private key of this class.
PrivateKeyHexDecryptor(PrivateKey) - Constructor for class de.alpharogroup.crypto.key.PrivateKeyHexDecryptor
Instantiates a new PrivateKeyHexDecryptor with the given PrivateKey
process() - Method in class de.alpharogroup.crypto.processors.wordlist.WordlistsProcessor
Processes the word list.
PublicKeyEncryptor - Class in de.alpharogroup.crypto.key
The class PublicKeyEncryptor can encrypt a byte array with his public key.
PublicKeyEncryptor(CryptModel<Cipher, PublicKey>) - Constructor for class de.alpharogroup.crypto.key.PublicKeyEncryptor
Instantiates a new PublicKeyEncryptor with the given CryptModel.
PublicKeyHexEncryptor - Class in de.alpharogroup.crypto.key
The class PublicKeyHexEncryptor can encrypt characters with his public key.
PublicKeyHexEncryptor(PublicKey) - Constructor for class de.alpharogroup.crypto.key.PublicKeyHexEncryptor
Instantiates a new PublicKeyHexEncryptor object with the given PublicKey

R

resolveKeyManagers(String, String, File, String) - Static method in class de.alpharogroup.crypto.ssl.KeyTrustExtensions
Resolve the KeyManager array from the keystore that is resolved from the given parameters.
resolveTrustManagers(String, String, File, String) - Static method in class de.alpharogroup.crypto.ssl.KeyTrustExtensions
Resolve the TrustManager array from the keystore that is resolved from the given parameters.

S

signRequest(String, String, String) - Static method in class de.alpharogroup.crypto.gm.GoogleMapsUrlSigner
Returns the context path with the signature as parameter.
signRequest(URL, String) - Static method in class de.alpharogroup.crypto.gm.GoogleMapsUrlSigner
Returns the full url as String object with the signature as parameter.
SimpleCrypt - Class in de.alpharogroup.crypto.simple
The class SimpleCrypt is an utility class for the use of encrypt or decrypt information.
SimpleCrypt() - Constructor for class de.alpharogroup.crypto.simple.SimpleCrypt
 
SimpleDecryptor - Class in de.alpharogroup.crypto.simple
The class SimpleDecryptor is a simple StringDecryptor implementation.
SimpleDecryptor(String) - Constructor for class de.alpharogroup.crypto.simple.SimpleDecryptor
Instantiates a new SimpleDecryptor with the given private key.
SimpleEncryptor - Class in de.alpharogroup.crypto.simple
The class SimpleEncryptor is a simple StringEncryptor implementation.
SimpleEncryptor(String) - Constructor for class de.alpharogroup.crypto.simple.SimpleEncryptor
Instantiates a new SimpleEncryptor with the given private key.

W

WordlistsProcessor - Class in de.alpharogroup.crypto.processors.wordlist
The class WordlistsProcessor can process a list of words.
WordlistsProcessor(List<String>) - Constructor for class de.alpharogroup.crypto.processors.wordlist.WordlistsProcessor
Instantiates a new WordlistsProcessor object.
WordlistsProcessor(List<String>, String) - Constructor for class de.alpharogroup.crypto.processors.wordlist.WordlistsProcessor
Instantiates a new wordlists processor.
A B C D E F G H I K M N O P R S W 
Skip navigation links

Copyright © 2015–2018 Alpha Ro Group UG (haftungsbeschrÀngt). All rights reserved.