UNPKG

react-native-quick-crypto

Version:

A fast implementation of Node's `crypto` module written in C/C++ JSI

6 lines 233 B
export type InternalHmac = { update: (data: ArrayBuffer) => InternalHmac; digest: () => ArrayBuffer; }; export type CreateHmacMethod = (algorithm: string, key?: ArrayBuffer) => InternalHmac; //# sourceMappingURL=hmac.d.ts.map