Mini React Native crypto library written in kotlin and swift.
npm install react-native-hashkit
yarn add react-native-hashkit
import { sha256 } from "react-native-hashkit";
// ...
const result = await sha256('data');
import { hmacSHA256 } from "react-native-hashkit";
// ...
const result = await hmacSHA256('message', 'secret key');
- [X] MD5
- [X] SHA-1
- [X] SHA-224
- [X] SHA-384
- [X] SHA-256
- [X] SHA-512
- [X] HMAC-SHA256
- [ ] Aes256GCM
See the contributing guide to learn how to contribute to the repository and the development workflow.
MIT
Made with create-react-native-library