You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
So, right now, if one wants to create a RADIUS packet
Initialise Server/Client
let client = Client::with_dictionary(dictionary).set_server(server).set_secret(secret).set_retries(retries).set_timeout(timeout).set_port(RadiusMsgType::AUTH, auth_port);
However, if one wants to add attributes, that should be encrypted, they need to have an instance of authenticator, which is created inside RADIUS packet, when packet is created (Step 3 above), but RADIUS packet cannot be created without attributes, so such encrypted attribute cannot be easily added to the packet
There are a few ways how this could be resolved, so need to go through options and choose the one that requires minimum changes
The text was updated successfully, but these errors were encountered:
So, right now, if one wants to create a RADIUS packet
==============
However, if one wants to add attributes, that should be encrypted, they need to have an instance of authenticator, which is created inside RADIUS packet, when packet is created (Step 3 above), but RADIUS packet cannot be created without attributes, so such encrypted attribute cannot be easily added to the packet
There are a few ways how this could be resolved, so need to go through options and choose the one that requires minimum changes
The text was updated successfully, but these errors were encountered: