-
Notifications
You must be signed in to change notification settings - Fork 38
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
createHMac #14
Comments
Hi @paullinator, any chance to get HMAC added to this package? |
Sorry for the late response. Sorry it’s not in the roadmap at this point. HMAC is relatively fast in pure JS. |
Giovanis, have you found any library to do that in RN? |
I had to use this library https://github.com/mvayngrib/react-native-crypto to be able to use TOTP Hmac based algorithm. |
How about supporting something like this: https://github.com/bitcoinjs/tiny-secp256k1 ? |
I'd like to do things like this in RN:
crypto.createHmac('sha256', secret).update('abcdefg').digest('hex');
it is possible with this library?
The text was updated successfully, but these errors were encountered: