Ejemplo n.º 1
0
 /// <summary>
 /// Continue the authentication..
 /// </summary>
 /// <param name="token">The client token to continue authentication.</param>
 /// <param name="additional_input">Specify additional input buffers, does not need to include the token.</param>
 public void Continue(AuthenticationToken token, IEnumerable <SecurityBuffer> additional_input)
 {
     Continue(token, additional_input, new SecurityBuffer[0]);
 }
 /// <summary>
 /// Continue the authentication with the server token.
 /// </summary>
 /// <param name="token">The server token to continue authentication.</param>
 public void Continue(AuthenticationToken token)
 {
     Continue(token, new List <SecurityBuffer>());
 }
Ejemplo n.º 3
0
 /// <summary>
 /// Continue the authentication with the client token.
 /// </summary>
 /// <param name="token">The client token to continue authentication.</param>
 public void Continue(AuthenticationToken token)
 {
     Continue(token, new SecurityBuffer[0]);
 }
Ejemplo n.º 4
0
 /// <summary>
 /// Continue the authentication with the client token.
 /// </summary>
 /// <param name="token">The client token to continue authentication.</param>
 public void Continue(AuthenticationToken token)
 {
     Done = GenServerContext(token);
 }