Files
app-ethereum/src_features/performPrivacyOperation/logic_performPrivacyOperation.c

9 lines
216 B
C
Raw Normal View History

2022-01-11 08:56:57 +01:00
#include "shared_context.h"
uint32_t set_result_perform_privacy_operation() {
2022-03-22 08:40:36 +01:00
for (uint8_t i = 0; i < 32; i++) {
2022-01-11 08:56:57 +01:00
G_io_apdu_buffer[i] = tmpCtx.publicKeyContext.publicKey.W[32 - i];
}
2022-03-22 08:20:07 +01:00
return 32;
2022-01-11 08:56:57 +01:00
}