C# 클래스 NContext.Security.Cryptography.CryptographyUtility

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

공개 메소드들

메소드 설명
CombineBytes ( Byte buffer1, Byte buffer2 ) : Byte[]

Combines two byte arrays into one.

CompareBytes ( Byte byte1, Byte byte2 ) : System.Boolean
GetBytes ( Byte bytes, Int32 count, Int32 offset ) : Byte[]
GetBytes ( Stream stream, Int32 count, Int32 offset ) : Byte[]
GetBytesFromHexString ( String hexadecimalNumber ) : Byte[]

Returns a byte array from a string representing a hexadecimal number.

GetHexStringFromBytes ( Byte bytes ) : String

Returns a string from a byte array represented as a hexadecimal number (eg: 0F351A).

메소드 상세

CombineBytes() 공개 정적인 메소드

Combines two byte arrays into one.

public static CombineBytes ( Byte buffer1, Byte buffer2 ) : Byte[]
buffer1 Byte The prefixed bytes.
buffer2 Byte The suffixed bytes.
리턴 Byte[]

CompareBytes() 공개 정적인 메소드

public static CompareBytes ( Byte byte1, Byte byte2 ) : System.Boolean
byte1 Byte
byte2 Byte
리턴 System.Boolean

GetBytes() 공개 정적인 메소드

public static GetBytes ( Byte bytes, Int32 count, Int32 offset ) : Byte[]
bytes Byte
count System.Int32
offset System.Int32
리턴 Byte[]

GetBytes() 공개 정적인 메소드

public static GetBytes ( Stream stream, Int32 count, Int32 offset ) : Byte[]
stream Stream
count System.Int32
offset System.Int32
리턴 Byte[]

GetBytesFromHexString() 공개 정적인 메소드

Returns a byte array from a string representing a hexadecimal number.

public static GetBytesFromHexString ( String hexadecimalNumber ) : Byte[]
hexadecimalNumber String /// The string containing a valid hexadecimal number. ///
리턴 Byte[]

GetHexStringFromBytes() 공개 정적인 메소드

Returns a string from a byte array represented as a hexadecimal number (eg: 0F351A).

public static GetHexStringFromBytes ( Byte bytes ) : String
bytes Byte /// The byte array to convert to a hexadecimal number. ///
리턴 String