Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
124 lines (107 sloc)
3.58 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Copyright 2017 Cedric Mesnil <cslashm@gmail.com>, Ledger SAS | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 | |
* | |
* Unless required by applicable law or agreed to in writing, software | |
* distributed under the License is distributed on an "AS IS" BASIS, | |
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
* See the License for the specific language governing permissions and | |
* limitations under the License. | |
*/ | |
#include "os.h" | |
#include "cx.h" | |
#include "monero_types.h" | |
#include "monero_api.h" | |
#include "monero_ux_nanos.h" | |
#include "monero_vars.h" | |
/* ----------------------------------------------------------------------- */ | |
/* --- --- */ | |
/* ----------------------------------------------------------------------- */ | |
int monero_apdu_mlsag_prepare() { | |
int options; | |
unsigned char Hi[32]; | |
unsigned char xin[32]; | |
unsigned char alpha[32]; | |
unsigned char mul[32]; | |
if (G_monero_vstate.io_length>1) { | |
monero_io_fetch(Hi,32); | |
if(G_monero_vstate.options &0x40) { | |
monero_io_fetch(xin,32); | |
} else { | |
monero_io_fetch_decrypt(xin,32); | |
} | |
options = 1; | |
} else { | |
options = 0; | |
} | |
monero_io_discard(1); | |
//ai | |
monero_rng_mod_order(alpha); | |
monero_reduce(alpha, alpha); | |
monero_io_insert_encrypt(alpha, 32); | |
//ai.G | |
monero_ecmul_G(mul, alpha); | |
monero_io_insert(mul,32); | |
if (options) { | |
//ai.Hi | |
monero_ecmul_k(mul, Hi, alpha); | |
monero_io_insert(mul,32); | |
//IIi = xin.Hi | |
monero_ecmul_k(mul, Hi, xin); | |
monero_io_insert(mul,32); | |
} | |
return SW_OK; | |
} | |
/* ----------------------------------------------------------------------- */ | |
/* --- --- */ | |
/* ----------------------------------------------------------------------- */ | |
int monero_apdu_mlsag_hash() { | |
unsigned char msg[32]; | |
unsigned char c[32]; | |
if (G_monero_vstate.io_p2 == 1) { | |
monero_keccak_init_H(); | |
os_memmove(msg, G_monero_vstate.H, 32); | |
} else { | |
monero_io_fetch(msg, 32); | |
} | |
monero_io_discard(1); | |
monero_keccak_update_H(msg, 32); | |
if ((G_monero_vstate.options&0x80) == 0 ) { | |
monero_keccak_final_H(c); | |
monero_reduce(c,c); | |
monero_io_insert(c,32); | |
os_memmove(G_monero_vstate.c, c, 32); | |
} | |
return SW_OK; | |
} | |
/* ----------------------------------------------------------------------- */ | |
/* --- --- */ | |
/* ----------------------------------------------------------------------- */ | |
int monero_apdu_mlsag_sign() { | |
unsigned char xin[32]; | |
unsigned char alpha[32]; | |
unsigned char ss[32]; | |
unsigned char ss2[32]; | |
if (G_monero_vstate.sig_mode == TRANSACTION_CREATE_FAKE) { | |
monero_io_fetch(xin,32); | |
monero_io_fetch(alpha,32); | |
} else if (G_monero_vstate.sig_mode == TRANSACTION_CREATE_REAL) { | |
monero_io_fetch_decrypt(xin,32); | |
monero_io_fetch_decrypt(alpha,32); | |
} else { | |
THROW(SW_WRONG_DATA); | |
} | |
monero_io_discard(1); | |
monero_reduce(ss, G_monero_vstate.c); | |
monero_reduce(xin,xin); | |
monero_multm(ss, ss, xin); | |
monero_reduce(alpha, alpha); | |
monero_subm(ss2, alpha, ss); | |
monero_io_insert(ss2,32); | |
monero_io_insert_u32(G_monero_vstate.sig_mode); | |
return SW_OK; | |
} |