| 
            
              RadiusPacketEncryptPassword Method
             | 
          
        
        
            Generates an encrypted password using the RADIUS protocol specification (RFC 2285).
            
        
        Namespace: GSF.Communication.RadiusAssembly: GSF.Communication (in GSF.Communication.dll) Version: 2.4.258-beta
Syntaxpublic static byte[] EncryptPassword(
	string password,
	string sharedSecret,
	byte[] requestAuthenticator
)
Public Shared Function EncryptPassword ( 
	password As String,
	sharedSecret As String,
	requestAuthenticator As Byte()
) As Byte()
static member EncryptPassword : 
        password : string * 
        sharedSecret : string * 
        requestAuthenticator : byte[] -> byte[] GSF.Communication.Radius.RadiusPacket.EncryptPassword = function(password, sharedSecret, requestAuthenticator);
 View SourceParameters
- password  String
 - User's password.
 - sharedSecret  String
 - Shared secret key.
 - requestAuthenticator  Byte
 - Request authenticator byte array.
 
Return Value
ByteA byte array.
See Also