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
While the identifier is always serialized and deserialized as big-endian, during identifier generation random bytes are assigned in platform byte order.
This doesn't matter much since it is random anyway, except when replicating test vectors; the first byte out of the RNG ends up in second position of the output. Would help with test replication if the order in which random bytes out of the RNG are combined into the identifier was also big-endian.
The text was updated successfully, but these errors were encountered:
Ref: https://github.com/BlockchainCommons/bc-sskr/blob/master/src/encoding.c#L165..L166
While the identifier is always serialized and deserialized as big-endian, during identifier generation random bytes are assigned in platform byte order.
This doesn't matter much since it is random anyway, except when replicating test vectors; the first byte out of the RNG ends up in second position of the output. Would help with test replication if the order in which random bytes out of the RNG are combined into the identifier was also big-endian.
The text was updated successfully, but these errors were encountered: