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
Whether the calculation result of CRC32.buf in the node and the calculation result of CRC32.str in the scheduler are always the same with the same parameters?I want to use one on the server and one on the browser, but I'm afraid that the two methods will calculate the same string inconsistently.
The text was updated successfully, but these errors were encountered:
/* Frequently faster in NodeJS */
crc32 = CRC32.buf(Buffer.from(bstr, "binary"), 0);
crc32 = CRC32.str(bstr, 0);
Whether the calculation result of CRC32.buf in the node and the calculation result of CRC32.str in the scheduler are always the same with the same parameters?I want to use one on the server and one on the browser, but I'm afraid that the two methods will calculate the same string inconsistently.
The text was updated successfully, but these errors were encountered: