Package | Description |
---|---|
org.codehaus.plexus.components.cipher | |
org.codehaus.plexus.components.cipher.internal |
Modifier and Type | Method and Description |
---|---|
String |
PlexusCipher.decrypt(String alg,
String str,
String passPhrase)
Decrypt given Base64 encoded string with the given alg and passPhrase and return resulting string.
|
String |
PlexusCipher.decryptDecorated(String alg,
String str,
String passPhrase)
Decrypt given decorated Base64 encoded string with the given alg and passPhrase and return resulting string.
|
String |
PlexusCipher.encrypt(String alg,
String str,
String passPhrase)
Encrypt given string with the given alg and passPhrase and encode it into Base64 string.
|
String |
PlexusCipher.encryptAndDecorate(String alg,
String str,
String passPhrase)
Encrypt given string with the given alg and passPhrase and encode it into Base64 decorated string.
|
String |
PlexusCipher.unDecorate(String str)
Remove decorations from string, if it was decorated.
|
Modifier and Type | Method and Description |
---|---|
String |
Cipher.decrypt(String encryptedText,
String password)
Decrypts the encrypted text with password and returns clear text result.
|
String |
AESGCMNoPadding.decrypt(String encryptedText,
String password) |
String |
DefaultPlexusCipher.decrypt(String alg,
String str,
String passPhrase) |
String |
DefaultPlexusCipher.decryptDecorated(String alg,
String str,
String passPhrase) |
String |
Cipher.encrypt(String clearText,
String password)
Encrypts the clear text data with password and returns result.
|
String |
AESGCMNoPadding.encrypt(String clearText,
String password) |
String |
DefaultPlexusCipher.encrypt(String alg,
String str,
String passPhrase) |
String |
DefaultPlexusCipher.encryptAndDecorate(String alg,
String str,
String passPhrase) |
String |
DefaultPlexusCipher.unDecorate(String str) |
Copyright © 2001–2024 Codehaus Plexus. All rights reserved.