Updated the EIP-712 filtering signature specs; Update the verification implementation to now handle field path intead of only the field key name

This commit is contained in:
Alexandre Paillier
2022-07-01 18:23:35 +02:00
parent 4574c223f2
commit 01179730a1
5 changed files with 71 additions and 71 deletions

View File

@@ -39,7 +39,9 @@ void path_deinit(void);
bool path_new_array_depth(uint8_t size);
e_root_type path_get_root_type(void);
const void *path_get_root(void);
const void *path_get_nth_struct_to_last(uint8_t n);
const void *path_get_nth_field(uint8_t n);
const void *path_get_nth_field_to_last(uint8_t n);
uint8_t path_get_depth_count(void);
#endif // HAVE_EIP712_FULL_SUPPORT