RasEntryOptions.RequireEncryptedPassword Property

DotRas SDK

Collapse image Expand Image Copy image CopyHover image
Gets or sets a value indicating whether only secure password schemes can be used to authenticate the client.

Namespace: DotRas
Assembly: DotRas (in DotRas.dll) Version: 1.3.5166.33435 (1.3.0.0)

Syntax

C#
public bool RequireEncryptedPassword { get; set; }
Visual Basic
Public Property RequireEncryptedPassword As Boolean
	Get
	Set
Visual C++
public:
property bool RequireEncryptedPassword {
	bool get ();
	void set (bool value);
}
F#
member RequireEncryptedPassword : bool with get, set

Property Value

Type: Boolean

Remarks

If this option is set, only secure password schemes can be used to authenticate the client with the server. This prevents the PPP driver from using the PAP plain-text authentication protocol (PAP) to authenticate the client, however MD5-CHAP and SPAP are supported. Clear this option for increased interoperability, and set it for increased security. Setting this option also sets the RequireSpap, RequireChap, RequireMSChap, and RequireMSChap2 options.

This option corresponds to the Require Encrypted Password checkbox in the Security settings dialog box.

See Also