Files
app-ethereum/src_features/performPrivacyOperation/logic_performPrivacyOperation.c
2022-03-22 08:23:30 +01:00

11 lines
241 B
C

#include "shared_context.h"
uint32_t set_result_perform_privacy_operation() {
uint32_t tx = 0, i;
for (i=0; i<32; i++) {
G_io_apdu_buffer[i] = tmpCtx.publicKeyContext.publicKey.W[32 - i];
}
tx = 32;
return tx;
}