UNPKG

@levabala/react-native-uuid

Version:

react-native-uuid is a zero-dependency TypeScript implementation of RFC4122.

8 lines (7 loc) 412 B
export declare const hex_md5: (s: string) => string; export default hex_md5; export declare const b64_md5: (s: string) => string; export declare const any_md5: (s: string, e: string) => string; export declare const hex_hmac_md5: (k: string, d: string) => string; export declare const b64_hmac_md5: (k: string, d: string) => string; export declare const any_hmac_md5: (k: string, d: string, e: string) => string;