react-native-star-hash
Version:
A hashing library for react-native
14 lines (10 loc) • 494 B
JavaScript
/* eslint linebreak-style: ["error", "windows"] */
/* eslint-disable no-use-before-define */
import { NativeModules } from 'react-native';
const { RNHash } = NativeModules;
export default RNHash;
export { default as JSHash } from './JSHash/JSHash.js';
export { default as JSHmac } from './JSHash/JSHmac.js';
export { default as CONSTANTS } from './Constants.js';
export { default as useHash } from './JSHash/Hooks/useHash.js';
export { default as useHmac } from './JSHash/Hooks/useHmac.js';