Merge branch 'password' of \\\PC4315\work\github_jitsi\

cusax-fix
tom.denham@metaswitch.com 13 years ago
commit da83b4f943

@ -165,7 +165,8 @@ public String decrypt(String ciphertext) throws CryptoException
try
{
decryptCipher.init(Cipher.DECRYPT_MODE, key);
return new String(decryptCipher.doFinal(Base64.decode(ciphertext)));
return new String(decryptCipher.doFinal(Base64.decode(ciphertext)),
"UTF-8");
}
catch (BadPaddingException e)
{

Loading…
Cancel
Save