StorageCRC64Calculator class

CRC64 체크섬 계산에 사용되는 클래스

메서드

append(Uint8Array, number)

CRC64 체크섬 계산기 데이터 첨부

final(Uint8Array, number)

CRC64 체크섬 계산을 완료하고 최종 결과를 받으세요.

init()

CRC64 체크섬 계산기 환경 초기화

메서드 세부 정보

append(Uint8Array, number)

CRC64 체크섬 계산기 데이터 첨부

function append(body: Uint8Array, length: number)

매개 변수

body

Uint8Array

첨부할 내용

length

number

내용의 길이

final(Uint8Array, number)

CRC64 체크섬 계산을 완료하고 최종 결과를 받으세요.

function final(body: Uint8Array, length: number): Uint8Array

매개 변수

body

Uint8Array

length

number

반환

Uint8Array

init()

CRC64 체크섬 계산기 환경 초기화

static function init(): Promise<void>

반환

Promise<void>