C# 클래스 SecurityDriven.Inferno.Extensions.Base16Extensions

파일 보기 프로젝트 열기: sdrapkin/SecurityDriven.Inferno

공개 메소드들

메소드 설명
FromBase16 ( this str16, Base16Config config = null ) : byte[]

Converts a Base16-encoded string into equivalent byte array. Does not validate Base16 encoding correctness.

ToBase16 ( this binary, Base16Config config = null ) : string

Converts a byte array into equivalent Base16-encoded string.

ToBase16 ( this binarySegment, Base16Config config = null ) : string

Converts a byte array into equivalent Base16-encoded string.

메소드 상세

FromBase16() 공개 정적인 메소드

Converts a Base16-encoded string into equivalent byte array. Does not validate Base16 encoding correctness.
public static FromBase16 ( this str16, Base16Config config = null ) : byte[]
str16 this
config Base16Config
리턴 byte[]

ToBase16() 공개 정적인 메소드

Converts a byte array into equivalent Base16-encoded string.
public static ToBase16 ( this binary, Base16Config config = null ) : string
binary this
config Base16Config
리턴 string

ToBase16() 공개 정적인 메소드

Converts a byte array into equivalent Base16-encoded string.
public static ToBase16 ( this binarySegment, Base16Config config = null ) : string
binarySegment this
config Base16Config
리턴 string