I am sending some day from my react native app to store it on GCS bucket using signed url.
However, I don’t want to risk writing my own implementation for crc32c hashing and making mistake. Is there a recommended library for doing this in react native? I am able to find recommended libraries here: https://cloud.google.com/storage/docs/hashes-etags#crc32c
but none of them are on pure JS/Typescript.
Note that I am looking for CRC32C implementation and not CRC32, as this is what is supported by GCS
Thanks