Crypto Class

Design Pattern Framework 3.5

Design Pattern Framework 3.5 Crypto Class
Patterns-In-Action! ApplicationEncryptionCrypto
Cryptographic class for encryption and decryption of string values.
Declaration Syntax
C# Visual Basic
public static class Crypto
Public NotInheritable Class Crypto
Members
All Members Methods



Icon Member Description
ActionDecrypt(String)
Standard decrypt method for Patterns in Action. Uses the predefined key and iv.

ActionEncrypt(String)
Standard encrypt method for Patterns in Action. Uses the predefined key and iv.

Decrypt(String, String, String)
Decrypts a memory string (i.e. variable).

Encrypt(String, String, String)
Encrypts a memory string (i.e. variable).

GenerateIV()()()
Generates an 8 byte Hex IV (Initialization Vector).

GenerateKey()()()
Generates a 24 byte Hex key.

Inheritance Hierarchy
Object
Crypto

Assembly: Encryption (Module: Encryption) Version: 1.0.0.0 (1.0.0.0)