Uses of Interface
com.ibm.di.security.Crypto

Packages that use Crypto
com.ibm.di.api.security Provides classes for managing the security mechanism. 
com.ibm.di.connector Provides classes for the Directory Integrator's connectors. 
com.ibm.di.security Provides classes for the Tivoli Directory Integrator security and encryption. 
com.ibm.di.util Provides utility classes for the Tivoli Directory Integrator. 
 

Uses of Crypto in com.ibm.di.api.security
 

Methods in com.ibm.di.api.security that return Crypto
static Crypto CryptoUtils.getCrypto(String keyAlias, String transformation)
          Create a Crypto object using a specified Certificate.
static Crypto CryptoUtils.getDefaultCrypto()
          Retrieve an object representation of the Server's encryption/decryption functionality.
 

Uses of Crypto in com.ibm.di.connector
 

Fields in com.ibm.di.connector declared as Crypto
protected  Crypto PropertiesConnector.propsFileCrypto
          The Crypto object used for decryption of the entire properties file.
 

Uses of Crypto in com.ibm.di.security
 

Classes in com.ibm.di.security that implement Crypto
 class RSACrypto
          RSA encryption/decryption of data of any length.
 class SymmetricCipherCrypto
          Secret key encryption/decryption.
 

Methods in com.ibm.di.security that return Crypto
static Crypto CryptoFactory.createCrypto(KeyStore keyStore, String keyAlias, String keyPass, String transformation, Provider cryptoProvider)
           Creates an object that can encrypt/decrypt data using the specified cryptography transformation.
static Crypto CryptoFactory.createCrypto(String keyStorePath, String keyStorePass, String keyStoreType, String keyAlias, String keyPass, String transformation, Provider cryptoProvider)
           Creates an object that can encrypt/decrypt data using the specified cryptography transformation.
 

Uses of Crypto in com.ibm.di.util
 

Fields in com.ibm.di.util declared as Crypto
protected  Crypto BasePropertiesFile.propertyCrypto
          Object to encrypt/decrypt the values of protected properties.
 

Methods in com.ibm.di.util with parameters of type Crypto
 void PropertiesFile.store(String path, String header, Crypto fileCrypto)
          Write the contents of this properties file to disk.
 

Constructors in com.ibm.di.util with parameters of type Crypto
BasePropertiesFile.Property(String rawKey, String rawValue, StringBuilder line, Crypto crypto)
          Construct a property.
BasePropertiesFile(Crypto propertyCrypto)
          Create an empty object with crypto module.
PropertiesFile(Crypto propertyCrypto)
          Create an empty object.
PropertiesFile(Crypto propertyCrypto, String path, boolean resolveReferences)
          Load a properties file in memory.
PropertiesFile(Crypto propertyCrypto, String path, boolean resolveReferences, Crypto fileCrypto, String prefixToSkip)
          Load a properties file in memory.