You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We probably don't need to be using something that's cryptographically secure (i.e., SHA-1). Instead, we could opt for a faster hash function (like Murmur) or use a checksum (like Adler-32 or CRC32).
For example, React uses Adler-32 to verify that server-generated markup matches client-generated markup (for server-side rendering).
The text was updated successfully, but these errors were encountered:
We probably don't need to be using something that's cryptographically secure (i.e., SHA-1). Instead, we could opt for a faster hash function (like Murmur) or use a checksum (like Adler-32 or CRC32).
For example, React uses Adler-32 to verify that server-generated markup matches client-generated markup (for server-side rendering).
The text was updated successfully, but these errors were encountered: