C# Класс FOG.Handlers.Data.AES

Показать файл Открыть проект

Открытые методы

Метод Описание
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

Описание методов

Decrypt() публичный статический Метод

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
Результат string

Decrypt() публичный статический Метод

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
Результат string

Decrypt() публичный статический Метод

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
Результат string