Thomas Sydorowski
Thomas Sydorowski
This is not supported at the moment. It would be a bit of work to support tampering with HTTPS traffic and would come with some caveats: you would have certificate...
@cbenitez101 You can usually configure your browser or OS to proxy just HTTP and to leave HTTPS traffic alone. This project does not support HTTPS, but another more complete HTTP...
The project uses language features in Java 8 so the minimum supported version is Java 8. You could probably get it to work with Java 6 with a few code...
AAA4J-RADIUS does not currently support PEAP but we do plan to add support for EAP methods, including PEAP, in the future.
The library currently only supports PAP authentication which doesn't return error codes. It sounds like you are looking to do MS-CHAP or MS-CHAPv2 authentication? Does your RADIUS server return vendor-specific...
The website hasn't been developed yet. Are you looking for documentation? The examples in [README.md](https://github.com/aaa4j/aaa4j-radius/blob/master/README.md) are a good place to start. The standard RADIUS data types and attributes are already...
The website is now up: https://aaa4j.org/
Hello, the library doesn't currently have a good way to compact vendor-specific attributes into a single top-level attribute. For now, you could use `RawAttribute` like this when sending: ```java ByteBuffer...
Hello, currently only PAP is built in to the library using the `User-Password` attribute. There are plans to add other authentication protocols sometime in the future.