ipfs storage for images and other nontext items. for use with etica - runs on etica network and currencys
https://collect.etica-stats.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
616 B
21 lines
616 B
import { SHA2 } from './_sha2.js'; |
|
declare class SHA1 extends SHA2<SHA1> { |
|
private A; |
|
private B; |
|
private C; |
|
private D; |
|
private E; |
|
constructor(); |
|
protected get(): [number, number, number, number, number]; |
|
protected set(A: number, B: number, C: number, D: number, E: number): void; |
|
protected process(view: DataView, offset: number): void; |
|
protected roundClean(): void; |
|
destroy(): void; |
|
} |
|
export declare const sha1: { |
|
(msg: import("./utils.js").Input): Uint8Array; |
|
outputLen: number; |
|
blockLen: number; |
|
create(): import("./utils.js").Hash<SHA1>; |
|
}; |
|
export {};
|
|
|