Skip to content

Instantly share code, notes, and snippets.

@ericlaw1979
Created October 9, 2015 19:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ericlaw1979/885e5a7a85437bdb327d to your computer and use it in GitHub Desktop.
Save ericlaw1979/885e5a7a85437bdb327d to your computer and use it in GitHub Desktop.
public interface ICertificateProviderInfo
{
/// <summary>
/// Return a string describing the current configuration of the Certificate Provider. For instance, list
/// the configured key size, hash algorithms, etc.
/// </summary>
string GetConfigurationString();
/// <summary>
/// Show a configuration dialog that allows user to control options related to your Certificate Provider,
/// for instance, the configured key size, hash algorithm, etc.
/// </summary>
/// <param name="hwndOwner">Owning Window Handle</param>
void ShowConfigurationUI(IntPtr hwndOwner);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment