-
Bug
-
Resolution: Done
-
Major
-
None
-
None
In ByteIterator.getBE64(), the 52 should below should be 56 (this was fixed in org.wildfly.security.util.ByteIterator just after ByteIterator was moved to WildFly Common):
return (long)next() << 52 | (long)next() << 48 | (long)next() << 40 | (long)next() << 32 | (long)next() << 24 | (long)next() << 16 | (long)next() << 8 | (long)next();
- is incorporated by
-
WFCORE-3781 Upgrade WildFly Common to 1.3.2.Final
- Resolved