[jboss-jira] [JBoss JIRA] (AS7-5185) Wrong character table in Base64Utils
wiktorowski maximilien (JIRA)
jira-events at lists.jboss.org
Tue Jul 17 08:21:06 EDT 2012
wiktorowski maximilien created AS7-5185:
-------------------------------------------
Summary: Wrong character table in Base64Utils
Key: AS7-5185
URL: https://issues.jboss.org/browse/AS7-5185
Project: Application Server 7
Issue Type: Feature Request
Components: Security
Affects Versions: 7.1.1.Final
Reporter: wiktorowski maximilien
Assignee: Anil Saldhana
In picketbox-4.0.7.Final.jar org.jboss.security.Base64Utils has a wrong character table
private static final char[] base64Table = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz./".toCharArray();
It should be
private static final char[] base64Table = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz+/".toCharArray();
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira
More information about the jboss-jira
mailing list