C# 클래스 EpLibrary.cs.RijndaelCrypt

This is a class for Rijndael Crypt Class
파일 보기 프로젝트 열기: juhgiyo/EpLibrary.cs 1 사용 예제들

공개 메소드들

메소드 설명
GetCrypt ( byte cryptData, int offset, int count, string cryptPwd, CryptType cryptType ) : byte[]

Encrypt/Decypt the given cryptData with the given password

GetCrypt ( byte cryptData, int offset, int count, string cryptPwd, byte keySalt, CryptType cryptType ) : byte[]

Encrypt/Decypt the given cryptData with the given password

if keySalt is null, then default keySalt is used

GetCrypt ( byte cryptData, string cryptPwd, CryptType cryptType ) : byte[]

Encrypt/Decypt the given cryptData with the given password

GetCrypt ( byte cryptData, string cryptPwd, byte keySalt, CryptType cryptType ) : byte[]

Encrypt/Decypt the given cryptData with the given password

if keySalt is null, then default keySalt is used

GetCrypt ( string cryptData, string cryptPwd, CryptType cryptType ) : string

Encrypt/Decypt the given cryptData string with the given password

GetCrypt ( string cryptData, string cryptPwd, byte keySalt, CryptType cryptType ) : string

Encrypt/Decypt the given cryptData string with the given password

if keySalt is null, then default keySalt is used

메소드 상세

GetCrypt() 공개 정적인 메소드

Encrypt/Decypt the given cryptData with the given password
public static GetCrypt ( byte cryptData, int offset, int count, string cryptPwd, CryptType cryptType ) : byte[]
cryptData byte data to crypt
offset int offset of cryptData for crypt
count int length for crypt
cryptPwd string password string
cryptType CryptType crypt type
리턴 byte[]

GetCrypt() 공개 정적인 메소드

Encrypt/Decypt the given cryptData with the given password
if keySalt is null, then default keySalt is used
public static GetCrypt ( byte cryptData, int offset, int count, string cryptPwd, byte keySalt, CryptType cryptType ) : byte[]
cryptData byte data to crypt
offset int offset of cryptData for crypt
count int length for crypt
cryptPwd string password string
keySalt byte salt string
cryptType CryptType crypt type
리턴 byte[]

GetCrypt() 공개 정적인 메소드

Encrypt/Decypt the given cryptData with the given password
public static GetCrypt ( byte cryptData, string cryptPwd, CryptType cryptType ) : byte[]
cryptData byte data to crypt
cryptPwd string password string
cryptType CryptType crypt type
리턴 byte[]

GetCrypt() 공개 정적인 메소드

Encrypt/Decypt the given cryptData with the given password
if keySalt is null, then default keySalt is used
public static GetCrypt ( byte cryptData, string cryptPwd, byte keySalt, CryptType cryptType ) : byte[]
cryptData byte data to crypt
cryptPwd string password string
keySalt byte salt string
cryptType CryptType crypt type
리턴 byte[]

GetCrypt() 공개 정적인 메소드

Encrypt/Decypt the given cryptData string with the given password
public static GetCrypt ( string cryptData, string cryptPwd, CryptType cryptType ) : string
cryptData string string data to encrypt
cryptPwd string password string
cryptType CryptType crypt type
리턴 string

GetCrypt() 공개 정적인 메소드

Encrypt/Decypt the given cryptData string with the given password
if keySalt is null, then default keySalt is used
public static GetCrypt ( string cryptData, string cryptPwd, byte keySalt, CryptType cryptType ) : string
cryptData string string data to encrypt
cryptPwd string password string
keySalt byte
cryptType CryptType crypt type
리턴 string