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
Running skip.Encrypt(42) on a big-endian system gives different results than skip.Encrypt(42) on a little-endian system.
skip.Encrypt(42)
Solution: on a big-endian system, reverse the bytes of the integer on encrypt and decrypt.
The text was updated successfully, but these errors were encountered:
This would be a breaking change on big-endian system.
Sorry, something went wrong.
69ec573
No branches or pull requests
Running
skip.Encrypt(42)
on a big-endian system gives different results thanskip.Encrypt(42)
on a little-endian system.Solution: on a big-endian system, reverse the bytes of the integer on encrypt and decrypt.
The text was updated successfully, but these errors were encountered: