C# 클래스 Hugula.Cryptograph.CryptographHelper

파일 보기 프로젝트 열기: tenvick/hugula 1 사용 예제들

Private Properties

프로퍼티 타입 설명

공개 메소드들

메소드 설명
CrypfString ( string source, string key = "" ) : string

Md5s base64 string.

Decrypt ( byte encryptedBytes, byte Key, byte IV ) : byte[]
Encrypt ( byte PlainBytes, byte Key, byte IV ) : byte[]
Md5Bytes ( byte inputs ) : string

byte[] md5加密

Md5BytesTo32 ( byte inputs ) : string

byte[] md5加密

Md5String ( string source ) : string

string md5加密

메소드 상세

CrypfString() 공개 정적인 메소드

Md5s base64 string.
public static CrypfString ( string source, string key = "" ) : string
source string /// Source. ///
key string
리턴 string

Decrypt() 공개 정적인 메소드

public static Decrypt ( byte encryptedBytes, byte Key, byte IV ) : byte[]
encryptedBytes byte
Key byte
IV byte
리턴 byte[]

Encrypt() 공개 정적인 메소드

public static Encrypt ( byte PlainBytes, byte Key, byte IV ) : byte[]
PlainBytes byte
Key byte
IV byte
리턴 byte[]

Md5Bytes() 공개 정적인 메소드

byte[] md5加密
public static Md5Bytes ( byte inputs ) : string
inputs byte
리턴 string

Md5BytesTo32() 공개 정적인 메소드

byte[] md5加密
public static Md5BytesTo32 ( byte inputs ) : string
inputs byte
리턴 string

Md5String() 공개 정적인 메소드

string md5加密
public static Md5String ( string source ) : string
source string
리턴 string