/// <summary>
 /// Basically nothing to write into the RSTR's requested proof token.
 /// </summary>
 /// <param name="response"></param>
 public override void ApplyTo( RSTR response )
 {
     if ( response == null )
     {
         throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull( "response" );
     }
     //
     // Nothing else to do for an asymmetric key
     //
 }
Exemple #2
0
 /// <summary>
 /// Basically nothing to write into the RSTR's requested proof token.
 /// </summary>
 /// <param name="response"></param>
 public override void ApplyTo(RSTR response)
 {
     if (response == null)
     {
         throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("response");
     }
     //
     // Nothing else to do for an asymmetric key
     //
 }
 /// <summary>
 /// Sets the appropriate things, such as requested proof token, inside the RSTR 
 /// based on what is inside the proof descriptor instance. 
 /// </summary>
 /// <param name="response">The RSTR object that this proof descriptor needs to modify.</param>
 public abstract void ApplyTo(RSTR response);
 /// <summary>
 /// Sets the appropriate things, such as requested proof token, inside the RSTR
 /// based on what is inside the proof descriptor instance.
 /// </summary>
 /// <param name="response">The RSTR object that this proof descriptor needs to modify.</param>
 public abstract void ApplyTo(RSTR response);