2020-09-26 15:49:36 +02:00
|
|
|
#include "shared_context.h"
|
2024-03-18 08:58:05 +01:00
|
|
|
#include "apdu_constants.h"
|
2022-05-12 17:30:04 +02:00
|
|
|
#include "os_io_seproxyhal.h"
|
2024-04-15 11:33:42 +02:00
|
|
|
#include "crypto_helpers.h"
|
2020-09-26 15:49:36 +02:00
|
|
|
#include "ui_callbacks.h"
|
2022-05-12 17:30:04 +02:00
|
|
|
#include "common_712.h"
|
2022-10-17 11:44:28 +02:00
|
|
|
#include "ui_callbacks.h"
|
2022-09-09 17:21:35 +02:00
|
|
|
#include "common_ui.h"
|
2020-09-26 15:49:36 +02:00
|
|
|
|
2021-07-05 11:01:51 +02:00
|
|
|
static const uint8_t EIP_712_MAGIC[] = {0x19, 0x01};
|
2020-09-26 15:49:36 +02:00
|
|
|
|
2023-06-06 16:58:27 +02:00
|
|
|
unsigned int ui_712_approve_cb(void) {
|
2021-04-30 18:22:15 +02:00
|
|
|
uint8_t hash[INT256_LENGTH];
|
2020-09-26 15:49:36 +02:00
|
|
|
uint32_t tx = 0;
|
2022-05-12 17:30:04 +02:00
|
|
|
|
2020-09-26 15:49:36 +02:00
|
|
|
io_seproxyhal_io_heartbeat();
|
2024-03-18 08:58:05 +01:00
|
|
|
CX_ASSERT(cx_keccak_init_no_throw(&global_sha3, 256));
|
|
|
|
|
CX_ASSERT(cx_hash_no_throw((cx_hash_t *) &global_sha3,
|
|
|
|
|
0,
|
|
|
|
|
(uint8_t *) EIP_712_MAGIC,
|
|
|
|
|
sizeof(EIP_712_MAGIC),
|
|
|
|
|
NULL,
|
|
|
|
|
0));
|
|
|
|
|
CX_ASSERT(cx_hash_no_throw((cx_hash_t *) &global_sha3,
|
|
|
|
|
0,
|
|
|
|
|
tmpCtx.messageSigningContext712.domainHash,
|
|
|
|
|
sizeof(tmpCtx.messageSigningContext712.domainHash),
|
|
|
|
|
NULL,
|
|
|
|
|
0));
|
|
|
|
|
CX_ASSERT(cx_hash_no_throw((cx_hash_t *) &global_sha3,
|
|
|
|
|
CX_LAST,
|
|
|
|
|
tmpCtx.messageSigningContext712.messageHash,
|
|
|
|
|
sizeof(tmpCtx.messageSigningContext712.messageHash),
|
|
|
|
|
hash,
|
|
|
|
|
sizeof(hash)));
|
2022-05-13 15:03:10 +02:00
|
|
|
PRINTF("EIP712 Domain hash 0x%.*h\n", 32, tmpCtx.messageSigningContext712.domainHash);
|
|
|
|
|
PRINTF("EIP712 Message hash 0x%.*h\n", 32, tmpCtx.messageSigningContext712.messageHash);
|
2024-03-18 08:58:05 +01:00
|
|
|
|
2020-09-26 15:49:36 +02:00
|
|
|
unsigned int info = 0;
|
2024-03-18 08:58:05 +01:00
|
|
|
if (bip32_derive_ecdsa_sign_rs_hash_256(CX_CURVE_256K1,
|
|
|
|
|
tmpCtx.messageSigningContext712.bip32.path,
|
|
|
|
|
tmpCtx.messageSigningContext712.bip32.length,
|
|
|
|
|
CX_RND_RFC6979 | CX_LAST,
|
|
|
|
|
CX_SHA256,
|
|
|
|
|
hash,
|
|
|
|
|
sizeof(hash),
|
|
|
|
|
G_io_apdu_buffer + 1,
|
|
|
|
|
G_io_apdu_buffer + 1 + 32,
|
|
|
|
|
&info) != CX_OK) {
|
|
|
|
|
THROW(APDU_RESPONSE_UNKNOWN);
|
|
|
|
|
}
|
2020-09-26 15:49:36 +02:00
|
|
|
G_io_apdu_buffer[0] = 27;
|
2022-07-19 11:49:18 +02:00
|
|
|
if (info & CX_ECCINFO_PARITY_ODD) {
|
2020-12-01 16:20:13 +01:00
|
|
|
G_io_apdu_buffer[0]++;
|
2020-09-26 15:49:36 +02:00
|
|
|
}
|
2022-07-19 11:49:18 +02:00
|
|
|
if (info & CX_ECCINFO_xGTn) {
|
2020-12-01 16:20:13 +01:00
|
|
|
G_io_apdu_buffer[0] += 2;
|
2020-09-26 15:49:36 +02:00
|
|
|
}
|
|
|
|
|
tx = 65;
|
|
|
|
|
G_io_apdu_buffer[tx++] = 0x90;
|
|
|
|
|
G_io_apdu_buffer[tx++] = 0x00;
|
|
|
|
|
reset_app_context();
|
|
|
|
|
// Send back the response, do not restart the event loop
|
|
|
|
|
io_exchange(CHANNEL_APDU | IO_RETURN_AFTER_TX, tx);
|
|
|
|
|
// Display back the original UX
|
|
|
|
|
ui_idle();
|
2020-12-01 16:20:13 +01:00
|
|
|
return 0; // do not redraw the widget
|
2020-09-26 15:49:36 +02:00
|
|
|
}
|
|
|
|
|
|
2023-06-06 16:58:27 +02:00
|
|
|
unsigned int ui_712_reject_cb(void) {
|
2020-09-26 15:49:36 +02:00
|
|
|
reset_app_context();
|
|
|
|
|
G_io_apdu_buffer[0] = 0x69;
|
|
|
|
|
G_io_apdu_buffer[1] = 0x85;
|
|
|
|
|
// Send back the response, do not restart the event loop
|
|
|
|
|
io_exchange(CHANNEL_APDU | IO_RETURN_AFTER_TX, 2);
|
|
|
|
|
// Display back the original UX
|
|
|
|
|
ui_idle();
|
2020-12-01 16:20:13 +01:00
|
|
|
return 0; // do not redraw the widget
|
2020-09-26 15:49:36 +02:00
|
|
|
}
|