blue-app-btc/src/btchip_apdu_setup.c

51 lines
2.2 KiB
C

/*******************************************************************************
* Ledger Blue - Bitcoin Wallet
* (c) 2016 Ledger
*
* 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 "btchip_internal.h"
#include "btchip_apdu_constants.h"
unsigned short btchip_apdu_setup() {
return BTCHIP_SW_INS_NOT_SUPPORTED;
}
// Setup with WALLET mode only, deterministic signatures only
void btchip_autosetup() {
btchip_config_t config;
unsigned char i;
unsigned char tmp[32];
os_memset(&config, 0, sizeof(btchip_config_t));
config.options |= BTCHIP_OPTION_DETERMINISTIC_SIGNATURE;
config.options |= BTCHIP_OPTION_SKIP_2FA_P2SH; // TODO : remove when
// supporting multi output
SB_SET(config.supportedModes, BTCHIP_MODE_WALLET);
SB_SET(config.operationMode, BTCHIP_MODE_WALLET);
// config.payToAddressVersion = G_coin_config->p2pkh_version;
// config.payToScriptHashVersion = G_coin_config->p2sh_version;
// config.coinFamily = G_coin_config->family;
// config.coinIdLength = strlen(PIC(G_coin_config->coinid));
// os_memmove(config.coinId, PIC(G_coin_config->coinid),
// config.coinIdLength);
// config.shortCoinIdLength = strlen(PIC(G_coin_config->name_short));
// os_memmove(config.shortCoinId, PIC(G_coin_config->name_short),
// config.shortCoinIdLength);
nvm_write((void *)&N_btchip.bkp.config, &config, sizeof(config));
cx_rng(tmp, sizeof(tmp));
nvm_write((void *)&N_btchip.bkp.trustedinput_key, tmp, sizeof(tmp));
i = 1;
nvm_write((void *)&N_btchip.config_valid, &i, 1);
}