本文整理汇总了TypeScript中@es-git/core.Sha1类的典型用法代码示例。如果您正苦于以下问题:TypeScript Sha1类的具体用法?TypeScript Sha1怎么用?TypeScript Sha1使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Sha1类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: next
async next(length? : number) {
if(length === undefined){
const result = await super.next();
this.temp[0] = result;
this.sha.update(this.temp);
return result;
}else{
const result = await super.next(length);
return this.sha.update(result);
}
}
示例2:
async nextInt32() : Promise<number> {
const buffer = await super.next(4);
this.sha.update(buffer);
let result = 0;
for(let i=0; i<4; i++){
result = (result << 8) | buffer[i];
}
return result;
}
示例3: digest
digest(){
const result = this.sha.digest();
this.sha = sha1();
return result;
}
示例4: rewind
rewind(length : number){
if(this.tempChunk) this.sha.update(this.tempChunk.subarray(0, this.tempChunk.length - length));
this.tempChunk = undefined;
super.rewind(length);
}
示例5: chunk
async chunk() {
if(this.tempChunk) this.sha.update(this.tempChunk);
this.tempChunk = await super.chunk();
return this.tempChunk;
}