Walter.Web.FireWall
ApplicationPassword Property
Example 
Walter.Web.FireWall Assembly > Walter.Web.FireWall.Configurations Namespace > CypherConfig Class : ApplicationPassword Property
Recommended to set it, Use the following application wide password to be used when cyphering data that needs to be protected. The Key is populated with the Application Signature or Project name Shai1 Hash
Syntax
public string ApplicationPassword {get; set;}
Remarks

The Application password should not be changed as you will loose the ability to read the data later. You can use the license of the firewall to encrypt and decrypt data.

You can use the IFireWall.License.Encrypt end IFireWall.License.Decrypt to protect any data using your license and the application password.

Example
The following sample shows a 8 byte Shai1 password is created using the extension method available when using Walter namespace. An 8 byte hash generates 16 character password the length of the password it self is irrelevant.
options.Cypher.ApplicationPassword = "mydomain".AsShaHash(HashMethod.SHA1, 8);
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

CypherConfig Class
CypherConfig Members
The license manager Encrypt and Decrypt methods using the application password