C# 클래스 FOG.Handlers.Data.AES

파일 보기 프로젝트 열기: FOGProject/zazzles

공개 메소드들

메소드 설명
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