decCipher.init( Cipher.DECRYPT_MODE, secretKey, paramSpec );
byte[] toDecryptBytes = Base64.decodeBase64( encryptedPassword.getBytes() );
byte[] decryptedBytes = decCipher.doFinal( toDecryptBytes );
return new String( decryptedBytes, LocaleHelper.getSystemEncoding() );
} catch ( Exception ex ) {
throw new PasswordServiceException( ex );
}
}