C# 클래스 BaseNcoding.BaseN

상속: Base
파일 보기 프로젝트 열기: KvanTTT/BaseNcoding

공개 메소드들

메소드 설명
BaseN ( string alphabet, uint blockMaxBitsCount = 32, Encoding encoding = null, bool reverseOrder = false, bool parallel = false ) : System
Decode ( string data ) : byte[]
Encode ( byte data ) : string

비공개 메소드들

메소드 설명
AddBits64 ( byte data, ulong value, int bitPos, int bitsCount ) : void
BitsToChars ( char chars, int ind, int count, ulong block ) : void
CharsToBits ( string data, int ind, int count ) : ulong
DecodeBlock ( string src, byte dst, int beginInd, int endInd ) : void
EncodeBlock ( byte src, char dst, int beginInd, int endInd ) : void
GetBits64 ( byte data, int bitPos, int bitsCount ) : ulong

메소드 상세

BaseN() 공개 메소드

public BaseN ( string alphabet, uint blockMaxBitsCount = 32, Encoding encoding = null, bool reverseOrder = false, bool parallel = false ) : System
alphabet string
blockMaxBitsCount uint
encoding System.Text.Encoding
reverseOrder bool
parallel bool
리턴 System

Decode() 공개 메소드

public Decode ( string data ) : byte[]
data string
리턴 byte[]

Encode() 공개 메소드

public Encode ( byte data ) : string
data byte
리턴 string