NdesPolicyBaseOnGenerateChallenge Method

Called by server engine. Implementers use this method to define their own challenge password generator.

Definition

Namespace: ADCS.CertMod.Managed.NDES
Assembly: ADCS.CertMod.Managed (in ADCS.CertMod.Managed.dll) Version: 3.0.0+d2bb03ea44678b01baee06872c78fd0a30d7e09e
C#
protected virtual string OnGenerateChallenge(
	string template,
	string parameters
)

Parameters

template  String
The template being requested for, as determined by NDES.
parameters  String
Parameters specific to the policy module implementation.

Return Value

String
Generated challenge password string.

Remarks

This method provides default implementation which calls GetNextChallenge(String, String).

See Also