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
The 32 bits pin code is passed to the function pbkdf2_sha256 as an array of 4 bytes. This is done by passing the address of the 32 bits pin code. However, this will fail on a big endian processor.
Proposed Solution
Convert the pin code to little endian format before passing to pbkdf2_sha256.
The text was updated successfully, but these errors were encountered:
Problem
The 32 bits pin code is passed to the function pbkdf2_sha256 as an array of 4 bytes. This is done by passing the address of the 32 bits pin code. However, this will fail on a big endian processor.
Proposed Solution
Convert the pin code to little endian format before passing to pbkdf2_sha256.
The text was updated successfully, but these errors were encountered: