Symmetric encryption is the oldest and best-known technique. A secret key, which can be a number, a word, or just a string of random letters, is applied to the text of a message to change the content in a particular way. As long as both sender and recipient know the secret key, they can encrypt and decrypt all messages that use this key.

Namespace:  RedCritterServerV1.Encryption
Assembly:  RedCritterServerV1 (in RedCritterServerV1.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

      
 C#  Visual Basic 
public static class Symetrical
Public NotInheritable Class Symetrical

Members

      
 All Members  Methods  
 Public

 Protected
 Instance

 Static 
 Declared

 Inherited
 XNA Framework Only 

 .NET Compact Framework Only 

 MemberDescription
Decrypt(String, String)
Symetrical Decryption for decrypting data.
Encrypt(String, String)
Symetrical Encryption for encrypting data.
GetHashKey(String, String)
Returns a hash key for use in encryption and decryption methods.

Inheritance Hierarchy

System..::.Object
  RedCritterServerV1.Encryption..::.Symetrical

See Also