We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The AWS SDK for JavaScript (v3) has a new requirement for using CRC64 checksum algorithm.
For CRC32, the JS SDK v3 currently uses the implementations provided by Crypto:
@aws-crypto/crc32
@aws-crypto/crc32c
We would like to use CRC64 implementation from @aws-crypto/crc64.
@aws-crypto/crc64
The CRC64 implementation is provided in @aws-crypto/crc64
@aws-sdk/crc64
The text was updated successfully, but these errors were encountered:
Specification of CRC64 implementation that we're looking for http://www.ross.net/crc/download/crc_v3.txt
The Rocksoft (NVME) 64-bit CRC model parameters are as follows:
Poly: 0xAD93D23594C93659 Initial value: 0xFFFFFFFFFFFFFFFF Reflected Input: True Reflected Output: True Xor Final: 0xFFFFFFFFFFFFFFFF
Sorry, something went wrong.
CRC64 rocksoft implementation in Linux
https://github.com/torvalds/linux/blob/master/lib/crc64-rocksoft.c
No branches or pull requests
Is your feature request related to a problem? Please describe.
The AWS SDK for JavaScript (v3) has a new requirement for using CRC64 checksum algorithm.
For CRC32, the JS SDK v3 currently uses the implementations provided by Crypto:
@aws-crypto/crc32
@aws-crypto/crc32c
We would like to use CRC64 implementation from
@aws-crypto/crc64
.Describe the solution you'd like
The CRC64 implementation is provided in
@aws-crypto/crc64
Describe alternatives you've considered
@aws-sdk/crc64
The text was updated successfully, but these errors were encountered: