C# Class FOG.Handlers.Data.AES

ファイルを表示 Open project: FOGProject/zazzles

Public Methods

Method Description
Decrypt ( byte toDecode, byte key, byte iv ) : string

AES decrypts a string

Decrypt ( string toDecode, byte key ) : string

Decrypts a string using AES, and automatically extracts the initialization vector The string to be decrypted The AES pass key to use A decrypted version of toDecode

Decrypt ( string toDecode, string passKey, string initializationVector ) : string

AES decrypts a string The hex-code string to be decrypted The AES pass key The AES initialization vector An decrypted string of toDecode

Method Details

Decrypt() public static method

AES decrypts a string
public static Decrypt ( byte toDecode, byte key, byte iv ) : string
toDecode byte The string to be decrypted
key byte The AES pass key
iv byte The AES initialization vector
return string

Decrypt() public static method

Decrypts a string using AES, and automatically extracts the initialization vector The string to be decrypted The AES pass key to use A decrypted version of toDecode
public static Decrypt ( string toDecode, byte key ) : string
toDecode string
key byte
return string

Decrypt() public static method

AES decrypts a string The hex-code string to be decrypted The AES pass key The AES initialization vector An decrypted string of toDecode
public static Decrypt ( string toDecode, string passKey, string initializationVector ) : string
toDecode string
passKey string
initializationVector string
return string