Brad Anderson
Brad Anderson
I think #823 implements `subtle.importKey()` for `HMAC`. Check it out and let me know...
#842 implements `subtle.sign()` for `HMAC`
Hi @losh11 - still seeing this in later versions? The Example app is building fine. I am not sure how to recreate your codepath to that error.
Want to throw together a PR with this change and see how the tests in the example application do with it?
`main` gets the upgrade in #534
`0.x` gets the upgrade in #559
try commenting out the throw [here](https://github.com/margelo/react-native-quick-crypto/blob/0.x/src/NativeQuickCrypto/NativeQuickCrypto.ts#L68C9-L70C11) and see if it works. That code is 3 years old, and things may have changed.
https://docs.expo.dev/workflow/customizing/#using-libraries-that-include-native-code > If you are using the sandbox app, Expo Go, you can only access native libraries that are included in the Expo SDK, or libraries that do not include...
@xgiovio I'm not sure why you got that error in the `getPrivateKey()` result, but `Ed.generateKeyPair()` has the return type of `Promise`, meaning it will not return anything once resolved. The...
#840, #848