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 current design of the crypto library API relies extensively on string representations of hexadecimal values. While having a FromStr implementation for hex strings may suffice for some use cases, basing the entire API interface on strings assumed to be hex is suboptimal.
To address these concerns, refactor the library to provide dedicated types for hexadecimal values, along with parsing and formatting methods tailored to these types.
The text was updated successfully, but these errors were encountered:
The current design of the crypto library API relies extensively on string representations of hexadecimal values. While having a FromStr implementation for hex strings may suffice for some use cases, basing the entire API interface on strings assumed to be hex is suboptimal.
To address these concerns, refactor the library to provide dedicated types for hexadecimal values, along with parsing and formatting methods tailored to these types.
The text was updated successfully, but these errors were encountered: