- de.alpharogroup.crypto.algorithm - package de.alpharogroup.crypto.algorithm
-
Provides classes and enums for the algorithms.
- de.alpharogroup.crypto.annotations - package de.alpharogroup.crypto.annotations
-
This package provides annotations for mark a class or interface that it is obfuscated, encrypted or decrypted
- de.alpharogroup.crypto.api - package de.alpharogroup.crypto.api
-
This package provides interfaces for the classes that can en- and decrypt data.
- de.alpharogroup.crypto.blockchain.api - package de.alpharogroup.crypto.blockchain.api
-
This package provides interfaces for blockchain
- de.alpharogroup.crypto.compound - package de.alpharogroup.crypto.compound
-
- de.alpharogroup.crypto.key - package de.alpharogroup.crypto.key
-
This package provides enum classes for key file formats, sizes and types
- de.alpharogroup.crypto.mechanisms - package de.alpharogroup.crypto.mechanisms
-
This package provides an enum with some of the password-based encryption (PBE) algorithms
- de.alpharogroup.crypto.modes - package de.alpharogroup.crypto.modes
-
This package provides an enum that defines the block chaining mode
- de.alpharogroup.crypto.obfuscation.api - package de.alpharogroup.crypto.obfuscation.api
-
This package provides interfaces for the classes want to provide obfuscation of text and disentangle it back.
- de.alpharogroup.crypto.obfuscation.rule - package de.alpharogroup.crypto.obfuscation.rule
-
This package provides an enum for obfuscation operations
- de.alpharogroup.crypto.padding - package de.alpharogroup.crypto.padding
-
This package provides an enum that contains algorithms for several padding schemes
- de.alpharogroup.crypto.provider - package de.alpharogroup.crypto.provider
-
This package provides an enum with the security providers BouncyCastle and sun
- de.alpharogroup.crypto.pw - package de.alpharogroup.crypto.pw
-
This package provides an enum with algorithms for password hash types
- decrypt(T) - Method in interface de.alpharogroup.crypto.api.Decryptor
-
Decrypt the given encrypted object.
- Decrypted - Annotation Type in de.alpharogroup.crypto.annotations
-
The marker annotation
Decrypted marks a field that it was decrypted as the name let
assume.
- Decryptor<T,R> - Interface in de.alpharogroup.crypto.api
-
The generic functional interface
Decryptor can decrypt an object of type <T> (that
was previously encrypted) and return the decrypted result as object of type <R>.
- disentangle() - Method in interface de.alpharogroup.crypto.obfuscation.api.Obfuscatable
-
Disentangle.
- valueOf(String) - Static method in enum de.alpharogroup.crypto.algorithm.AesAlgorithm
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum de.alpharogroup.crypto.algorithm.HashAlgorithm
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum de.alpharogroup.crypto.algorithm.KeyPairGeneratorAlgorithm
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum de.alpharogroup.crypto.algorithm.KeyPairWithModeAndPaddingAlgorithm
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum de.alpharogroup.crypto.algorithm.KeystoreType
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum de.alpharogroup.crypto.algorithm.MacAlgorithm
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum de.alpharogroup.crypto.algorithm.MdAlgorithm
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum de.alpharogroup.crypto.algorithm.RngAlgorithm
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum de.alpharogroup.crypto.algorithm.SunJCEAlgorithm
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum de.alpharogroup.crypto.algorithm.UnionWord
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum de.alpharogroup.crypto.compound.CompoundAlgorithm
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum de.alpharogroup.crypto.key.KeyFileFormat
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum de.alpharogroup.crypto.key.KeyFormat
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum de.alpharogroup.crypto.key.KeySize
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum de.alpharogroup.crypto.key.KeyType
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum de.alpharogroup.crypto.mechanisms.PBEMechanism
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum de.alpharogroup.crypto.modes.Mode
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum de.alpharogroup.crypto.obfuscation.rule.Operation
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum de.alpharogroup.crypto.padding.PaddingScheme
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum de.alpharogroup.crypto.provider.SecurityProvider
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum de.alpharogroup.crypto.pw.PasswordHashType
-
Returns the enum constant of this type with the specified name.
- values() - Static method in enum de.alpharogroup.crypto.algorithm.AesAlgorithm
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum de.alpharogroup.crypto.algorithm.HashAlgorithm
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum de.alpharogroup.crypto.algorithm.KeyPairGeneratorAlgorithm
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum de.alpharogroup.crypto.algorithm.KeyPairWithModeAndPaddingAlgorithm
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum de.alpharogroup.crypto.algorithm.KeystoreType
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum de.alpharogroup.crypto.algorithm.MacAlgorithm
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum de.alpharogroup.crypto.algorithm.MdAlgorithm
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum de.alpharogroup.crypto.algorithm.RngAlgorithm
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum de.alpharogroup.crypto.algorithm.SunJCEAlgorithm
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum de.alpharogroup.crypto.algorithm.UnionWord
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum de.alpharogroup.crypto.compound.CompoundAlgorithm
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum de.alpharogroup.crypto.key.KeyFileFormat
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum de.alpharogroup.crypto.key.KeyFormat
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum de.alpharogroup.crypto.key.KeySize
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum de.alpharogroup.crypto.key.KeyType
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum de.alpharogroup.crypto.mechanisms.PBEMechanism
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum de.alpharogroup.crypto.modes.Mode
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum de.alpharogroup.crypto.obfuscation.rule.Operation
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum de.alpharogroup.crypto.padding.PaddingScheme
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum de.alpharogroup.crypto.provider.SecurityProvider
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum de.alpharogroup.crypto.pw.PasswordHashType
-
Returns an array containing the constants of this enum type, in
the order they are declared.