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 |