UNPKG

react-native-quick-crypto

Version:

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

4 lines 251 B
import type { KeyObjectHandle } from './webcrypto'; export type GenerateSecretKeyMethod = (length: number) => Promise<KeyObjectHandle>; export type GenerateSecretKeySyncMethod = (length: number) => KeyObjectHandle; //# sourceMappingURL=keygen.d.ts.map