Looking for a way to hash values in a Chrome extension specifically using sha256 and ripemd160 with a key.
Since PHP can't be used and JavaScript doesn't have a built-in function for this, the only solution I see is either sending a request to a server to receive the hash or possibly inserting a library with hash functions into the project.
What would be the most effective approach to hashing values within Chrome Extensions and how should it be implemented?