UNPKG
@ndn/util
Version:
latest (0.0.20260427)
0.0.20260427
0.0.20250307
0.0.20250122
0.0.20240630
0.0.20240113
0.0.20230121
0.0.20220501
NDNts: general utilities
yoursunny.com/p/NDNts/
yoursunny/NDNts
@ndn/util
/
lib
/
crypto.d.ts
5 lines
(4 loc)
•
222 B
TypeScript
View Raw
1
2
3
4
5
/** Timing-safe equality comparison. */
export
declare
function
timingSafeEqual
(
a
:
Uint8Array
,
b
:
Uint8Array
):
boolean
;
/** Compute SHA256 digest. */
export
declare
function
sha256
(
input
:
Uint8Array
):
Promise
<
Uint8Array
>;