Github user necouchman commented on a diff in the pull request:
https://github.com/apache/guacamole-client/pull/242#discussion_r165833158
--- Diff:
extensions/guacamole-auth-radius/src/main/java/org/apache/guacamole/auth/radius/AuthenticationProviderService.java
---
@@ -97,7 +99,7 @@ private CredentialsInfo getRadiusChallenge(RadiusPacket
challengePacket) {
// We have the required attributes - convert to strings and then
generate the additional login box/field
String replyMsg = replyAttr.toString();
- String radiusState = new String(stateAttr.getValue().getBytes());
+ String radiusState =
javax.xml.bind.DatatypeConverter.printHexBinary(stateAttr.getValue().getBytes());
--- End diff --
Haha. Well, that was silly. Removed.
---