Reformatting #13
Answered
by
vivian-dai
DevSriAkash
asked this question in
Q&A
-
Hey there! I didn't understand the reformatting of the cipher we got. I understand the removal of (nil), &, + and = but I don't understand how the order changed. Can you help me out? |
Beta Was this translation helpful? Give feedback.
Answered by
vivian-dai
Oct 17, 2022
Replies: 1 comment 3 replies
-
The order is different because of little endian. Little end stores the least significant byte first. We're more used to a big endian format where the most significant byte is stored first. |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
DevSriAkash
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The order is different because of little endian. Little end stores the least significant byte first. We're more used to a big endian format where the most significant byte is stored first.