0.2.0 • Published 2 years ago

react-native-hashkit v0.2.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

react-native-hashkit

Mini React Native crypto library written in kotlin and swift.

Installation

npm install react-native-hashkit
yarn add react-native-hashkit

Usage

SHA-256

import { sha256 } from "react-native-hashkit";

// ...

const result = await sha256('data');

HMAC-SHA256

import { hmacSHA256 } from "react-native-hashkit";

// ...

const result = await hmacSHA256('message', 'secret key');

Roadmap

  • MD5
  • SHA-1
  • SHA-224
  • SHA-384
  • SHA-256
  • SHA-512
  • HMAC-SHA256
  • Aes256GCM

Contributing

See the contributing guide to learn how to contribute to the repository and the development workflow.

License

MIT


Made with create-react-native-library