Provide the function that calculates the HMAC of a message as a Native Module.
npm install react-native-hmacProvide the function that calculates the HMAC.
``sh`
npm install react-native-hmac
or
yarn add react-native-hmac
`js
import { hmacSHA256 } from "react-native-hmac";
const result = await hmacSHA256(message, key);
``
Supporting algorithm: MD5, SHA1, SHA256
MIT