Uses of Class
org.sonatype.plexus.components.cipher.PlexusCipherException
-
-
Uses of PlexusCipherException in org.sonatype.plexus.components.cipher
Methods in org.sonatype.plexus.components.cipher that throw PlexusCipherException Modifier and Type Method Description String
DefaultPlexusCipher. decrypt(String str, String passPhrase)
String
PlexusCipher. decrypt(String str, String passPhrase)
decrypt given base64 encrypted stringString
PBECipher. decrypt64(String encryptedText, String password)
String
DefaultPlexusCipher. decryptDecorated(String str, String passPhrase)
String
PlexusCipher. decryptDecorated(String str, String passPhrase)
decrypt given base64 encoded encrypted string.String
DefaultPlexusCipher. encrypt(String str, String passPhrase)
String
PlexusCipher. encrypt(String str, String passPhrase)
encrypt given string with the given passPhrase and encode it into base64String
PBECipher. encrypt64(String clearText, String password)
String
DefaultPlexusCipher. encryptAndDecorate(String str, String passPhrase)
String
PlexusCipher. encryptAndDecorate(String str, String passPhrase)
encrypt given string with the given passPhrase, encode it into base64 and return result, wrapped into { } decorationsString
DefaultPlexusCipher. unDecorate(String str)
String
PlexusCipher. unDecorate(String str)
return string inside decorationsConstructors in org.sonatype.plexus.components.cipher that throw PlexusCipherException Constructor Description DefaultPlexusCipher()
PBECipher()
-