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.
47 lines
1.1 KiB
47 lines
1.1 KiB
import type { BytesLike } from "../utils/index.js"; |
|
/** |
|
* Compute the cryptographic SHA2-256 hash of %%data%%. |
|
* |
|
* @_docloc: api/crypto:Hash Functions |
|
* @returns DataHexstring |
|
* |
|
* @example: |
|
* sha256("0x") |
|
* //_result: |
|
* |
|
* sha256("0x1337") |
|
* //_result: |
|
* |
|
* sha256(new Uint8Array([ 0x13, 0x37 ])) |
|
* //_result: |
|
* |
|
*/ |
|
export declare function sha256(_data: BytesLike): string; |
|
export declare namespace sha256 { |
|
var _: (data: Uint8Array) => Uint8Array; |
|
var lock: () => void; |
|
var register: (func: (data: Uint8Array) => BytesLike) => void; |
|
} |
|
/** |
|
* Compute the cryptographic SHA2-512 hash of %%data%%. |
|
* |
|
* @_docloc: api/crypto:Hash Functions |
|
* @returns DataHexstring |
|
* |
|
* @example: |
|
* sha512("0x") |
|
* //_result: |
|
* |
|
* sha512("0x1337") |
|
* //_result: |
|
* |
|
* sha512(new Uint8Array([ 0x13, 0x37 ])) |
|
* //_result: |
|
*/ |
|
export declare function sha512(_data: BytesLike): string; |
|
export declare namespace sha512 { |
|
var _: (data: Uint8Array) => Uint8Array; |
|
var lock: () => void; |
|
var register: (func: (data: Uint8Array) => BytesLike) => void; |
|
} |
|
//# sourceMappingURL=sha2.d.ts.map
|