Uses of Class
com.norconex.commons.lang.encrypt.EncryptionKey
-
Packages that use EncryptionKey Package Description com.norconex.commons.lang.encrypt Encryption-related classes.com.norconex.commons.lang.net com.norconex.commons.lang.security -
-
Uses of EncryptionKey in com.norconex.commons.lang.encrypt
Methods in com.norconex.commons.lang.encrypt that return EncryptionKey Modifier and Type Method Description static EncryptionKey
EncryptionKey. loadFromXML(XML xml, EncryptionKey defaultKey)
Gets an encryption key from an existing XML.static EncryptionKey
EncryptionXMLUtil. loadFromXML(XML xml, String tagPrefix, EncryptionKey defaultKey)
Deprecated.Convenience method for loading an encryption key from anXML
.static EncryptionKey
EncryptionXMLUtil. loadFromXML(Reader in, String tagPrefix, EncryptionKey defaultKey)
Deprecated.Convenience method for loading an encryption key from an XML reader.Methods in com.norconex.commons.lang.encrypt with parameters of type EncryptionKey Modifier and Type Method Description static String
EncryptionUtil. decrypt(String encryptedText, EncryptionKey encryptionKey)
Decrypts the given encrypted text with the encryption key supplied.static String
EncryptionUtil. encrypt(String textToEncrypt, EncryptionKey encryptionKey)
Encrypts the given text with the encryption key supplied.static EncryptionKey
EncryptionKey. loadFromXML(XML xml, EncryptionKey defaultKey)
Gets an encryption key from an existing XML.static EncryptionKey
EncryptionXMLUtil. loadFromXML(XML xml, String tagPrefix, EncryptionKey defaultKey)
Deprecated.Convenience method for loading an encryption key from anXML
.static EncryptionKey
EncryptionXMLUtil. loadFromXML(Reader in, String tagPrefix, EncryptionKey defaultKey)
Deprecated.Convenience method for loading an encryption key from an XML reader.static void
EncryptionKey. saveToXML(XML xml, EncryptionKey key)
Adds an encryption key to an existing XML.static void
EncryptionXMLUtil. saveToXML(EnhancedXMLStreamWriter writer, String tagPrefix, EncryptionKey encryptionKey)
Deprecated.Convenience method for saving an encryption key to anXMLStreamWriter
.static void
EncryptionXMLUtil. saveToXML(Writer writer, String tagPrefix, EncryptionKey encryptionKey)
Deprecated.Convenience method for saving an encryption key to an XML writer. -
Uses of EncryptionKey in com.norconex.commons.lang.net
Methods in com.norconex.commons.lang.net that return EncryptionKey Modifier and Type Method Description EncryptionKey
ProxySettings. getProxyPasswordKey()
Deprecated.Since 2.0.0, useProxySettings.getCredentials()
.Methods in com.norconex.commons.lang.net with parameters of type EncryptionKey Modifier and Type Method Description ProxySettings
ProxySettings. setProxyPasswordKey(EncryptionKey proxyPasswordKey)
Deprecated.Since 2.0.0, useProxySettings.setCredentials(Credentials)
. -
Uses of EncryptionKey in com.norconex.commons.lang.security
Methods in com.norconex.commons.lang.security that return EncryptionKey Modifier and Type Method Description EncryptionKey
Credentials. getPasswordKey()
Methods in com.norconex.commons.lang.security with parameters of type EncryptionKey Modifier and Type Method Description Credentials
Credentials. setPasswordKey(EncryptionKey passwordKey)
KeyStoreBuilder
KeyStoreBuilder. setPasswordKey(EncryptionKey passwordKey)
Sets the password encryption key.
-