|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use CryptoException | |
---|---|
com.metamatrix.common.config.model | |
com.metamatrix.common.util.crypto | |
com.metamatrix.common.util.crypto.cipher | |
com.metamatrix.dqp.embedded.services |
Uses of CryptoException in com.metamatrix.common.config.model |
---|
Methods in com.metamatrix.common.config.model that throw CryptoException | |
---|---|
static java.util.Properties |
ComponentCryptoUtil.getDecryptedProperties(ComponentDefn defn)
|
Uses of CryptoException in com.metamatrix.common.util.crypto |
---|
Methods in com.metamatrix.common.util.crypto that throw CryptoException | |
---|---|
byte[] |
DhKeyGenerator.createPublicKey()
|
byte[] |
NullCryptor.decrypt(byte[] ciphertext)
|
byte[] |
Decryptor.decrypt(byte[] ciphertext)
Decrypt the ciphertext in byte array format to yield the original cleartext. |
java.lang.String |
NullCryptor.decrypt(java.lang.String ciphertext)
|
java.lang.String |
Decryptor.decrypt(java.lang.String ciphertext)
Decrypt the ciphertext to yield the original cleartext. |
byte[] |
NullCryptor.encrypt(byte[] cleartext)
|
byte[] |
Encryptor.encrypt(byte[] cleartext)
Encrypt the cleartext in byte array format. |
java.lang.String |
NullCryptor.encrypt(java.lang.String cleartext)
|
java.lang.String |
Encryptor.encrypt(java.lang.String cleartext)
Encrypt the cleartext |
static Cryptor |
CryptoUtil.getCryptor()
Construct and return a utility that can be used for either encryption or decryption. |
static Decryptor |
CryptoUtil.getDecryptor()
Construct and return a utility that can be used for only decryption. |
static Encryptor |
CryptoUtil.getEncryptor()
Construct and return a utility that can be used for only encryption. |
SymmetricCryptor |
DhKeyGenerator.getSymmetricCryptor(byte[] peerPublicKeyBytes)
|
void |
PasswordChangeUtility.init()
Initialize this factory, bound to a specific key and key entry in that store. |
static void |
CryptoUtil.init(java.net.URL keyResource)
Initialize this factory, bound to the given keystore and keystore password. |
java.lang.String |
PasswordChangeUtility.newDecrypt(java.lang.String ciphertext)
Use new Cryptor to decrypt a char[]. |
java.util.Properties |
PasswordChangeUtility.newDecrypt(java.lang.String match,
java.util.Properties props)
Use new Cryptor to decrypt properties. |
java.lang.String |
PasswordChangeUtility.newEncrypt(java.lang.String cleartext)
Use new Cryptor to encrypt a char[]. |
java.util.Properties |
PasswordChangeUtility.newEncrypt(java.lang.String match,
java.util.Properties props)
Use new Cryptor to encrypt properties. |
java.lang.String |
PasswordChangeUtility.oldDecrypt(java.lang.String ciphertext)
Use old Cryptor to decrypt a char[]. |
java.util.Properties |
PasswordChangeUtility.oldDecrypt(java.lang.String match,
java.util.Properties props)
Use old Cryptor to decrypt properties. |
java.lang.String |
PasswordChangeUtility.oldEncrypt(java.lang.String cleartext)
Use old Cryptor to encrypt a char[]. |
java.util.Properties |
PasswordChangeUtility.oldEncrypt(java.lang.String match,
java.util.Properties props)
Use old Cryptor to encrypt properties. |
static java.util.Properties |
CryptoUtil.propertyDecrypt(java.lang.String match,
java.util.Properties props)
Decrypts given set of property values based on occurrence of the property name in the match collection. |
static java.util.Properties |
CryptoUtil.propertyDecryptEndsWith(java.lang.String pattern,
java.util.Properties props)
Decrypts given set of property values based on occurance of the property name ending in with the given pattern. |
static java.util.Properties |
CryptoUtil.propertyEncrypt(java.lang.String match,
java.util.Properties props)
Encrypts given set of property values based on occurrence of the property name in the match collection. |
static java.util.Properties |
CryptoUtil.propertyEncryptEndsWith(Encryptor encryptor,
java.lang.String pattern,
java.util.Properties props)
Encrypts given set of property values based on occurance of the property name ending in with the given pattern, using the specified encryptor. |
static java.util.Properties |
CryptoUtil.propertyEncryptEndsWith(java.lang.String pattern,
java.util.Properties props)
Encrypts given set of property values based on occurrence of the property name ending in with the given pattern, using the server-side encryptor. |
java.io.Serializable |
NullCryptor.sealObject(java.io.Serializable object)
|
java.io.Serializable |
Encryptor.sealObject(java.io.Serializable object)
|
static java.lang.String |
CryptoUtil.stringDecrypt(java.lang.String cipherText)
|
static java.lang.String |
CryptoUtil.stringEncrypt(java.lang.String clearText)
|
java.io.Serializable |
NullCryptor.unsealObject(java.io.Serializable object)
|
java.io.Serializable |
Decryptor.unsealObject(java.io.Serializable object)
|
Uses of CryptoException in com.metamatrix.common.util.crypto.cipher |
---|
Methods in com.metamatrix.common.util.crypto.cipher that throw CryptoException | |
---|---|
byte[] |
BasicCryptor.decrypt(byte[] ciphertext)
Decrypt the ciphertext to yield the original cleartext. |
java.lang.String |
BasicCryptor.decrypt(java.lang.String ciphertext)
|
byte[] |
BasicCryptor.encrypt(byte[] cleartext)
Encrypt the cleartext in byte array format. |
java.lang.String |
BasicCryptor.encrypt(java.lang.String cleartext)
|
static void |
SymmetricCryptor.generateAndSaveKey(java.lang.String file)
|
static SymmetricCryptor |
SymmetricCryptor.getSymmectricCryptor()
Creates a new SymmetricCryptor with a new symmetric key |
static SymmetricCryptor |
SymmetricCryptor.getSymmectricCryptor(byte[] key)
Creates a SymmetricCryptor using the supplied byte array as the key |
static SymmetricCryptor |
SymmetricCryptor.getSymmectricCryptor(java.net.URL keyResource)
Creates a SymmetricCryptor using the supplied URL contents as the key |
protected void |
BasicCryptor.initDecryptCipher()
Initialize the ciphers used for encryption and decryption. |
protected void |
BasicCryptor.initEncryptCipher()
Initialize the cipher used for encryption. |
java.io.Serializable |
BasicCryptor.sealObject(java.io.Serializable object)
|
java.io.Serializable |
BasicCryptor.unsealObject(java.io.Serializable object)
|
Constructors in com.metamatrix.common.util.crypto.cipher that throw CryptoException | |
---|---|
BasicCryptor(java.security.Key encryptKey,
java.security.Key decryptKey,
java.lang.String algorithm)
|
Uses of CryptoException in com.metamatrix.dqp.embedded.services |
---|
Methods in com.metamatrix.dqp.embedded.services that throw CryptoException | |
---|---|
protected java.lang.String |
EmbeddedDataService.decryptProperty(java.lang.String value)
Decrypt the given property using the Crypto libraries. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |